Note
Go to the end to download the full example code.
Production run: Circular disc & central sink particle#
This example demonstrates how to run a smoothed particle hydrodynamics (SPH) simulation of a circular disc orbiting around a central sink.
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_sink_{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_kill_sphere(center=(0, 0, 0), radius=bsize) # kill particles outside the simulation box
215
216 cfg.set_units(codeu)
217 cfg.set_particle_mass(pmass)
218 # Set the CFL
219 cfg.set_cfl_cour(C_cour)
220 cfg.set_cfl_force(C_force)
221
222 # Enable this to debug the neighbor counts
223 # cfg.set_show_neigh_stats(True)
224
225 # Standard way to set the smoothing length (e.g. Price et al. 2018)
226 cfg.set_smoothing_length_density_based()
227
228 cfg.set_save_dt_to_fields(True)
229
230 # Standard density based smoothing lenght but with a neighbor count limit
231 # Use it if you have large slowdowns due to giant particles
232 # I recommend to use it if you have a circumbinary discs as the issue is very likely to happen
233 # cfg.set_smoothing_length_density_based_neigh_lim(500)
234
235 cfg.set_save_dt_to_fields(True)
236
237 # Set the solver config to be the one stored in cfg
238 model.set_solver_config(cfg)
239
240 # Print the solver config
241 model.get_current_config().print_status()
242
243 # Init the scheduler & fields
244 model.init_scheduler(scheduler_split_val, scheduler_merge_val)
245
246 # Set the simulation box size
247 model.resize_simulation_box(bmin, bmax)
248
249 # Create the setup
250
251 setup = model.get_setup()
252 gen_disc = setup.make_generator_disc_mc(
253 part_mass=pmass,
254 disc_mass=disc_mass,
255 r_in=rin,
256 r_out=rout,
257 sigma_profile=sigma_profile,
258 H_profile=H_profile,
259 rot_profile=rot_profile,
260 cs_profile=cs_profile,
261 random_seed=666,
262 )
263
264 # Print the dot graph of the setup
265 print(gen_disc.get_dot())
266
267 # Apply the setup
268 setup.apply_setup(gen_disc)
269
270 # correct the momentum and barycenter of the disc to 0
271 analysis_momentum = shamrock.model_sph.analysisTotalMomentum(model=model)
272 total_momentum = analysis_momentum.get_total_momentum()
273
274 if shamrock.sys.world_rank() == 0:
275 print(f"disc momentum = {total_momentum}")
276
277 model.apply_momentum_offset((-total_momentum[0], -total_momentum[1], -total_momentum[2]))
278
279 # Correct the barycenter before adding the sink
280 analysis_barycenter = shamrock.model_sph.analysisBarycenter(model=model)
281 barycenter, disc_mass = analysis_barycenter.get_barycenter()
282
283 if shamrock.sys.world_rank() == 0:
284 print(f"disc barycenter = {barycenter}")
285
286 model.apply_position_offset((-barycenter[0], -barycenter[1], -barycenter[2]))
287
288 total_momentum = shamrock.model_sph.analysisTotalMomentum(model=model).get_total_momentum()
289
290 if shamrock.sys.world_rank() == 0:
291 print(f"disc momentum after correction = {total_momentum}")
292
293 barycenter, disc_mass = shamrock.model_sph.analysisBarycenter(model=model).get_barycenter()
294
295 if shamrock.sys.world_rank() == 0:
296 print(f"disc barycenter after correction = {barycenter}")
297
298 if not np.allclose(total_momentum, 0.0):
299 raise RuntimeError("disc momentum is not 0")
300 if not np.allclose(barycenter, 0.0):
301 raise RuntimeError("disc barycenter is not 0")
302
303 # now that the barycenter & momentum are 0, we can add the sink
304 model.add_sink(center_mass, (0, 0, 0), (0, 0, 0), center_racc)
305
306 # Run a single step to init the integrator and smoothing length of the particles
307 # Here the htolerance is the maximum factor of evolution of the smoothing length in each
308 # Smoothing length iterations, increasing it affect the performance negatively but increse the
309 # convergence rate of the smoothing length
310 # this is why we increase it temporely to 1.3 before lowering it back to 1.1 (default value)
311 # Note that both ``change_htolerances`` can be removed and it will work the same but would converge
312 # more slowly at the first timestep
313
314 model.change_htolerances(coarse=1.3, fine=1.1)
315 model.timestep()
316 model.change_htolerances(coarse=1.1, fine=1.1)
317
318
319 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": []
},
"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.607807e+05 N.s^-1
SPH setup: the generation step took : 0.387209685 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 : 23.23 us (85.9%)
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 : 1994.00 ns (0.2%)
patch tree reduce : 1363.00 ns (0.1%)
gen split merge : 942.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.1%)
LB compute : 1281.95 us (99.0%)
LB move op cnt : 0
LB apply : 4.21 us (0.3%)
Info: Compute load ... [DataInserterUtility][rank=0]
Info: run scheduler step ... [DataInserterUtility][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (67.7%)
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 : 1663.00 ns (0.1%)
patch tree reduce : 381.00 ns (0.0%)
gen split merge : 481.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.0%)
LB compute : 1341.89 us (99.4%)
LB move op cnt : 0
LB apply : 1784.00 ns (0.1%)
Info: Compute load ... [DataInserterUtility][rank=0]
Info: run scheduler step ... [DataInserterUtility][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (66.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 : 1653.00 ns (0.1%)
patch tree reduce : 380.00 ns (0.0%)
gen split merge : 381.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.0%)
LB compute : 1209.46 us (99.4%)
LB move op cnt : 0
LB apply : 1793.00 ns (0.1%)
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.015341258000000002 s
Info: injection perf report: [SPH setup][rank=0]
+======+====================+=======+=============+=============+=============+
| rank | rank get (sum/max) | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+====================+=======+=============+=============+=============+
| 0 | 0.00s / 0.00s | 0.00s | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+--------------------+-------+-------------+-------------+-------------+
SPH setup: the setup took : 0.434016289 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 : 6.51 us (0.3%)
patch tree reduce : 1663.00 ns (0.1%)
gen split merge : 932.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.1%)
LB compute : 1919.08 us (98.9%)
LB move op cnt : 0
LB apply : 3.82 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (68.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 = (-1.2658060363768264e-17,-8.307699146670178e-18,-1.5924219408380846e-19)
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.2810e+04 | 100000 | 1 | 4.384e+00 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [sph::Model][rank=0]
On the fly analysis
324 def save_rho_integ(ext, arr_rho, iplot):
325 if shamrock.sys.world_rank() == 0:
326 metadata = {"extent": [-ext, ext, -ext, ext], "time": model.get_time()}
327 np.save(plot_folder + f"rho_integ_{iplot:07}.npy", arr_rho)
328
329 with open(plot_folder + f"rho_integ_{iplot:07}.json", "w") as fp:
330 json.dump(metadata, fp)
331
332
333 def save_analysis_data(filename, key, value, ianalysis):
334 """Helper to save analysis data to a JSON file."""
335 if shamrock.sys.world_rank() == 0:
336 filepath = os.path.join(analysis_folder, filename)
337 try:
338 with open(filepath, "r") as fp:
339 data = json.load(fp)
340 except (FileNotFoundError, json.JSONDecodeError):
341 data = {key: []}
342 data[key] = data[key][:ianalysis]
343 data[key].append({"t": model.get_time(), key: value})
344 with open(filepath, "w") as fp:
345 json.dump(data, fp, indent=4)
346
347
348 from shamrock.utils.analysis import (
349 ColumnDensityPlot,
350 ColumnParticleCount,
351 PerfHistory,
352 SliceDensityPlot,
353 SliceDiffVthetaProfile,
354 SliceDtPart,
355 SliceVzPlot,
356 VerticalShearGradient,
357 )
358
359 perf_analysis = PerfHistory(model, analysis_folder, "perf_history")
360
361 column_density_plot = ColumnDensityPlot(
362 model,
363 ext_r=rout * 1.5,
364 nx=1024,
365 ny=1024,
366 ex=(1, 0, 0),
367 ey=(0, 1, 0),
368 center=(0, 0, 0),
369 analysis_folder=analysis_folder,
370 analysis_prefix="rho_integ_normal",
371 )
372
373 column_density_plot_hollywood = ColumnDensityPlot(
374 model,
375 ext_r=rout * 1.5,
376 nx=1024,
377 ny=1024,
378 ex=(1, 0, 0),
379 ey=(0, 1, 0),
380 center=(0, 0, 0),
381 analysis_folder=analysis_folder,
382 analysis_prefix="rho_integ_hollywood",
383 )
384
385 vertical_density_plot = SliceDensityPlot(
386 model,
387 ext_r=rout * 1.1 / (16.0 / 9.0), # aspect ratio of 16:9
388 nx=1920,
389 ny=1080,
390 ex=(1, 0, 0),
391 ey=(0, 0, 1),
392 center=(0, 0, 0),
393 analysis_folder=analysis_folder,
394 analysis_prefix="rho_slice",
395 )
396
397 v_z_slice_plot = SliceVzPlot(
398 model,
399 ext_r=rout * 1.1 / (16.0 / 9.0), # aspect ratio of 16:9
400 nx=1920,
401 ny=1080,
402 ex=(1, 0, 0),
403 ey=(0, 0, 1),
404 center=(0, 0, 0),
405 analysis_folder=analysis_folder,
406 analysis_prefix="v_z_slice",
407 do_normalization=True,
408 )
409
410 relative_azy_velocity_slice_plot = SliceDiffVthetaProfile(
411 model,
412 ext_r=rout * 0.5 / (16.0 / 9.0), # aspect ratio of 16:9
413 nx=1920,
414 ny=1080,
415 ex=(1, 0, 0),
416 ey=(0, 0, 1),
417 center=((rin + rout) / 2, 0, 0),
418 analysis_folder=analysis_folder,
419 analysis_prefix="relative_azy_velocity_slice",
420 velocity_profile=kep_profile,
421 do_normalization=True,
422 min_normalization=1e-9,
423 )
424
425 vertical_shear_gradient_slice_plot = VerticalShearGradient(
426 model,
427 ext_r=rout * 0.5 / (16.0 / 9.0), # aspect ratio of 16:9
428 nx=1920,
429 ny=1080,
430 ex=(1, 0, 0),
431 ey=(0, 0, 1),
432 center=((rin + rout) / 2, 0, 0),
433 analysis_folder=analysis_folder,
434 analysis_prefix="vertical_shear_gradient_slice",
435 do_normalization=True,
436 min_normalization=1e-9,
437 )
438
439 dt_part_slice_plot = SliceDtPart(
440 model,
441 ext_r=rout * 0.5 / (16.0 / 9.0), # aspect ratio of 16:9
442 nx=1920,
443 ny=1080,
444 ex=(1, 0, 0),
445 ey=(0, 0, 1),
446 center=((rin + rout) / 2, 0, 0),
447 analysis_folder=analysis_folder,
448 analysis_prefix="dt_part_slice",
449 )
450
451 column_particle_count_plot = ColumnParticleCount(
452 model,
453 ext_r=rout * 1.5,
454 nx=1024,
455 ny=1024,
456 ex=(1, 0, 0),
457 ey=(0, 1, 0),
458 center=(0, 0, 0),
459 analysis_folder=analysis_folder,
460 analysis_prefix="particle_count",
461 )
462
463
464 def analysis(ianalysis):
465 column_density_plot.analysis_save(ianalysis)
466 column_density_plot_hollywood.analysis_save(ianalysis)
467 vertical_density_plot.analysis_save(ianalysis)
468 v_z_slice_plot.analysis_save(ianalysis)
469 relative_azy_velocity_slice_plot.analysis_save(ianalysis)
470 vertical_shear_gradient_slice_plot.analysis_save(ianalysis)
471 dt_part_slice_plot.analysis_save(ianalysis)
472 column_particle_count_plot.analysis_save(ianalysis)
473
474 barycenter, disc_mass = shamrock.model_sph.analysisBarycenter(model=model).get_barycenter()
475
476 total_momentum = shamrock.model_sph.analysisTotalMomentum(model=model).get_total_momentum()
477
478 potential_energy = shamrock.model_sph.analysisEnergyPotential(
479 model=model
480 ).get_potential_energy()
481
482 kinetic_energy = shamrock.model_sph.analysisEnergyKinetic(model=model).get_kinetic_energy()
483
484 save_analysis_data("barycenter.json", "barycenter", barycenter, ianalysis)
485 save_analysis_data("disc_mass.json", "disc_mass", disc_mass, ianalysis)
486 save_analysis_data("total_momentum.json", "total_momentum", total_momentum, ianalysis)
487 save_analysis_data("potential_energy.json", "potential_energy", potential_energy, ianalysis)
488 save_analysis_data("kinetic_energy.json", "kinetic_energy", kinetic_energy, ianalysis)
489
490 sinks = model.get_sinks()
491 save_analysis_data("sinks.json", "sinks", sinks, ianalysis)
492
493 perf_analysis.analysis_save(ianalysis)
Evolve the simulation
498 model.solver_logs_reset_cumulated_step_time()
499 model.solver_logs_reset_step_count()
500
501 t_start = model.get_time()
502
503 idump = 0
504 iplot = 0
505 istop = 0
506 for ttarg in t_stop:
507 if ttarg >= t_start:
508 model.evolve_until(ttarg)
509
510 if istop % dump_freq_stop == 0:
511 model.do_vtk_dump(get_vtk_dump_name(idump), True)
512 dump_helper.write_dump(idump, purge_old_dumps=True, keep_first=1, keep_last=3)
513
514 # dump = model.make_phantom_dump()
515 # dump.save_dump(get_ph_dump_name(idump))
516
517 if istop % plot_freq_stop == 0:
518 analysis(iplot)
519
520 if istop % dump_freq_stop == 0:
521 idump += 1
522
523 if istop % plot_freq_stop == 0:
524 iplot += 1
525
526 istop += 1
Info: iteration since start : 1 [SPH][rank=0]
Info: time since start : 15.375912622000001 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000000.vtk [VTK Dump][rank=0]
- took 31.68 ms, bandwidth = 168.60 MB/s
Info: Dumping state to _to_trash/circular_disc_sink_100000/dump/dump_0000000.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.89 us (53.5%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000000.sham [Shamrock Dump][rank=0]
- took 22.36 ms, bandwidth = 546.22 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_sink_100000/analysis/plots/rho_integ_normal_0000000.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_normal_0000000.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.01 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000000.npy
Saving metadata to _to_trash/circular_disc_sink_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 727.59 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 726.38 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_sink_100000/analysis/plots/rho_slice_0000000.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000000.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 698.52 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 743.31 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000000.npy
Saving metadata to _to_trash/circular_disc_sink_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.06073978000000001 s
Info: compute_slice took 1286.17 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1247.32 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000000.npy
Saving metadata to _to_trash/circular_disc_sink_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.023616517 s
Info: compute_slice took 1282.13 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1230.06 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000000.npy
Saving metadata to _to_trash/circular_disc_sink_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 1229.92 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1229.47 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000000.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000000.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.01 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000000.npy
Saving metadata to _to_trash/circular_disc_sink_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 : 7.09 us (1.1%)
patch tree reduce : 1583.00 ns (0.2%)
gen split merge : 1042.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1153.00 ns (0.2%)
LB compute : 639.38 us (96.5%)
LB move op cnt : 0
LB apply : 5.05 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (14.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.119132450389629e-09,-4.536887137642128e-09,-7.531218408353288e-10)
sum a = (-9.825582188149884e-18,4.336808689942018e-18,-2.202285662861181e-19)
sum e = 0.05000297317141568
sum de = 1.0476986723714211e-05
Info: CFL hydro = 0.0026632979621559584 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026632979621559584 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.3657e+05 | 100000 | 1 | 7.322e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.3851132510865177 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.833195568092581e-05, dt = 0.0026632979621559584 ----------------
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.6%)
patch tree reduce : 1953.00 ns (0.2%)
gen split merge : 1182.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.1%)
LB compute : 1159.72 us (98.2%)
LB move op cnt : 0
LB apply : 4.10 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.210279024265706e-08,-1.5437695198841385e-07,-2.5606201102907845e-08)
sum a = (5.820810413531552e-18,-2.358139725155972e-18,1.2874900798265365e-19)
sum e = 0.050005027863450256
sum de = 2.280842068816454e-05
Info: CFL hydro = 0.004305100970695993 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004305100970695993 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.3549e+05 | 100000 | 1 | 7.381e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.990713004212505 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0027416299178368844, dt = 0.004305100970695993 ----------------
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.9%)
patch tree reduce : 1744.00 ns (0.2%)
gen split merge : 1072.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.2%)
LB compute : 695.09 us (96.9%)
LB move op cnt : 0
LB apply : 3.95 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (70.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1925745616973175e-07,-2.563851038006843e-07,-4.1386039899726715e-08)
sum a = (-6.193504910323444e-18,-3.279711571768651e-18,-1.1858461261560205e-19)
sum e = 0.05000841341637527
sum de = 4.2574912638473335e-05
Info: CFL hydro = 0.005275348061247063 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005275348061247063 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.3498e+05 | 100000 | 1 | 7.408e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.91975752637519 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.007046730888532878, dt = 0.0029532691114671225 ----------------
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.45 us (1.2%)
patch tree reduce : 2.02 us (0.4%)
gen split merge : 1012.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 495.28 us (95.8%)
LB move op cnt : 0
LB apply : 4.00 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 us (71.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.437600712030815e-08,-1.8381792790590995e-07,-2.8378016042895306e-08)
sum a = (1.072682524402846e-17,2.9544509200229996e-18,2.168404344971009e-19)
sum e = 0.05000577627930958
sum de = 5.6504597669188805e-05
Info: CFL hydro = 0.005902529478019277 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005902529478019277 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.3901e+05 | 100000 | 1 | 7.194e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.779510755501747 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 5 [SPH][rank=0]
Info: time since start : 35.574123169 (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_sink_100000/analysis/plots/rho_integ_normal_0000001.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_normal_0000001.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.01 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000001.npy
Saving metadata to _to_trash/circular_disc_sink_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 729.60 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 724.35 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000001.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000001.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 705.27 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 731.65 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000001.npy
Saving metadata to _to_trash/circular_disc_sink_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.053124436000000004 s
Info: compute_slice took 1277.74 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1229.14 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000001.npy
Saving metadata to _to_trash/circular_disc_sink_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.022936373000000003 s
Info: compute_slice took 1245.82 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1233.83 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000001.npy
Saving metadata to _to_trash/circular_disc_sink_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 1236.80 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1237.52 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000001.npy
Saving metadata to _to_trash/circular_disc_sink_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.01 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000001.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000001.json
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.01, dt = 0.005902529478019277 ----------------
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.2%)
patch tree reduce : 1693.00 ns (0.0%)
gen split merge : 1042.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1322.00 ns (0.0%)
LB compute : 3.54 ms (99.4%)
LB move op cnt : 0
LB apply : 4.24 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.32 us (74.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.715128398856559e-07,-3.787508577206859e-07,-5.6690749869582795e-08)
sum a = (-1.3145951341386741e-18,9.432558900623889e-18,1.3552527156068805e-19)
sum e = 0.05001359546179707
sum de = 8.321966719101538e-05
Info: CFL hydro = 0.006896793725036626 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.006896793725036626 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.3582e+05 | 100000 | 1 | 7.363e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.859733987446095 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.015902529478019276, dt = 0.004097470521980725 ----------------
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.38 us (1.4%)
patch tree reduce : 1763.00 ns (0.4%)
gen split merge : 1072.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 431.86 us (95.4%)
LB move op cnt : 0
LB apply : 3.62 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2190401667253337e-07,-2.79431831505238e-07,-3.930071831441201e-08)
sum a = (1.311207002349657e-17,-5.773376568485311e-18,-2.0328790734103208e-20)
sum e = 0.05000885823542571
sum de = 0.0001027801896817532
Info: CFL hydro = 0.007165314841506854 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007165314841506854 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.3481e+05 | 100000 | 1 | 7.418e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.886353664888368 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 7 [SPH][rank=0]
Info: time since start : 54.161408194 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000001.vtk [VTK Dump][rank=0]
- took 8.54 ms, bandwidth = 625.63 MB/s
Info: Dumping state to _to_trash/circular_disc_sink_100000/dump/dump_0000001.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (56.6%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000001.sham [Shamrock Dump][rank=0]
- took 13.79 ms, bandwidth = 885.74 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_sink_100000/analysis/plots/rho_integ_normal_0000002.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_normal_0000002.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.02 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000002.npy
Saving metadata to _to_trash/circular_disc_sink_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 722.35 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 727.56 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000002.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000002.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 698.86 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 727.66 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000002.npy
Saving metadata to _to_trash/circular_disc_sink_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.052902813 s
Info: compute_slice took 1280.93 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1234.72 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000002.npy
Saving metadata to _to_trash/circular_disc_sink_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.028004402 s
Info: compute_slice took 1252.73 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1232.91 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000002.npy
Saving metadata to _to_trash/circular_disc_sink_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 1236.19 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1232.01 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000002.npy
Saving metadata to _to_trash/circular_disc_sink_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.02 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000002.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000002.json
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.02, dt = 0.007165314841506854 ----------------
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 : 1633.00 ns (0.0%)
gen split merge : 1071.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.0%)
LB compute : 9.19 ms (99.8%)
LB move op cnt : 0
LB apply : 4.54 us (0.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.55 us (77.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1499585439157746e-07,-5.09618813905336e-07,-6.863875320343247e-08)
sum a = (4.675621868843738e-19,-4.553649124439119e-18,-3.3881317890172014e-21)
sum e = 0.05001950772289988
sum de = 0.00013479822971576143
Info: CFL hydro = 0.007254296322212878 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007254296322212878 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.3401e+05 | 100000 | 1 | 7.462e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.56814346210104 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.027165314841506853, dt = 0.0028346851584931457 ----------------
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.78 us (1.5%)
patch tree reduce : 1673.00 ns (0.4%)
gen split merge : 1223.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1433.00 ns (0.3%)
LB compute : 417.55 us (95.0%)
LB move op cnt : 0
LB apply : 4.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (69.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.497400237967274e-08,-2.1674081810839525e-07,-2.707675343103683e-08)
sum a = (1.570060271030571e-17,9.595189226496714e-18,4.743384504624082e-20)
sum e = 0.050007635828029105
sum de = 0.00014929827338235613
Info: CFL hydro = 0.007371059397508949 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007371059397508949 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.3111e+05 | 100000 | 1 | 7.627e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.379733462280239 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 9 [SPH][rank=0]
Info: time since start : 72.835223228 (s) [SPH][rank=0]
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_sink_100000/analysis/plots/rho_integ_normal_0000003.npy
Saving metadata to _to_trash/circular_disc_sink_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.02 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000003.npy
Saving metadata to _to_trash/circular_disc_sink_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 728.33 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 731.41 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000003.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000003.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 713.58 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 729.24 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000003.npy
Saving metadata to _to_trash/circular_disc_sink_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.049390804 s
Info: compute_slice took 1275.14 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1233.19 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000003.npy
Saving metadata to _to_trash/circular_disc_sink_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.025731362 s
Info: compute_slice took 1254.97 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1236.89 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000003.npy
Saving metadata to _to_trash/circular_disc_sink_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 1261.32 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1235.67 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000003.npy
Saving metadata to _to_trash/circular_disc_sink_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.02 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000003.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000003.json
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.03, dt = 0.007371059397508949 ----------------
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.1%)
patch tree reduce : 1723.00 ns (0.0%)
gen split merge : 1172.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1322.00 ns (0.0%)
LB compute : 9.03 ms (99.8%)
LB move op cnt : 0
LB apply : 4.13 us (0.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (73.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1961924511459278e-07,-5.796596368357914e-07,-7.031233450677298e-08)
sum a = (-7.270930819230914e-18,5.421010862427522e-20,6.098637220230962e-20)
sum e = 0.050021982595485244
sum de = 0.0001820159697712771
Info: CFL hydro = 0.007487629931569194 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007487629931569194 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.3380e+05 | 100000 | 1 | 7.474e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.50622941741479 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.03737105939750895, dt = 0.0026289406024910533 ----------------
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.54 us (1.6%)
patch tree reduce : 1733.00 ns (0.4%)
gen split merge : 1032.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 394.81 us (94.8%)
LB move op cnt : 0
LB apply : 3.88 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.584106608076022e-08,-2.2201013319359697e-07,-2.4973793182474176e-08)
sum a = (-6.024098320872584e-18,2.1955093992831465e-18,5.082197683525802e-20)
sum e = 0.05000904083358242
sum de = 0.00019580974912144095
Info: CFL hydro = 0.007424416914102689 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007424416914102689 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.3878e+05 | 100000 | 1 | 7.206e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.134541000507353 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 11 [SPH][rank=0]
Info: time since start : 91.487089264 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000002.vtk [VTK Dump][rank=0]
- took 8.38 ms, bandwidth = 637.27 MB/s
Info: Dumping state to _to_trash/circular_disc_sink_100000/dump/dump_0000002.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.71 us (58.7%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000002.sham [Shamrock Dump][rank=0]
- took 13.23 ms, bandwidth = 923.26 MB/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_sink_100000/analysis/plots/rho_integ_normal_0000004.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_normal_0000004.json
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.03 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000004.npy
Saving metadata to _to_trash/circular_disc_sink_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 730.98 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 734.27 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000004.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000004.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 714.39 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 730.30 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000004.npy
Saving metadata to _to_trash/circular_disc_sink_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.051968642 s
Info: compute_slice took 1286.66 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1241.35 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000004.npy
Saving metadata to _to_trash/circular_disc_sink_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.022637184 s
Info: compute_slice took 1252.60 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1261.11 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000004.npy
Saving metadata to _to_trash/circular_disc_sink_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 1233.52 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1246.71 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000004.npy
Saving metadata to _to_trash/circular_disc_sink_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.03 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000004.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000004.json
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.04, dt = 0.007424416914102689 ----------------
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.43 us (0.1%)
patch tree reduce : 1633.00 ns (0.0%)
gen split merge : 1122.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.0%)
LB compute : 5.41 ms (99.6%)
LB move op cnt : 0
LB apply : 4.13 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.15 us (74.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.104324572401093e-07,-6.426722170883601e-07,-7.040969014453399e-08)
sum a = (-1.3206937713589051e-17,8.72782748850831e-18,1.6940658945086007e-20)
sum e = 0.050024284730679235
sum de = 0.0002287041073407642
Info: CFL hydro = 0.007027006036166197 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007027006036166197 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.2936e+05 | 100000 | 1 | 7.730e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.57518608391939 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.04742441691410269, dt = 0.0025755830858973094 ----------------
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.06 us (1.2%)
patch tree reduce : 1954.00 ns (0.3%)
gen split merge : 1322.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 557.67 us (96.3%)
LB move op cnt : 0
LB apply : 3.93 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.805422520512566e-08,-2.3851634905435774e-07,-2.4294577846707946e-08)
sum a = (-2.2158381900172497e-18,7.670730370334944e-18,1.1180834903756764e-19)
sum e = 0.050011151218230444
sum de = 0.00024239771787806362
Info: CFL hydro = 0.006933125158442446 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.006933125158442446 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.3829e+05 | 100000 | 1 | 7.231e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.82232693798261 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 13 [SPH][rank=0]
Info: time since start : 110.245652097 (s) [SPH][rank=0]
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_sink_100000/analysis/plots/rho_integ_normal_0000005.npy
Saving metadata to _to_trash/circular_disc_sink_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.04 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000005.npy
Saving metadata to _to_trash/circular_disc_sink_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 739.38 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 729.44 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000005.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000005.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 705.37 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 730.43 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000005.npy
Saving metadata to _to_trash/circular_disc_sink_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.050856044 s
Info: compute_slice took 1303.58 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1247.18 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000005.npy
Saving metadata to _to_trash/circular_disc_sink_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.028596278000000003 s
Info: compute_slice took 1267.39 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1250.50 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000005.npy
Saving metadata to _to_trash/circular_disc_sink_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 1246.71 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1259.89 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000005.npy
Saving metadata to _to_trash/circular_disc_sink_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.06 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000005.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000005.json
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.05, dt = 0.006933125158442446 ----------------
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 : 34.76 us (0.4%)
patch tree reduce : 1763.00 ns (0.0%)
gen split merge : 1082.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.0%)
LB compute : 9.08 ms (99.5%)
LB move op cnt : 0
LB apply : 4.59 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.47 us (73.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7738600606972017e-07,-6.567234760557687e-07,-6.526204724570616e-08)
sum a = (9.093745721722168e-18,7.616520261710669e-18,1.3552527156068805e-19)
sum e = 0.05002468720018692
sum de = 0.00027335539645945226
Info: CFL hydro = 0.0066123025377922045 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0066123025377922045 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.3161e+05 | 100000 | 1 | 7.598e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.84802118913752 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.05693312515844245, dt = 0.00306687484155755 ----------------
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.53 us (1.6%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 1012.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 381.39 us (94.9%)
LB move op cnt : 0
LB apply : 3.79 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.017326635299207e-08,-3.080013766406747e-07,-2.8692119679306803e-08)
sum a = (1.1689054672109345e-17,-1.4094628242311558e-17,-1.9651164376299768e-19)
sum e = 0.050014593367220736
sum de = 0.00028911975189651923
Info: CFL hydro = 0.006505741629311346 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.006505741629311346 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.3766e+05 | 100000 | 1 | 7.264e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.199060811368946 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 15 [SPH][rank=0]
Info: time since start : 129.124256338 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000003.vtk [VTK Dump][rank=0]
- took 8.80 ms, bandwidth = 607.01 MB/s
Info: Dumping state to _to_trash/circular_disc_sink_100000/dump/dump_0000003.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.35 us (58.7%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000003.sham [Shamrock Dump][rank=0]
- took 14.24 ms, bandwidth = 857.69 MB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.05 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_normal_0000006.npy
Saving metadata to _to_trash/circular_disc_sink_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.07 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000006.npy
Saving metadata to _to_trash/circular_disc_sink_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 718.33 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 721.41 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000006.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000006.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 698.85 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 712.68 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000006.npy
Saving metadata to _to_trash/circular_disc_sink_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.050625756 s
Info: compute_slice took 1282.60 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1237.77 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000006.npy
Saving metadata to _to_trash/circular_disc_sink_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.022042881 s
Info: compute_slice took 1242.67 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1238.97 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000006.npy
Saving metadata to _to_trash/circular_disc_sink_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 1243.63 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1221.88 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000006.npy
Saving metadata to _to_trash/circular_disc_sink_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.05 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000006.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000006.json
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.06, dt = 0.006505741629311346 ----------------
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 (1.8%)
patch tree reduce : 1794.00 ns (0.4%)
gen split merge : 1052.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1153.00 ns (0.3%)
LB compute : 384.92 us (94.5%)
LB move op cnt : 0
LB apply : 3.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.39713363445566e-07,-6.697515993363773e-07,-6.06839567679126e-08)
sum a = (1.5185606678375096e-17,-1.1302807648161384e-17,-3.4558944247975454e-19)
sum e = 0.05002590666724044
sum de = 0.0003183614350285484
Info: CFL hydro = 0.006259340379579172 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.006259340379579172 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.3244e+05 | 100000 | 1 | 7.550e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.019212291674922 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.06650574162931135, dt = 0.0034942583706886604 ----------------
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.25 us (1.2%)
patch tree reduce : 1923.00 ns (0.4%)
gen split merge : 1102.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.2%)
LB compute : 501.62 us (96.0%)
LB move op cnt : 0
LB apply : 3.57 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (63.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.311467762514003e-08,-3.7824468750615644e-07,-3.2372036771548645e-08)
sum a = (-4.228388472693467e-18,-6.315477654728063e-18,0)
sum e = 0.05001851410395537
sum de = 0.00033587182421438783
Info: CFL hydro = 0.006150598375112351 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.006150598375112351 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.3262e+05 | 100000 | 1 | 7.540e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.682494043660057 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 17 [SPH][rank=0]
Info: time since start : 147.880427329 (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_sink_100000/analysis/plots/rho_integ_normal_0000007.npy
Saving metadata to _to_trash/circular_disc_sink_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.03 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000007.npy
Saving metadata to _to_trash/circular_disc_sink_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 729.82 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 728.75 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000007.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000007.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 705.62 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 727.39 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000007.npy
Saving metadata to _to_trash/circular_disc_sink_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.050532701000000006 s
Info: compute_slice took 1303.33 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1252.18 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000007.npy
Saving metadata to _to_trash/circular_disc_sink_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.022305663 s
Info: compute_slice took 1271.61 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1259.68 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000007.npy
Saving metadata to _to_trash/circular_disc_sink_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 1254.60 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1255.26 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000007.npy
Saving metadata to _to_trash/circular_disc_sink_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.03 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000007.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000007.json
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.07, dt = 0.006150598375112351 ----------------
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.7%)
patch tree reduce : 1683.00 ns (0.2%)
gen split merge : 1032.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.1%)
LB compute : 1021.38 us (97.9%)
LB move op cnt : 0
LB apply : 4.08 us (0.4%)
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 = (-9.833641744510464e-08,-6.830669439493854e-07,-5.675624519848716e-08)
sum a = (-2.3445871979999033e-18,1.2576745200831851e-17,1.6940658945086007e-20)
sum e = 0.05002793719663449
sum de = 0.0003636229991699638
Info: CFL hydro = 0.006137699677763533 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.006137699677763533 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.2946e+05 | 100000 | 1 | 7.724e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.664969711589098 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.07615059837511236, dt = 0.003849401624887644 ----------------
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 (1.2%)
patch tree reduce : 1663.00 ns (0.3%)
gen split merge : 1092.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.2%)
LB compute : 512.74 us (95.9%)
LB move op cnt : 0
LB apply : 4.36 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (71.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.590768457439187e-08,-4.461719124391322e-07,-3.525699185177215e-08)
sum a = (1.4264034831762418e-18,8.402566836762659e-19,-3.1170812458958252e-19)
sum e = 0.05002284900183373
sum de = 0.0003825117414987609
Info: CFL hydro = 0.00605695003881393 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00605695003881393 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.3295e+05 | 100000 | 1 | 7.522e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.424161332626298 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 19 [SPH][rank=0]
Info: time since start : 166.737149904 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000004.vtk [VTK Dump][rank=0]
- took 8.54 ms, bandwidth = 625.40 MB/s
Info: Dumping state to _to_trash/circular_disc_sink_100000/dump/dump_0000004.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.94 us (59.3%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000004.sham [Shamrock Dump][rank=0]
- took 13.55 ms, bandwidth = 901.06 MB/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_sink_100000/analysis/plots/rho_integ_normal_0000008.npy
Saving metadata to _to_trash/circular_disc_sink_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.03 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000008.npy
Saving metadata to _to_trash/circular_disc_sink_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 722.85 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 723.30 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000008.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000008.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 703.26 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 727.80 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000008.npy
Saving metadata to _to_trash/circular_disc_sink_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.05283757 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 1248.33 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000008.npy
Saving metadata to _to_trash/circular_disc_sink_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.022486735 s
Info: compute_slice took 1261.96 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1232.99 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000008.npy
Saving metadata to _to_trash/circular_disc_sink_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 1212.66 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1231.38 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000008.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000008.json
Info: compute_column_integ field_name: inv_hpart, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.02 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000008.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000008.json
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.08, dt = 0.00605695003881393 ----------------
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.18 us (1.2%)
patch tree reduce : 1954.00 ns (0.3%)
gen split merge : 1012.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.2%)
LB compute : 602.62 us (96.5%)
LB move op cnt : 0
LB apply : 3.85 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.5234349218174404e-08,-7.199647195844192e-07,-5.519919895557002e-08)
sum a = (4.204671550170347e-18,9.269928574751063e-18,-3.7269449679189215e-20)
sum e = 0.05003146189373689
sum de = 0.0004097507553596431
Info: CFL hydro = 0.005846818124369785 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005846818124369785 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.3494e+05 | 100000 | 1 | 7.411e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.423157591487644 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.08605695003881393, dt = 0.003943049961186065 ----------------
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.55 us (1.5%)
patch tree reduce : 2.02 us (0.5%)
gen split merge : 1073.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 423.52 us (95.2%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (71.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.692743864978227e-08,-4.864562763785929e-07,-3.5634179022328133e-08)
sum a = (-8.50802243869582e-18,-9.378348791999613e-18,-1.2197274440461925e-19)
sum e = 0.050027118596452286
sum de = 0.00042891872792259354
Info: CFL hydro = 0.005704361817688305 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005704361817688305 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.3984e+05 | 100000 | 1 | 7.151e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.850423497911997 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 21 [SPH][rank=0]
Info: time since start : 185.402241894 (s) [SPH][rank=0]
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_sink_100000/analysis/plots/rho_integ_normal_0000009.npy
Saving metadata to _to_trash/circular_disc_sink_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_sink_100000/analysis/plots/rho_integ_hollywood_0000009.npy
Saving metadata to _to_trash/circular_disc_sink_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 693.13 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 694.41 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000009.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000009.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 684.19 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 700.45 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000009.npy
Saving metadata to _to_trash/circular_disc_sink_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.050869752000000004 s
Info: compute_slice took 1251.71 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1200.14 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000009.npy
Saving metadata to _to_trash/circular_disc_sink_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.029082603000000002 s
Info: compute_slice took 1235.62 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1211.27 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000009.npy
Saving metadata to _to_trash/circular_disc_sink_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 1203.09 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1200.48 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000009.npy
Saving metadata to _to_trash/circular_disc_sink_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_sink_100000/analysis/plots/particle_count_0000009.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000009.json
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.09, dt = 0.005704361817688305 ----------------
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.53 us (0.1%)
patch tree reduce : 1753.00 ns (0.0%)
gen split merge : 1323.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.0%)
LB compute : 7.12 ms (99.7%)
LB move op cnt : 0
LB apply : 4.09 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 us (73.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.054057888711053e-09,-7.198243730817925e-07,-5.125315296220522e-08)
sum a = (8.182338270476541e-19,-1.3931997916438732e-17,-1.0842021724855044e-19)
sum e = 0.05003447236493453
sum de = 0.00045451974494840723
Info: CFL hydro = 0.0055086276813303345 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0055086276813303345 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.3501e+05 | 100000 | 1 | 7.407e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.72579777602681 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.09570436181768831, dt = 0.004295638182311698 ----------------
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.78 us (1.7%)
patch tree reduce : 1723.00 ns (0.4%)
gen split merge : 1423.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 380.01 us (94.7%)
LB move op cnt : 0
LB apply : 3.70 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8932859451549684e-08,-5.587601267872553e-07,-3.825469247907579e-08)
sum a = (1.2187110045094873e-17,4.716279450311944e-18,2.270048298641525e-19)
sum e = 0.050032471088390144
sum de = 0.00047487175459926006
Info: CFL hydro = 0.006151262052368554 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.006151262052368554 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.3689e+05 | 100000 | 1 | 7.305e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.1692186676722 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 23 [SPH][rank=0]
Info: time since start : 203.75793840300003 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000005.vtk [VTK Dump][rank=0]
- took 8.20 ms, bandwidth = 651.04 MB/s
Info: Dumping state to _to_trash/circular_disc_sink_100000/dump/dump_0000005.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (57.6%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000005.sham [Shamrock Dump][rank=0]
- took 13.50 ms, bandwidth = 904.87 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_sink_100000/analysis/plots/rho_integ_normal_0000010.npy
Saving metadata to _to_trash/circular_disc_sink_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.02 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000010.npy
Saving metadata to _to_trash/circular_disc_sink_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 703.92 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 699.82 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000010.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000010.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 674.35 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 700.20 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000010.npy
Saving metadata to _to_trash/circular_disc_sink_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.051099241000000004 s
Info: compute_slice took 1267.43 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1209.35 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000010.npy
Saving metadata to _to_trash/circular_disc_sink_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.025907743 s
Info: compute_slice took 1230.96 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1225.59 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000010.npy
Saving metadata to _to_trash/circular_disc_sink_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 1216.22 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1227.28 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000010.npy
Saving metadata to _to_trash/circular_disc_sink_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.01 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000010.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000010.json
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.1, dt = 0.006151262052368554 ----------------
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 (1.7%)
patch tree reduce : 1703.00 ns (0.4%)
gen split merge : 1022.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 412.30 us (94.8%)
LB move op cnt : 0
LB apply : 4.80 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.334298474951325e-08,-8.171308741744627e-07,-5.4394177268166195e-08)
sum a = (-6.8914600588609876e-18,8.673617379884035e-19,-2.947674656444965e-19)
sum e = 0.050040999216699786
sum de = 0.0005019270989951976
Info: CFL hydro = 0.00590796244959226 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00590796244959226 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.3874e+05 | 100000 | 1 | 7.208e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.723198974214956 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.10615126205236856, dt = 0.0038487379476314365 ----------------
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 (0.1%)
patch tree reduce : 1603.00 ns (0.0%)
gen split merge : 1002.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.0%)
LB compute : 8.97 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.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.8438800297258034e-08,-5.254194047920603e-07,-3.3671502737089294e-08)
sum a = (1.3213713977167085e-18,-8.456776945386935e-18,-1.3552527156068805e-19)
sum e = 0.05003642074965378
sum de = 0.0005204168510991154
Info: CFL hydro = 0.005770153510352077 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005770153510352077 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.3090e+05 | 100000 | 1 | 7.639e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.13727937155241 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 25 [SPH][rank=0]
Info: time since start : 222.200211827 (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_sink_100000/analysis/plots/rho_integ_normal_0000011.npy
Saving metadata to _to_trash/circular_disc_sink_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.02 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000011.npy
Saving metadata to _to_trash/circular_disc_sink_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 719.41 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 711.26 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000011.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000011.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 692.71 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 707.01 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000011.npy
Saving metadata to _to_trash/circular_disc_sink_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.054504553000000004 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 1229.28 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000011.npy
Saving metadata to _to_trash/circular_disc_sink_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.022438132000000003 s
Info: compute_slice took 1253.85 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1236.13 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000011.npy
Saving metadata to _to_trash/circular_disc_sink_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 1244.87 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1235.85 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000011.npy
Saving metadata to _to_trash/circular_disc_sink_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.02 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000011.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000011.json
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.11, dt = 0.005770153510352077 ----------------
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.1%)
patch tree reduce : 1593.00 ns (0.2%)
gen split merge : 1052.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 632.90 us (96.8%)
LB move op cnt : 0
LB apply : 3.55 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.124785179559314e-07,-7.999541422971136e-07,-5.0127382318574775e-08)
sum a = (7.060866648311848e-18,1.8431436932253575e-18,1.1858461261560205e-19)
sum e = 0.05004476889472417
sum de = 0.000545459593526903
Info: CFL hydro = 0.005571014006180285 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005571014006180285 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.3625e+05 | 100000 | 1 | 7.339e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.303312614403783 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.11577015351035208, dt = 0.004229846489647915 ----------------
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.22 us (0.1%)
patch tree reduce : 2.17 us (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 : 8.94 ms (99.8%)
LB move op cnt : 0
LB apply : 4.20 us (0.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (70.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1116200277058347e-07,-5.986216078665696e-07,-3.6342025011126896e-08)
sum a = (6.844026213814747e-18,-6.071532165918825e-18,1.9989977555201488e-19)
sum e = 0.050042735652361746
sum de = 0.0005650452237409401
Info: CFL hydro = 0.005437714335851691 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005437714335851691 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.3182e+05 | 100000 | 1 | 7.586e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.072108837566056 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 27 [SPH][rank=0]
Info: time since start : 240.804760415 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000006.vtk [VTK Dump][rank=0]
- took 8.54 ms, bandwidth = 625.73 MB/s
Info: Dumping state to _to_trash/circular_disc_sink_100000/dump/dump_0000006.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.55 us (56.7%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000006.sham [Shamrock Dump][rank=0]
- took 12.18 ms, bandwidth = 1002.91 MB/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_sink_100000/analysis/plots/rho_integ_normal_0000012.npy
Saving metadata to _to_trash/circular_disc_sink_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.02 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000012.npy
Saving metadata to _to_trash/circular_disc_sink_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 709.53 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 705.07 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000012.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000012.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 685.83 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 694.88 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000012.npy
Saving metadata to _to_trash/circular_disc_sink_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.052009040000000006 s
Info: compute_slice took 1264.98 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1207.33 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000012.npy
Saving metadata to _to_trash/circular_disc_sink_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.025915047 s
Info: compute_slice took 1249.43 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1256.86 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000012.npy
Saving metadata to _to_trash/circular_disc_sink_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 1219.01 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1203.50 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000012.npy
Saving metadata to _to_trash/circular_disc_sink_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.02 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000012.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000012.json
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.12, dt = 0.005437714335851691 ----------------
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 (1.5%)
patch tree reduce : 1633.00 ns (0.3%)
gen split merge : 1042.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 458.23 us (95.7%)
LB move op cnt : 0
LB apply : 3.82 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7125667142753438e-07,-7.797841193838341e-07,-4.632440406506176e-08)
sum a = (8.470329472543003e-18,-5.908901840045999e-18,4.404571325722362e-20)
sum e = 0.05004921259258132
sum de = 0.0005884457782410269
Info: CFL hydro = 0.0052737937254746115 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0052737937254746115 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.3284e+05 | 100000 | 1 | 7.528e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.004979835146678 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.12543771433585169, dt = 0.004562285664148319 ----------------
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 (1.0%)
patch tree reduce : 2.02 us (0.3%)
gen split merge : 1042.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.1%)
LB compute : 612.12 us (96.6%)
LB move op cnt : 0
LB apply : 4.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (70.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7555161126144474e-07,-6.638179912247975e-07,-3.8425187259606193e-08)
sum a = (2.0830234238877754e-17,2.439454888092385e-18,1.6940658945086007e-20)
sum e = 0.0500494537868604
sum de = 0.0006087769545840966
Info: CFL hydro = 0.005146952810589505 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005146952810589505 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.3184e+05 | 100000 | 1 | 7.585e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.65382474449577 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 29 [SPH][rank=0]
Info: time since start : 259.330478846 (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_sink_100000/analysis/plots/rho_integ_normal_0000013.npy
Saving metadata to _to_trash/circular_disc_sink_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.01 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000013.npy
Saving metadata to _to_trash/circular_disc_sink_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 690.23 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 687.45 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000013.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000013.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 691.05 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 689.72 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000013.npy
Saving metadata to _to_trash/circular_disc_sink_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.051877635000000005 s
Info: compute_slice took 1237.07 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1199.00 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000013.npy
Saving metadata to _to_trash/circular_disc_sink_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.020189322000000003 s
Info: compute_slice took 1217.65 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1182.61 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000013.npy
Saving metadata to _to_trash/circular_disc_sink_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 1205.50 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1205.89 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000013.npy
Saving metadata to _to_trash/circular_disc_sink_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.01 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000013.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000013.json
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.13, dt = 0.005146952810589505 ----------------
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 : 45.93 us (9.6%)
patch tree reduce : 1623.00 ns (0.3%)
gen split merge : 1272.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1313.00 ns (0.3%)
LB compute : 416.37 us (87.3%)
LB move op cnt : 0
LB apply : 4.21 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.29400492775606e-07,-7.564431692406754e-07,-4.291737782380929e-08)
sum a = (1.0299920638612292e-18,1.0679391398982219e-17,2.439454888092385e-19)
sum e = 0.0500542759282866
sum de = 0.0006306440634004676
Info: CFL hydro = 0.005011061940298083 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005011061940298083 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.3669e+05 | 100000 | 1 | 7.316e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.326524191422493 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1351469528105895, dt = 0.004853047189410514 ----------------
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.02 us (1.9%)
patch tree reduce : 1513.00 ns (0.4%)
gen split merge : 1343.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 355.21 us (94.3%)
LB move op cnt : 0
LB apply : 3.93 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.507999162123011e-07,-7.196296772838973e-07,-3.9992505729321054e-08)
sum a = (-2.6698478497455547e-18,-5.2583805365546965e-18,7.115076756936123e-20)
sum e = 0.05005655697420554
sum de = 0.0006513826012692743
Info: CFL hydro = 0.0050924333040594525 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0050924333040594525 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.3842e+05 | 100000 | 1 | 7.224e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.18297051946421 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 31 [SPH][rank=0]
Info: time since start : 277.546089127 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000007.vtk [VTK Dump][rank=0]
- took 9.33 ms, bandwidth = 572.49 MB/s
Info: Dumping state to _to_trash/circular_disc_sink_100000/dump/dump_0000007.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.46 us (56.1%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000007.sham [Shamrock Dump][rank=0]
- took 13.35 ms, bandwidth = 914.80 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_sink_100000/analysis/plots/rho_integ_normal_0000014.npy
Saving metadata to _to_trash/circular_disc_sink_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.02 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000014.npy
Saving metadata to _to_trash/circular_disc_sink_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 696.58 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 685.21 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000014.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000014.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 701.44 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 685.90 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000014.npy
Saving metadata to _to_trash/circular_disc_sink_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.049581241000000005 s
Info: compute_slice took 1256.48 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1194.85 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000014.npy
Saving metadata to _to_trash/circular_disc_sink_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.020700675 s
Info: compute_slice took 1235.18 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1195.82 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000014.npy
Saving metadata to _to_trash/circular_disc_sink_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 1205.05 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1183.30 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000014.npy
Saving metadata to _to_trash/circular_disc_sink_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.01 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000014.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000014.json
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.14, dt = 0.0050924333040594525 ----------------
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.16 us (0.1%)
patch tree reduce : 1803.00 ns (0.0%)
gen split merge : 1413.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.0%)
LB compute : 9.38 ms (99.7%)
LB move op cnt : 0
LB apply : 7.31 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.45 us (85.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.9838953046943826e-07,-7.59666252473226e-07,-4.148151172955869e-08)
sum a = (-2.087089182034596e-18,-3.0357660829594124e-18,4.404571325722362e-20)
sum e = 0.05006062132549752
sum de = 0.0006725006227396793
Info: CFL hydro = 0.0049242812462125 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0049242812462125 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.3115e+05 | 100000 | 1 | 7.625e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.043958569672164 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.14509243330405946, dt = 0.0049075666959405295 ----------------
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.63 us (0.9%)
patch tree reduce : 1713.00 ns (0.2%)
gen split merge : 1002.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.1%)
LB compute : 711.53 us (97.1%)
LB move op cnt : 0
LB apply : 4.03 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2416785513643956e-07,-7.34802632910842e-07,-3.9472122328969905e-08)
sum a = (5.095750210681871e-18,5.7462715141731735e-18,-1.0842021724855044e-19)
sum e = 0.05006345320728577
sum de = 0.0006927125857671568
Info: CFL hydro = 0.004776012337638394 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004776012337638394 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.3139e+05 | 100000 | 1 | 7.611e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.212200323012297 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 33 [SPH][rank=0]
Info: time since start : 295.89780242 (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_sink_100000/analysis/plots/rho_integ_normal_0000015.npy
Saving metadata to _to_trash/circular_disc_sink_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_sink_100000/analysis/plots/rho_integ_hollywood_0000015.npy
Saving metadata to _to_trash/circular_disc_sink_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 694.55 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 698.47 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000015.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000015.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 667.77 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 698.28 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000015.npy
Saving metadata to _to_trash/circular_disc_sink_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.052769993 s
Info: compute_slice took 1252.72 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1224.84 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000015.npy
Saving metadata to _to_trash/circular_disc_sink_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.022858649 s
Info: compute_slice took 1220.56 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1218.24 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000015.npy
Saving metadata to _to_trash/circular_disc_sink_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 1201.44 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1212.71 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000015.npy
Saving metadata to _to_trash/circular_disc_sink_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.04 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000015.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000015.json
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.15, dt = 0.004776012337638394 ----------------
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.70 us (0.1%)
patch tree reduce : 1593.00 ns (0.0%)
gen split merge : 1011.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.0%)
LB compute : 9.08 ms (99.8%)
LB move op cnt : 0
LB apply : 4.72 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.74 us (77.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.506590619889524e-07,-7.158030118159799e-07,-3.7928468355836024e-08)
sum a = (6.451002926288751e-18,-3.3068166260807885e-18,-5.759824041329242e-20)
sum e = 0.05006645323447278
sum de = 0.000711998369467466
Info: CFL hydro = 0.005135263477020703 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005135263477020703 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.3525e+05 | 100000 | 1 | 7.394e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.254636130207828 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.15477601233763838, dt = 0.005135263477020703 ----------------
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.83 us (0.1%)
patch tree reduce : 1753.00 ns (0.0%)
gen split merge : 1062.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.0%)
LB compute : 9.26 ms (99.8%)
LB move op cnt : 0
LB apply : 4.61 us (0.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.82 us (78.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.146050461672978e-07,-7.684283256268352e-07,-4.026011324351679e-08)
sum a = (1.4338573731120796e-17,3.686287386450715e-18,2.676624113323589e-19)
sum e = 0.050071197089827164
sum de = 0.0007319732757783606
Info: CFL hydro = 0.0050163395269458635 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0050163395269458635 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.3461e+05 | 100000 | 1 | 7.429e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.885926130905982 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.15991127581465908, dt = 8.872418534092152e-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.57 us (0.4%)
patch tree reduce : 1593.00 ns (0.1%)
gen split merge : 1042.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.1%)
LB compute : 1715.96 us (98.8%)
LB move op cnt : 0
LB apply : 4.65 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (72.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.873601359108528e-09,-1.3215455135389732e-08,-6.856588942221194e-10)
sum a = (-1.1302807648161384e-17,-7.318364664277155e-18,-2.778268066994105e-19)
sum e = 0.05006367839104989
sum de = 0.00073353290590575
Info: CFL hydro = 0.0050169565927889416 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0050169565927889416 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.3776e+05 | 100000 | 1 | 7.259e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4400043706693745 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 36 [SPH][rank=0]
Info: time since start : 315.00593192 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000008.vtk [VTK Dump][rank=0]
- took 8.62 ms, bandwidth = 619.86 MB/s
Info: Dumping state to _to_trash/circular_disc_sink_100000/dump/dump_0000008.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (58.5%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000008.sham [Shamrock Dump][rank=0]
- took 13.65 ms, bandwidth = 895.04 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_sink_100000/analysis/plots/rho_integ_normal_0000016.npy
Saving metadata to _to_trash/circular_disc_sink_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.02 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000016.npy
Saving metadata to _to_trash/circular_disc_sink_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 703.17 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 708.08 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000016.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000016.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 685.02 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 690.72 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000016.npy
Saving metadata to _to_trash/circular_disc_sink_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.051396041 s
Info: compute_slice took 1242.29 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1205.45 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000016.npy
Saving metadata to _to_trash/circular_disc_sink_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.022451151000000003 s
Info: compute_slice took 1225.47 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1213.99 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000016.npy
Saving metadata to _to_trash/circular_disc_sink_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 1201.49 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1206.83 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000016.npy
Saving metadata to _to_trash/circular_disc_sink_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.03 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000016.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000016.json
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.16, dt = 0.0050169565927889416 ----------------
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.06 us (0.1%)
patch tree reduce : 1613.00 ns (0.0%)
gen split merge : 1242.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.0%)
LB compute : 9.22 ms (99.7%)
LB move op cnt : 0
LB apply : 5.73 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.40 us (80.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.4591654976879255e-07,-7.471953478995502e-07,-3.876112021110385e-08)
sum a = (-1.1628068299907035e-17,9.86623976961809e-18,8.809142651444724e-20)
sum e = 0.05007465278013863
sum de = 0.0007516001759323047
Info: CFL hydro = 0.004907321014850992 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004907321014850992 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.3587e+05 | 100000 | 1 | 7.360e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.539944825354 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.16501695659278895, dt = 0.004907321014850992 ----------------
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.54 us (0.1%)
patch tree reduce : 1713.00 ns (0.0%)
gen split merge : 1022.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.0%)
LB compute : 9.02 ms (99.8%)
LB move op cnt : 0
LB apply : 3.97 us (0.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (71.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.7512717366118175e-07,-7.253380686204788e-07,-3.7363637171250974e-08)
sum a = (-5.908901840045999e-18,3.5236570605778894e-18,2.862971361719535e-19)
sum e = 0.05007808638508626
sum de = 0.0007699609766970241
Info: CFL hydro = 0.004810074095525562 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004810074095525562 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.3260e+05 | 100000 | 1 | 7.542e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.42537525544521 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.16992427760763995, dt = 7.57223923600614e-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 : 33.27 us (0.4%)
patch tree reduce : 1623.00 ns (0.0%)
gen split merge : 1052.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.0%)
LB compute : 8.99 ms (99.5%)
LB move op cnt : 0
LB apply : 4.20 us (0.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (71.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.925880305396276e-09,-1.1075571976320025e-08,-5.680356827608896e-10)
sum a = (4.662069341687669e-18,-5.854691731421724e-18,-1.7618285302889447e-19)
sum e = 0.050071199940689884
sum de = 0.0007713883969926228
Info: CFL hydro = 0.004811343941625105 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004811343941625105 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.3523e+05 | 100000 | 1 | 7.395e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.36864551559644115 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 39 [SPH][rank=0]
Info: time since start : 334.16169962000004 (s) [SPH][rank=0]
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_sink_100000/analysis/plots/rho_integ_normal_0000017.npy
Saving metadata to _to_trash/circular_disc_sink_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.03 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000017.npy
Saving metadata to _to_trash/circular_disc_sink_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 689.11 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 725.23 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000017.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000017.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 683.34 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 721.70 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000017.npy
Saving metadata to _to_trash/circular_disc_sink_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.052318607 s
Info: compute_slice took 1277.43 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1225.42 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000017.npy
Saving metadata to _to_trash/circular_disc_sink_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.021990106000000002 s
Info: compute_slice took 1220.71 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1211.98 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000017.npy
Saving metadata to _to_trash/circular_disc_sink_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 1191.41 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1212.44 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000017.npy
Saving metadata to _to_trash/circular_disc_sink_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.03 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000017.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000017.json
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.17, dt = 0.004811343941625105 ----------------
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.75 us (0.1%)
patch tree reduce : 1754.00 ns (0.0%)
gen split merge : 1042.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.0%)
LB compute : 9.15 ms (99.7%)
LB move op cnt : 0
LB apply : 4.44 us (0.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.78 us (77.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.041898482535049e-07,-7.036025066972266e-07,-3.608412826948563e-08)
sum a = (-1.3552527156068805e-18,3.2526065174565133e-18,8.639736061993863e-20)
sum e = 0.050081636487784596
sum de = 0.0007877233112824574
Info: CFL hydro = 0.004719921461825384 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004719921461825384 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.3392e+05 | 100000 | 1 | 7.467e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.196897512399083 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.17481134394162512, dt = 0.004719921461825384 ----------------
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.51 us (0.2%)
patch tree reduce : 1633.00 ns (0.0%)
gen split merge : 1243.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.0%)
LB compute : 3.40 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.44 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.312152042809047e-07,-6.810235152777537e-07,-3.486705286600161e-08)
sum a = (-2.791820594150174e-18,1.3010426069826053e-18,-2.625802136488331e-19)
sum e = 0.0500851548232918
sum de = 0.0008043435724302845
Info: CFL hydro = 0.00517391439456514 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00517391439456514 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.3656e+05 | 100000 | 1 | 7.323e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.204626567374202 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1795312654034505, dt = 0.00046873459654950267 ----------------
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.81 us (0.4%)
patch tree reduce : 2.04 us (0.1%)
gen split merge : 1042.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1452.00 ns (0.1%)
LB compute : 1626.87 us (98.6%)
LB move op cnt : 0
LB apply : 4.89 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.633629141826088e-08,-6.653590268044287e-08,-3.4097772080931654e-09)
sum a = (3.2526065174565133e-18,-1.0570971181733668e-17,1.5077186461126546e-19)
sum e = 0.05007915219637136
sum de = 0.0008070792226184847
Info: CFL hydro = 0.005142762564971215 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005142762564971215 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.3967e+05 | 100000 | 1 | 7.160e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.356819758718629 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 42 [SPH][rank=0]
Info: time since start : 353.33330963900005 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000009.vtk [VTK Dump][rank=0]
- took 8.33 ms, bandwidth = 641.01 MB/s
Info: Dumping state to _to_trash/circular_disc_sink_100000/dump/dump_0000009.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.24 us (56.1%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000009.sham [Shamrock Dump][rank=0]
- took 11.48 ms, bandwidth = 1.04 GB/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_sink_100000/analysis/plots/rho_integ_normal_0000018.npy
Saving metadata to _to_trash/circular_disc_sink_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.02 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000018.npy
Saving metadata to _to_trash/circular_disc_sink_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 686.61 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 687.31 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000018.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000018.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 698.38 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 681.15 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000018.npy
Saving metadata to _to_trash/circular_disc_sink_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.052019038000000004 s
Info: compute_slice took 1233.34 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1196.43 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000018.npy
Saving metadata to _to_trash/circular_disc_sink_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.021998100000000003 s
Info: compute_slice took 1216.02 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1188.38 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000018.npy
Saving metadata to _to_trash/circular_disc_sink_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 1221.84 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1191.65 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000018.npy
Saving metadata to _to_trash/circular_disc_sink_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.03 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000018.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000018.json
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.18, dt = 0.005142762564971215 ----------------
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.40 us (0.1%)
patch tree reduce : 1904.00 ns (0.0%)
gen split merge : 1011.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.0%)
LB compute : 10.16 ms (99.7%)
LB move op cnt : 0
LB apply : 8.66 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.07 us (86.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.220052088169171e-07,-7.286909986704775e-07,-3.7352429351499585e-08)
sum a = (-6.179952383167375e-18,1.7943545954635098e-17,1.1011428314305904e-19)
sum e = 0.05009094420130069
sum de = 0.0008230280802409547
Info: CFL hydro = 0.005043211160047309 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005043211160047309 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.3266e+05 | 100000 | 1 | 7.538e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.5610341053976 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1851427625649712, dt = 0.004857237435028805 ----------------
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.20 us (2.0%)
patch tree reduce : 1703.00 ns (0.4%)
gen split merge : 1022.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 381.31 us (94.2%)
LB move op cnt : 0
LB apply : 3.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.279485479939148e-07,-6.73257601695053e-07,-3.4667941773885644e-08)
sum a = (6.071532165918825e-18,-9.812029660993815e-18,-1.5246593050577406e-19)
sum e = 0.05009416856843074
sum de = 0.0008388954609018929
Info: CFL hydro = 0.004847696400236019 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004847696400236019 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.3422e+05 | 100000 | 1 | 7.450e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.470202271107286 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 44 [SPH][rank=0]
Info: time since start : 371.651878677 (s) [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.07 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_normal_0000019.npy
Saving metadata to _to_trash/circular_disc_sink_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.04 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000019.npy
Saving metadata to _to_trash/circular_disc_sink_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 712.53 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 712.32 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000019.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000019.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 698.59 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 713.81 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000019.npy
Saving metadata to _to_trash/circular_disc_sink_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.056549595 s
Info: compute_slice took 1275.05 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1233.15 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000019.npy
Saving metadata to _to_trash/circular_disc_sink_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.026400369 s
Info: compute_slice took 1235.76 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1258.39 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000019.npy
Saving metadata to _to_trash/circular_disc_sink_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 1223.20 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1231.53 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000019.npy
Saving metadata to _to_trash/circular_disc_sink_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.03 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000019.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000019.json
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.19, dt = 0.004847696400236019 ----------------
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.75 us (1.3%)
patch tree reduce : 1633.00 ns (0.3%)
gen split merge : 1002.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 502.57 us (95.8%)
LB move op cnt : 0
LB apply : 4.95 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.21 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.647655604699258e-07,-6.555205042150055e-07,-3.401225462376289e-08)
sum a = (-1.485356976305141e-17,-1.0462550964485118e-17,-1.5924219408380846e-19)
sum e = 0.05009825953559751
sum de = 0.0008538910274735639
Info: CFL hydro = 0.004669170748412406 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004669170748412406 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.3231e+05 | 100000 | 1 | 7.558e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.090098944705847 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.19484769640023603, dt = 0.004669170748412406 ----------------
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.91 us (1.1%)
patch tree reduce : 1833.00 ns (0.3%)
gen split merge : 1273.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.1%)
LB compute : 627.67 us (96.6%)
LB move op cnt : 0
LB apply : 4.00 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (69.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.766361656184478e-07,-6.134341423643066e-07,-3.218378693391919e-08)
sum a = (-1.7509865085640897e-17,1.2034644114589099e-17,1.0164395367051604e-20)
sum e = 0.05010179907349545
sum de = 0.0008677785832108768
Info: CFL hydro = 0.00451144606214119 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00451144606214119 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.3256e+05 | 100000 | 1 | 7.544e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.28170766917237 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.19951686714864844, dt = 0.0004831328513515698 ----------------
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.3%)
patch tree reduce : 1963.00 ns (0.4%)
gen split merge : 1021.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.2%)
LB compute : 528.09 us (96.0%)
LB move op cnt : 0
LB apply : 4.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.360202098965524e-08,-6.14722394625189e-08,-3.271680068328674e-09)
sum a = (-7.15573433840433e-18,7.968885967768458e-18,-2.659683454378503e-19)
sum e = 0.05009594043796056
sum de = 0.0008703550662365736
Info: CFL hydro = 0.004496312707724665 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004496312707724665 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.3362e+05 | 100000 | 1 | 7.484e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.324079171990584 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 47 [SPH][rank=0]
Info: time since start : 391.102011568 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000010.vtk [VTK Dump][rank=0]
- took 8.54 ms, bandwidth = 625.19 MB/s
Info: Dumping state to _to_trash/circular_disc_sink_100000/dump/dump_0000010.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.99 us (58.6%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000010.sham [Shamrock Dump][rank=0]
- took 13.59 ms, bandwidth = 898.62 MB/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_sink_100000/analysis/plots/rho_integ_normal_0000020.npy
Saving metadata to _to_trash/circular_disc_sink_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.04 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000020.npy
Saving metadata to _to_trash/circular_disc_sink_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 699.81 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 693.83 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000020.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000020.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 705.53 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 691.10 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000020.npy
Saving metadata to _to_trash/circular_disc_sink_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.052436235000000005 s
Info: compute_slice took 1250.50 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1189.92 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000020.npy
Saving metadata to _to_trash/circular_disc_sink_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.03798543 s
Info: compute_slice took 1235.95 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1207.38 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000020.npy
Saving metadata to _to_trash/circular_disc_sink_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 1202.96 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1203.36 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000020.npy
Saving metadata to _to_trash/circular_disc_sink_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.03 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000020.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000020.json
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.2, dt = 0.004496312707724665 ----------------
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 : 38.82 us (8.1%)
patch tree reduce : 2.07 us (0.4%)
gen split merge : 1051.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 423.87 us (88.7%)
LB move op cnt : 0
LB apply : 4.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (70.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.884160570579e-07,-5.700579114636863e-07,-3.0391277142573614e-08)
sum a = (5.637851296924623e-18,-1.5504091066542713e-17,2.202285662861181e-20)
sum e = 0.05010570807099531
sum de = 0.0008818594693621022
Info: CFL hydro = 0.004357304100223719 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004357304100223719 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.3314e+05 | 100000 | 1 | 7.511e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.550671163214826 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.20449631270772467, dt = 0.004357304100223719 ----------------
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.35 us (1.2%)
patch tree reduce : 1703.00 ns (0.3%)
gen split merge : 1072.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1333.00 ns (0.2%)
LB compute : 528.00 us (96.2%)
LB move op cnt : 0
LB apply : 4.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1943.00 ns (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.978605211292818e-07,-5.330730515837605e-07,-2.8933970728470817e-08)
sum a = (-1.4094628242311558e-18,-5.1228552649940085e-18,-4.743384504624082e-20)
sum e = 0.050109228966479444
sum de = 0.0008934780762711087
Info: CFL hydro = 0.004233206676849229 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004233206676849229 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.3567e+05 | 100000 | 1 | 7.371e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.28129923551522 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2088536168079484, dt = 0.0011463831920515977 ----------------
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.02 us (1.9%)
patch tree reduce : 1993.00 ns (0.5%)
gen split merge : 1223.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 351.77 us (94.3%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9131377655484064e-07,-1.3487194495500937e-07,-7.478169885651125e-09)
sum a = (-6.559423143537302e-18,-4.689174395999807e-18,2.1514636860259229e-19)
sum e = 0.050105094799285946
sum de = 0.000897448050059396
Info: CFL hydro = 0.0042029577031387965 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0042029577031387965 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.3794e+05 | 100000 | 1 | 7.250e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.692768616909433 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 50 [SPH][rank=0]
Info: time since start : 410.28028916200003 (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_sink_100000/analysis/plots/rho_integ_normal_0000021.npy
Saving metadata to _to_trash/circular_disc_sink_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.03 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000021.npy
Saving metadata to _to_trash/circular_disc_sink_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 692.35 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 703.14 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000021.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000021.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 686.23 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 683.67 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000021.npy
Saving metadata to _to_trash/circular_disc_sink_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.053972979000000004 s
Info: compute_slice took 1252.56 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1194.20 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000021.npy
Saving metadata to _to_trash/circular_disc_sink_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.022924474 s
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 1208.03 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000021.npy
Saving metadata to _to_trash/circular_disc_sink_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 1203.66 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1205.57 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000021.npy
Saving metadata to _to_trash/circular_disc_sink_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.03 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000021.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000021.json
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.21, dt = 0.0042029577031387965 ----------------
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 : 1713.00 ns (0.0%)
gen split merge : 21.19 us (0.3%)
split / merge op : 0/0
apply split merge : 1031.00 ns (0.0%)
LB compute : 8.20 ms (99.5%)
LB move op cnt : 0
LB apply : 4.76 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.00 us (78.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.087613896035198e-07,-4.890294325315478e-07,-2.7286276492807917e-08)
sum a = (-5.637851296924623e-18,1.3823577699190182e-18,9.994988777600744e-20)
sum e = 0.05011367269524736
sum de = 0.0009068954091718284
Info: CFL hydro = 0.004093294944303577 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004093294944303577 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.3079e+05 | 100000 | 1 | 7.646e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.789795682742373 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2142029577031388, dt = 0.004093294944303577 ----------------
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.9%)
patch tree reduce : 1593.00 ns (0.2%)
gen split merge : 1051.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.1%)
LB compute : 754.65 us (97.3%)
LB move op cnt : 0
LB apply : 3.85 us (0.5%)
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 = (7.16184853822148e-07,-4.558995271705931e-07,-2.610283255554705e-08)
sum a = (8.185726402265558e-18,1.292911090688964e-17,-9.317362419797304e-20)
sum e = 0.050117148383238115
sum de = 0.0009164106680090038
Info: CFL hydro = 0.003994693346211351 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.003994693346211351 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.3541e+05 | 100000 | 1 | 7.385e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.954362606152102 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.21829625264744237, dt = 0.0017037473525576274 ----------------
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.6%)
patch tree reduce : 1793.00 ns (0.4%)
gen split merge : 1242.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 392.96 us (95.1%)
LB move op cnt : 0
LB apply : 3.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.08368833569729e-07,-1.8093141671378436e-07,-1.0670743570723624e-08)
sum a = (4.391018798566293e-18,4.933119884809045e-18,1.9651164376299768e-19)
sum e = 0.05011465518857551
sum de = 0.0009210300818870607
Info: CFL hydro = 0.003956670799243221 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.003956670799243221 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.3664e+05 | 100000 | 1 | 7.319e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.380778292009785 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 53 [SPH][rank=0]
Info: time since start : 429.37841660000004 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000011.vtk [VTK Dump][rank=0]
- took 8.43 ms, bandwidth = 633.77 MB/s
Info: Dumping state to _to_trash/circular_disc_sink_100000/dump/dump_0000011.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.49 us (56.6%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000011.sham [Shamrock Dump][rank=0]
- took 13.44 ms, bandwidth = 908.87 MB/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_sink_100000/analysis/plots/rho_integ_normal_0000022.npy
Saving metadata to _to_trash/circular_disc_sink_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.09 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000022.npy
Saving metadata to _to_trash/circular_disc_sink_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 690.32 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 689.73 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000022.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000022.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 661.10 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 703.67 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000022.npy
Saving metadata to _to_trash/circular_disc_sink_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.05817721000000001 s
Info: compute_slice took 1264.68 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1210.41 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000022.npy
Saving metadata to _to_trash/circular_disc_sink_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.022288671000000003 s
Info: compute_slice took 1226.24 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1189.98 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000022.npy
Saving metadata to _to_trash/circular_disc_sink_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 1191.85 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1196.08 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000022.npy
Saving metadata to _to_trash/circular_disc_sink_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.09 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000022.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000022.json
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.22, dt = 0.003956670799243221 ----------------
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.75 us (0.2%)
patch tree reduce : 1844.00 ns (0.1%)
gen split merge : 1082.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1272.00 ns (0.0%)
LB compute : 3.62 ms (99.4%)
LB move op cnt : 0
LB apply : 4.03 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 = (7.258906631421675e-07,-4.112703886832044e-07,-2.4591562340161906e-08)
sum a = (-2.3852447794681098e-18,1.1221492485224971e-17,1.5585406229479126e-19)
sum e = 0.05012206189936489
sum de = 0.0009285848964389018
Info: CFL hydro = 0.003869351680431183 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.003869351680431183 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.3037e+05 | 100000 | 1 | 7.671e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.56941377517749 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.22395667079924322, dt = 0.003869351680431183 ----------------
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.96 us (1.7%)
patch tree reduce : 2.52 us (0.5%)
gen split merge : 1242.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.2%)
LB compute : 454.97 us (94.8%)
LB move op cnt : 0
LB apply : 4.49 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.316016052379507e-07,-3.8110980169324556e-07,-2.361422119313272e-08)
sum a = (8.131516293641283e-19,1.0950441942103595e-17,1.5246593050577406e-20)
sum e = 0.05012547775044911
sum de = 0.0009361259101292136
Info: CFL hydro = 0.004212380115029849 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004212380115029849 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.3267e+05 | 100000 | 1 | 7.538e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.480465631167235 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2278260224796744, dt = 0.0021739775203256095 ----------------
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.3%)
patch tree reduce : 2.03 us (0.1%)
gen split merge : 1032.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.0%)
LB compute : 1824.40 us (98.9%)
LB move op cnt : 0
LB apply : 3.62 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.226382283015515e-07,-2.0190976695435772e-07,-1.302545325803718e-08)
sum a = (-3.144186300207963e-18,-5.068645156369733e-18,1.3552527156068805e-20)
sum e = 0.05012450636654076
sum de = 0.0009407489549526935
Info: CFL hydro = 0.004167726374522186 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004167726374522186 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.3528e+05 | 100000 | 1 | 7.392e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.587172697304235 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 56 [SPH][rank=0]
Info: time since start : 448.646993236 (s) [SPH][rank=0]
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_sink_100000/analysis/plots/rho_integ_normal_0000023.npy
Saving metadata to _to_trash/circular_disc_sink_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.03 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000023.npy
Saving metadata to _to_trash/circular_disc_sink_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 695.81 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 686.59 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000023.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000023.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 658.52 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 691.75 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000023.npy
Saving metadata to _to_trash/circular_disc_sink_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.052882668 s
Info: compute_slice took 1249.11 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1224.01 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000023.npy
Saving metadata to _to_trash/circular_disc_sink_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.027330583000000002 s
Info: compute_slice took 1235.10 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1193.12 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000023.npy
Saving metadata to _to_trash/circular_disc_sink_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 1202.64 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1198.35 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000023.npy
Saving metadata to _to_trash/circular_disc_sink_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.03 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000023.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000023.json
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.23, dt = 0.004167726374522186 ----------------
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.82 us (1.6%)
patch tree reduce : 1913.00 ns (0.4%)
gen split merge : 1032.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.2%)
LB compute : 451.90 us (95.2%)
LB move op cnt : 0
LB apply : 4.45 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.22410893905316e-07,-3.7340804755159015e-07,-2.4707580419490444e-08)
sum a = (-4.065758146820642e-18,1.666960840196463e-17,-2.286988957586611e-19)
sum e = 0.05013217156456438
sum de = 0.0009469476884639211
Info: CFL hydro = 0.004649228717473999 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004649228717473999 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.3231e+05 | 100000 | 1 | 7.558e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.852166760040355 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.23416772637452218, dt = 0.004649228717473999 ----------------
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.77 us (1.6%)
patch tree reduce : 1903.00 ns (0.4%)
gen split merge : 1053.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 404.09 us (95.0%)
LB move op cnt : 0
LB apply : 3.43 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.4269790621588e-07,-3.8616200650959306e-07,-2.6992446086876607e-08)
sum a = (1.0950441942103595e-17,-8.131516293641283e-19,2.270048298641525e-19)
sum e = 0.05013785601681625
sum de = 0.0009534687918586453
Info: CFL hydro = 0.004577123483697394 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004577123483697394 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.3254e+05 | 100000 | 1 | 7.545e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.183084664131414 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.23881695509199619, dt = 0.0011830449080038052 ----------------
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.28 us (1.1%)
patch tree reduce : 1733.00 ns (0.3%)
gen split merge : 1012.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 526.25 us (96.3%)
LB move op cnt : 0
LB apply : 3.60 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4673165308566897e-07,-8.919564010812311e-08,-6.7043887426883445e-09)
sum a = (-2.656295322589486e-18,-9.75781955236954e-18,-2.1514636860259229e-19)
sum e = 0.05013301456592965
sum de = 0.0009563769866542751
Info: CFL hydro = 0.004545076631180477 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004545076631180477 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.3672e+05 | 100000 | 1 | 7.314e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.822871732081147 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 59 [SPH][rank=0]
Info: time since start : 467.75532165500005 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000012.vtk [VTK Dump][rank=0]
- took 8.43 ms, bandwidth = 633.57 MB/s
Info: Dumping state to _to_trash/circular_disc_sink_100000/dump/dump_0000012.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.53 us (57.7%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000012.sham [Shamrock Dump][rank=0]
- took 12.31 ms, bandwidth = 991.94 MB/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_sink_100000/analysis/plots/rho_integ_normal_0000024.npy
Saving metadata to _to_trash/circular_disc_sink_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.04 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000024.npy
Saving metadata to _to_trash/circular_disc_sink_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 685.58 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 694.09 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000024.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000024.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 655.68 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 700.89 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000024.npy
Saving metadata to _to_trash/circular_disc_sink_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.057939647000000004 s
Info: compute_slice took 1251.48 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1204.37 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000024.npy
Saving metadata to _to_trash/circular_disc_sink_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.021911099 s
Info: compute_slice took 1211.41 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1190.95 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000024.npy
Saving metadata to _to_trash/circular_disc_sink_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 1198.07 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1207.32 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000024.npy
Saving metadata to _to_trash/circular_disc_sink_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.03 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000024.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000024.json
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.24, dt = 0.004545076631180477 ----------------
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 : 9.20 us (1.9%)
patch tree reduce : 2.25 us (0.5%)
gen split merge : 1152.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.2%)
LB compute : 450.07 us (94.3%)
LB move op cnt : 0
LB apply : 5.59 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.21 us (74.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.543836776279764e-07,-3.3353413354650005e-07,-2.5595224459679543e-08)
sum a = (-9.64939933512099e-18,-1.1140177322288558e-17,1.7279472123987727e-19)
sum e = 0.05014307550761608
sum de = 0.0009606703007678231
Info: CFL hydro = 0.004413924045159977 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004413924045159977 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.3669e+05 | 100000 | 1 | 7.316e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.365096730391873 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.24454507663118047, dt = 0.004413924045159977 ----------------
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.70 us (0.1%)
patch tree reduce : 1774.00 ns (0.0%)
gen split merge : 1042.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.0%)
LB compute : 5.49 ms (99.6%)
LB move op cnt : 0
LB apply : 4.24 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.36 us (70.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.50152662459879e-07,-2.8879604094322e-07,-2.4246406774570663e-08)
sum a = (-1.4582519219930035e-17,-4.472333961502706e-18,-2.422514229147299e-19)
sum e = 0.050146992478920724
sum de = 0.0009651686538536815
Info: CFL hydro = 0.004297542923465167 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004297542923465167 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.3441e+05 | 100000 | 1 | 7.440e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.357914791768067 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.24895900067634044, dt = 0.0010409993236595583 ----------------
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.02 us (1.9%)
patch tree reduce : 2.10 us (0.6%)
gen split merge : 1183.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 343.79 us (94.1%)
LB move op cnt : 0
LB apply : 3.31 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2910166967535808e-07,-5.972064382091052e-08,-5.576538430693188e-09)
sum a = (1.8973538018496328e-18,1.7618285302889447e-19,-9.825582188149884e-20)
sum e = 0.05014254033400129
sum de = 0.0009672906960362063
Info: CFL hydro = 0.004387106555808679 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004387106555808679 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.3519e+05 | 100000 | 1 | 7.397e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.066493546452191 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 62 [SPH][rank=0]
Info: time since start : 486.851032927 (s) [SPH][rank=0]
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_sink_100000/analysis/plots/rho_integ_normal_0000025.npy
Saving metadata to _to_trash/circular_disc_sink_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.02 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000025.npy
Saving metadata to _to_trash/circular_disc_sink_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 697.44 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 709.23 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000025.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000025.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 660.99 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 684.14 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000025.npy
Saving metadata to _to_trash/circular_disc_sink_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.051834686000000005 s
Info: compute_slice took 1255.07 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1190.23 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000025.npy
Saving metadata to _to_trash/circular_disc_sink_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.022756007 s
Info: compute_slice took 1224.56 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1191.67 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000025.npy
Saving metadata to _to_trash/circular_disc_sink_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 1215.71 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1202.70 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000025.npy
Saving metadata to _to_trash/circular_disc_sink_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.02 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000025.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000025.json
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.25, dt = 0.004387106555808679 ----------------
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.28 us (1.5%)
patch tree reduce : 1693.00 ns (0.4%)
gen split merge : 1052.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 451.46 us (95.6%)
LB move op cnt : 0
LB apply : 3.82 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.41 us (78.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.702852547270583e-07,-2.4313988371216856e-07,-2.335909852032485e-08)
sum a = (-2.3852447794681098e-18,-2.4665599424045226e-18,-2.219226321806267e-19)
sum e = 0.05015219099984839
sum de = 0.0009694036800891385
Info: CFL hydro = 0.004240620988416167 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004240620988416167 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.3086e+05 | 100000 | 1 | 7.642e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.667218530554997 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.25438710655580865, dt = 0.004240620988416167 ----------------
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 (1.4%)
patch tree reduce : 2.18 us (0.5%)
gen split merge : 1022.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 449.12 us (95.5%)
LB move op cnt : 0
LB apply : 3.57 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.564659219087092e-07,-1.9941710504976133e-07,-2.199459066711894e-08)
sum a = (7.047314121155779e-18,2.202285662861181e-17,-8.300922883092143e-20)
sum e = 0.05015594444057777
sum de = 0.00097174928746595
Info: CFL hydro = 0.004333102931526494 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004333102931526494 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.3315e+05 | 100000 | 1 | 7.510e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.32766396879595 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2586277275442248, dt = 0.001372272455775203 ----------------
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.38 us (1.6%)
patch tree reduce : 1764.00 ns (0.4%)
gen split merge : 1053.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 382.33 us (94.9%)
LB move op cnt : 0
LB apply : 4.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.1487019944437397e-07,-5.3011031865092594e-08,-6.932083843236025e-09)
sum a = (-7.48099499014998e-18,-1.5409223376450232e-17,-4.743384504624082e-20)
sum e = 0.050152483843393
sum de = 0.000973389542989689
Info: CFL hydro = 0.004289311160843562 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004289311160843562 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.3930e+05 | 100000 | 1 | 7.179e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.8816291354552055 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 65 [SPH][rank=0]
Info: time since start : 505.939258063 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000013.vtk [VTK Dump][rank=0]
- took 8.48 ms, bandwidth = 630.15 MB/s
Info: Dumping state to _to_trash/circular_disc_sink_100000/dump/dump_0000013.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.23 us (58.2%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000013.sham [Shamrock Dump][rank=0]
- took 13.36 ms, bandwidth = 914.00 MB/s
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_sink_100000/analysis/plots/rho_integ_normal_0000026.npy
Saving metadata to _to_trash/circular_disc_sink_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.03 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000026.npy
Saving metadata to _to_trash/circular_disc_sink_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 704.97 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 695.83 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000026.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000026.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 668.36 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 694.70 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000026.npy
Saving metadata to _to_trash/circular_disc_sink_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.053501843 s
Info: compute_slice took 1243.42 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1201.17 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000026.npy
Saving metadata to _to_trash/circular_disc_sink_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.021933674 s
Info: compute_slice took 1221.20 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1212.65 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000026.npy
Saving metadata to _to_trash/circular_disc_sink_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 1184.50 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1208.14 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000026.npy
Saving metadata to _to_trash/circular_disc_sink_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.04 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000026.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000026.json
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.26, dt = 0.004289311160843562 ----------------
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.0%)
patch tree reduce : 1613.00 ns (0.0%)
gen split merge : 1343.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1353.00 ns (0.0%)
LB compute : 15.38 ms (99.9%)
LB move op cnt : 0
LB apply : 4.29 us (0.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.97 us (75.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.892962819792162e-07,-1.5380287510613033e-07,-2.147839111554439e-08)
sum a = (-2.5478751053409354e-18,-2.0050963927403798e-17,-2.896852679609707e-19)
sum e = 0.050161592931905266
sum de = 0.0009733911231426172
Info: CFL hydro = 0.004367687036197421 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004367687036197421 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.3292e+05 | 100000 | 1 | 7.523e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.52460876511742 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2642893111608436, dt = 0.004367687036197421 ----------------
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.26 us (0.0%)
patch tree reduce : 1984.00 ns (0.0%)
gen split merge : 1012.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.0%)
LB compute : 16.08 ms (99.9%)
LB move op cnt : 0
LB apply : 4.57 us (0.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.23 us (75.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0225828823683803e-06,-1.1800927243544793e-07,-2.1263107584037913e-08)
sum a = (1.951563910473908e-18,-1.2752928053860746e-17,-3.1340219048409113e-19)
sum e = 0.05016606154155686
sum de = 0.0009734352234420679
Info: CFL hydro = 0.0043265199559683306 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0043265199559683306 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.3314e+05 | 100000 | 1 | 7.511e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.9347285131835 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.26865699819704103, dt = 0.0013430018029589874 ----------------
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.2%)
patch tree reduce : 1683.00 ns (0.1%)
gen split merge : 1122.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1313.00 ns (0.0%)
LB compute : 2.89 ms (99.3%)
LB move op cnt : 0
LB apply : 3.63 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (71.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.186758015876433e-07,-2.386122322587525e-08,-6.345182639732691e-09)
sum a = (7.318364664277155e-18,-3.347474207548995e-18,1.6940658945086007e-20)
sum e = 0.050162202368506256
sum de = 0.0009744702931554242
Info: CFL hydro = 0.004269572706553303 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004269572706553303 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.3420e+05 | 100000 | 1 | 7.451e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.488500708929423 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 68 [SPH][rank=0]
Info: time since start : 525.113919298 (s) [SPH][rank=0]
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_sink_100000/analysis/plots/rho_integ_normal_0000027.npy
Saving metadata to _to_trash/circular_disc_sink_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.03 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000027.npy
Saving metadata to _to_trash/circular_disc_sink_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 700.11 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 699.29 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000027.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000027.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 690.58 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 693.86 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000027.npy
Saving metadata to _to_trash/circular_disc_sink_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.052308699 s
Info: compute_slice took 1246.71 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1194.97 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000027.npy
Saving metadata to _to_trash/circular_disc_sink_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.022223891000000003 s
Info: compute_slice took 1227.49 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1210.23 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000027.npy
Saving metadata to _to_trash/circular_disc_sink_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 1196.63 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1197.00 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000027.npy
Saving metadata to _to_trash/circular_disc_sink_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.02 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000027.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000027.json
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.27, dt = 0.004269572706553303 ----------------
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 : 1873.00 ns (0.0%)
gen split merge : 1051.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.0%)
LB compute : 9.05 ms (99.8%)
LB move op cnt : 0
LB apply : 3.84 us (0.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (69.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0169186911583694e-06,-6.350791478829462e-08,-1.99818540403851e-08)
sum a = (-4.716279450311944e-18,5.854691731421724e-18,-5.421010862427522e-20)
sum e = 0.05017128706006028
sum de = 0.0009722344653133528
Info: CFL hydro = 0.004180361291646118 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004180361291646118 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.3434e+05 | 100000 | 1 | 7.444e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.648601427257894 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.27426957270655333, dt = 0.004180361291646118 ----------------
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.50 us (0.2%)
patch tree reduce : 1823.00 ns (0.1%)
gen split merge : 1012.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.0%)
LB compute : 3.60 ms (99.4%)
LB move op cnt : 0
LB apply : 4.49 us (0.1%)
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 = (1.006434566431712e-06,-2.3143499085921508e-08,-1.8966763901364156e-08)
sum a = (4.391018798566293e-18,9.332609012847881e-18,-1.1689054672109345e-19)
sum e = 0.05017513427807501
sum de = 0.0009702082114519047
Info: CFL hydro = 0.0043200390376339735 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0043200390376339735 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.3321e+05 | 100000 | 1 | 7.507e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.04709374390183 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.27844993399819945, dt = 0.0015500660018005763 ----------------
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 : 1633.00 ns (0.0%)
gen split merge : 1002.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.0%)
LB compute : 5.86 ms (99.6%)
LB move op cnt : 0
LB apply : 4.62 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (70.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.7648114277136083e-07,5.891931686336264e-09,-6.81299461948517e-09)
sum a = (-2.168404344971009e-18,-9.700221311956247e-18,2.879912020664621e-20)
sum e = 0.05017210981906773
sum de = 0.0009702690327109755
Info: CFL hydro = 0.004276169214621043 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004276169214621043 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.3534e+05 | 100000 | 1 | 7.389e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.552041345814765 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 71 [SPH][rank=0]
Info: time since start : 544.2250972090001 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000014.vtk [VTK Dump][rank=0]
- took 8.38 ms, bandwidth = 637.46 MB/s
Info: Dumping state to _to_trash/circular_disc_sink_100000/dump/dump_0000014.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (57.4%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000014.sham [Shamrock Dump][rank=0]
- took 13.38 ms, bandwidth = 912.75 MB/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_sink_100000/analysis/plots/rho_integ_normal_0000028.npy
Saving metadata to _to_trash/circular_disc_sink_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.03 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000028.npy
Saving metadata to _to_trash/circular_disc_sink_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 698.97 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 692.82 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000028.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000028.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 699.29 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 686.28 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000028.npy
Saving metadata to _to_trash/circular_disc_sink_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.053261945000000005 s
Info: compute_slice took 1274.62 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1230.84 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000028.npy
Saving metadata to _to_trash/circular_disc_sink_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.021629187 s
Info: compute_slice took 1218.38 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1226.02 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000028.npy
Saving metadata to _to_trash/circular_disc_sink_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 1208.95 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1224.85 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000028.npy
Saving metadata to _to_trash/circular_disc_sink_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.03 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000028.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000028.json
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.28, dt = 0.004276169214621043 ----------------
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 : 1683.00 ns (0.0%)
gen split merge : 1052.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.0%)
LB compute : 9.11 ms (99.7%)
LB move op cnt : 0
LB apply : 5.28 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.65 us (76.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0415398961457744e-06,3.1250436256300535e-08,-1.8568162540418498e-08)
sum a = (-4.0115480381963664e-18,-5.759824041329242e-18,1.2027867851011065e-19)
sum e = 0.05018103703837727
sum de = 0.0009657318282310893
Info: CFL hydro = 0.0042876567699226455 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0042876567699226455 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.3508e+05 | 100000 | 1 | 7.403e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.794827866566944 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.28427616921462107, dt = 0.0042876567699226455 ----------------
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.53 us (0.1%)
patch tree reduce : 1623.00 ns (0.0%)
gen split merge : 1012.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.0%)
LB compute : 8.96 ms (99.8%)
LB move op cnt : 0
LB apply : 3.76 us (0.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0512169275262424e-06,7.33161824685035e-08,-1.7984860621515726e-08)
sum a = (-1.1275702593849246e-17,-1.4230153513872246e-19,-1.3044307387716225e-19)
sum e = 0.05018521199647329
sum de = 0.0009612097255800036
Info: CFL hydro = 0.0043611679303548695 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0043611679303548695 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.3554e+05 | 100000 | 1 | 7.378e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.920973268163923 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2885638259845437, dt = 0.0014361740154562597 ----------------
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 (0.1%)
patch tree reduce : 1934.00 ns (0.0%)
gen split merge : 1042.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.0%)
LB compute : 9.12 ms (99.7%)
LB move op cnt : 0
LB apply : 4.83 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.08 us (78.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.5378957407857203e-07,3.887758761469506e-08,-5.808681621444836e-09)
sum a = (0,8.17217387510949e-18,3.3034284942917713e-19)
sum e = 0.050181665915439135
sum de = 0.0009606351048095541
Info: CFL hydro = 0.0043179717995710885 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0043179717995710885 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.3263e+05 | 100000 | 1 | 7.540e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.857400586626298 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 74 [SPH][rank=0]
Info: time since start : 563.502096699 (s) [SPH][rank=0]
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_sink_100000/analysis/plots/rho_integ_normal_0000029.npy
Saving metadata to _to_trash/circular_disc_sink_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.04 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000029.npy
Saving metadata to _to_trash/circular_disc_sink_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 701.98 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 704.39 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000029.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000029.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 698.22 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 692.67 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000029.npy
Saving metadata to _to_trash/circular_disc_sink_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.053075300000000006 s
Info: compute_slice took 1256.24 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1204.68 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000029.npy
Saving metadata to _to_trash/circular_disc_sink_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.024797481000000003 s
Info: compute_slice took 1238.45 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1204.09 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000029.npy
Saving metadata to _to_trash/circular_disc_sink_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 1211.42 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1188.02 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000029.npy
Saving metadata to _to_trash/circular_disc_sink_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.03 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000029.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000029.json
Saving perf history to _to_trash/circular_disc_sink_100000/analysis/perf_history.json
---------------- t = 0.29, dt = 0.0043179717995710885 ----------------
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.04 us (1.5%)
patch tree reduce : 1804.00 ns (0.3%)
gen split merge : 1092.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 524.48 us (95.5%)
LB move op cnt : 0
LB apply : 5.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (71.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.064955199090474e-06,1.3143963795322867e-07,-1.72454333467291e-08)
sum a = (7.26415455565288e-18,-1.7943545954635098e-17,-3.5575383784680614e-20)
sum e = 0.0501908199132231
sum de = 0.0009535922699303719
Info: CFL hydro = 0.004185918675938343 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004185918675938343 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.3254e+05 | 100000 | 1 | 7.545e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.603705501194703 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2943179717995711, dt = 0.004185918675938343 ----------------
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.48 us (1.6%)
patch tree reduce : 1654.00 ns (0.3%)
gen split merge : 1322.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 452.27 us (95.3%)
LB move op cnt : 0
LB apply : 3.96 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0347560852595026e-06,1.701704111580106e-07,-1.607467658013941e-08)
sum a = (1.4094628242311558e-18,1.260385025514399e-18,-1.1604351377383915e-19)
sum e = 0.05019447149192577
sum de = 0.0009469259205656227
Info: CFL hydro = 0.004121452387434741 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004121452387434741 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.3239e+05 | 100000 | 1 | 7.553e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.950529274311908 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2985038904755094, dt = 0.0014961095244905853 ----------------
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.95 us (0.1%)
patch tree reduce : 2.01 us (0.0%)
gen split merge : 1263.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.0%)
LB compute : 9.14 ms (99.7%)
LB move op cnt : 0
LB apply : 4.75 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.26 us (76.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.699853619585139e-07,7.577859186116498e-08,-5.5196025701801735e-09)
sum a = (6.288372600415926e-18,3.415236843329339e-18,1.1265538198482195e-19)
sum e = 0.05019125333384568
sum de = 0.0009453687214278323
Info: CFL hydro = 0.004084313322482105 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004084313322482105 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.3665e+05 | 100000 | 1 | 7.318e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.359915560233427 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 77 [SPH][rank=0]
Info: time since start : 582.7223011660001 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000015.vtk [VTK Dump][rank=0]
- took 8.39 ms, bandwidth = 636.72 MB/s
Info: Dumping state to _to_trash/circular_disc_sink_100000/dump/dump_0000015.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.27 us (57.3%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000015.sham [Shamrock Dump][rank=0]
- took 11.70 ms, bandwidth = 1.02 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_sink_100000/analysis/plots/rho_integ_normal_0000030.npy
Saving metadata to _to_trash/circular_disc_sink_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.04 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_integ_hollywood_0000030.npy
Saving metadata to _to_trash/circular_disc_sink_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 686.99 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 687.91 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000030.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/rho_slice_0000030.json
Info: compute_slice field_name: vxyz, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 686.46 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 685.60 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/v_z_slice_0000030.npy
Saving metadata to _to_trash/circular_disc_sink_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.057186931 s
Info: compute_slice took 1262.41 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1182.94 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/relative_azy_velocity_slice_0000030.npy
Saving metadata to _to_trash/circular_disc_sink_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.031191585 s
Info: compute_slice took 1215.03 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1191.73 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/vertical_shear_gradient_slice_0000030.npy
Saving metadata to _to_trash/circular_disc_sink_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 1203.85 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1186.46 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/dt_part_slice_0000030.npy
Saving metadata to _to_trash/circular_disc_sink_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.03 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000030.npy
Saving metadata to _to_trash/circular_disc_sink_100000/analysis/plots/particle_count_0000030.json
Saving perf history to _to_trash/circular_disc_sink_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)
534 import matplotlib
535 import matplotlib.pyplot as plt
536
537 face_on_render_kwargs = {
538 "x_unit": "au",
539 "y_unit": "au",
540 "time_unit": "year",
541 "x_label": "x",
542 "y_label": "y",
543 }
544
545 sink_params = {
546 "sink_scale_factor": 5,
547 "sink_color": "green",
548 "sink_linewidth": 1,
549 "sink_fill": False,
550 }
551
552 column_density_plot.render_all(
553 **face_on_render_kwargs,
554 field_unit="kg.m^-2",
555 field_label="$\\int \\rho \\, \\mathrm{{d}} z$",
556 vmin=1,
557 vmax=1e4,
558 norm="log",
559 **sink_params,
560 )
561
562 column_density_plot_hollywood.render_all(
563 **face_on_render_kwargs,
564 field_unit="kg.m^-2",
565 field_label="$\\int \\rho \\, \\mathrm{{d}} z$",
566 vmin=1,
567 vmax=1e4,
568 norm="log",
569 holywood_mode=True,
570 **sink_params,
571 )
572
573 vertical_density_plot.render_all(
574 **face_on_render_kwargs,
575 field_unit="kg.m^-3",
576 field_label="$\\rho$",
577 vmin=1e-10,
578 vmax=1e-6,
579 norm="log",
580 **sink_params,
581 )
582
583 v_z_slice_plot.render_all(
584 **face_on_render_kwargs,
585 field_unit="m.s^-1",
586 field_label="$\\mathrm{v}_z$",
587 cmap="seismic",
588 cmap_bad_color="white",
589 vmin=-300,
590 vmax=300,
591 **sink_params,
592 )
593
594 relative_azy_velocity_slice_plot.render_all(
595 **face_on_render_kwargs,
596 field_unit="m.s^-1",
597 field_label="$\\mathrm{v}_{\\theta} - v_k$",
598 cmap="seismic",
599 cmap_bad_color="white",
600 vmin=-300,
601 vmax=300,
602 **sink_params,
603 )
604
605 vertical_shear_gradient_slice_plot.render_all(
606 **face_on_render_kwargs,
607 field_unit="yr^-1",
608 field_label="${{\\partial R \\Omega}}/{{\\partial z}}$",
609 cmap="seismic",
610 cmap_bad_color="white",
611 vmin=-1,
612 vmax=1,
613 **sink_params,
614 )
615
616 dt_part_slice_plot.render_all(
617 **face_on_render_kwargs,
618 field_unit="year",
619 field_label="$\\Delta t$",
620 vmin=1e-4,
621 vmax=1,
622 norm="log",
623 contour_list=[1e-4, 1e-3, 1e-2, 1e-1, 1],
624 **sink_params,
625 )
626
627 column_particle_count_plot.render_all(
628 **face_on_render_kwargs,
629 field_unit=None,
630 field_label="$\\int \\frac{1}{h_\\mathrm{part}} \\, \\mathrm{{d}} z$",
631 vmin=1,
632 vmax=1e2,
633 norm="log",
634 contour_list=[1, 10, 100, 1000],
635 **sink_params,
636 )
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000000.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000001.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000002.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000003.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000004.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000005.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000006.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000007.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000008.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000009.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000010.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000011.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000012.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000013.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000014.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000015.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000016.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000017.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000018.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000019.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000020.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000021.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000022.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000023.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000024.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000025.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000026.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000027.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000028.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000029.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_normal_0000030.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000000.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000001.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000002.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000003.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000004.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000005.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000006.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000007.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000008.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000009.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000010.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000011.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000012.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000013.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000014.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000015.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000016.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000017.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000018.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000019.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000020.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000021.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000022.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000023.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000024.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000025.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000026.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000027.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000028.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000029.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_integ_hollywood_0000030.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000000.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000001.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000002.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000003.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000004.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000005.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000006.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000007.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000008.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000009.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000010.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000011.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000012.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000013.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000014.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000015.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000016.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000017.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000018.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000019.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000020.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000021.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000022.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000023.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000024.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000025.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000026.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000027.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000028.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000029.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_rho_slice_0000030.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000000.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000001.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000002.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000003.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000004.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000005.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000006.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000007.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000008.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000009.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000010.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000011.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000012.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000013.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000014.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000015.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000016.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000017.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000018.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000019.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000020.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000021.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000022.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000023.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000024.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000025.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000026.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000027.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000028.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000029.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_v_z_slice_0000030.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000000.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000001.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000002.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000003.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000004.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000005.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000006.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000007.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000008.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000009.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000010.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000011.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000012.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000013.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000014.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000015.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000016.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000017.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000018.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000019.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000020.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000021.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000022.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000023.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000024.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000025.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000026.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000027.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000028.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000029.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_relative_azy_velocity_slice_0000030.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000000.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000001.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000002.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000003.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000004.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000005.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000006.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000007.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000008.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000009.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000010.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000011.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000012.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000013.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000014.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000015.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000016.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000017.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000018.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000019.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000020.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000021.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000022.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000023.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000024.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000025.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000026.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000027.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000028.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000029.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_vertical_shear_gradient_slice_0000030.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000000.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000001.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000002.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000003.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000004.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000005.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000006.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000007.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000008.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000009.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000010.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000011.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000012.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000013.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000014.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000015.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000016.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000017.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000018.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000019.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000020.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000021.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000022.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000023.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000024.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000025.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000026.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000027.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000028.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000029.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_dt_part_slice_0000030.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000000.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000001.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000002.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000003.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000004.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000005.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000006.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000007.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000008.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000009.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000010.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000011.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000012.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000013.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000014.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000015.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000016.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000017.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000018.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000019.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000020.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000021.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000022.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000023.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000024.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000025.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000026.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000027.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000028.png
Saving plot to _to_trash/circular_disc_sink_100000/analysis/plots/plot_particle_count_0000029.png
Saving plot to _to_trash/circular_disc_sink_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
644 render_gif = True
Do it for rho integ
649 if render_gif:
650 ani = column_density_plot.render_gif(gif_filename="rho_integ.gif", save_animation=True)
651 if ani is not None:
652 plt.show()
Same but in hollywood
657 if render_gif:
658 ani = column_density_plot_hollywood.render_gif(
659 gif_filename="rho_integ_hollywood.gif", save_animation=True
660 )
661 if ani is not None:
662 plt.show()
For the vertical density plot
666 if render_gif and shamrock.sys.world_rank() == 0:
667 ani = vertical_density_plot.render_gif(gif_filename="rho_slice.gif", save_animation=True)
668 if ani is not None:
669 plt.show()
Make a gif from the plots
674 if render_gif and shamrock.sys.world_rank() == 0:
675 ani = v_z_slice_plot.render_gif(gif_filename="v_z_slice.gif", save_animation=True)
676 if ani is not None:
677 plt.show()
Make a gif from the plots
682 if render_gif and shamrock.sys.world_rank() == 0:
683 ani = relative_azy_velocity_slice_plot.render_gif(
684 gif_filename="relative_azy_velocity_slice.gif", save_animation=True
685 )
686 if ani is not None:
687 plt.show()
Make a gif from the plots
691 if render_gif and shamrock.sys.world_rank() == 0:
692 ani = vertical_shear_gradient_slice_plot.render_gif(
693 gif_filename="vertical_shear_gradient_slice.gif", save_animation=True
694 )
695 if ani is not None:
696 plt.show()
Make a gif from the plots
700 if render_gif and shamrock.sys.world_rank() == 0:
701 ani = dt_part_slice_plot.render_gif(gif_filename="dt_part_slice.gif", save_animation=True)
702 if ani is not None:
703 plt.show()
Make a gif from the plots
707 if render_gif and shamrock.sys.world_rank() == 0:
708 ani = column_particle_count_plot.render_gif(
709 gif_filename="particle_count.gif", save_animation=True
710 )
711 if ani is not None:
712 plt.show()
helper function to load data from JSON files
717 def load_data_from_json(filename, key):
718 filepath = os.path.join(analysis_folder, filename)
719 with open(filepath, "r") as fp:
720 data = json.load(fp)[key]
721 t = [d["t"] for d in data]
722 values = [d[key] for d in data]
723 return t, values
load the json file for barycenter
728 t, barycenter = load_data_from_json("barycenter.json", "barycenter")
729 barycenter_x = [d[0] for d in barycenter]
730 barycenter_y = [d[1] for d in barycenter]
731 barycenter_z = [d[2] for d in barycenter]
732
733 plt.figure(figsize=(8, 5), dpi=200)
734
735 plt.plot(t, barycenter_x)
736 plt.plot(t, barycenter_y)
737 plt.plot(t, barycenter_z)
738 plt.xlabel("t")
739 plt.ylabel("barycenter")
740 plt.legend(["x", "y", "z"])
741 plt.savefig(analysis_folder + "barycenter.png")
742 plt.show()

load the json file for disc_mass
746 t, disc_mass = load_data_from_json("disc_mass.json", "disc_mass")
747
748 plt.figure(figsize=(8, 5), dpi=200)
749
750 plt.plot(t, disc_mass)
751 plt.xlabel("t")
752 plt.ylabel("disc_mass")
753 plt.savefig(analysis_folder + "disc_mass.png")
754 plt.show()

load the json file for total_momentum
758 t, total_momentum = load_data_from_json("total_momentum.json", "total_momentum")
759 total_momentum_x = [d[0] for d in total_momentum]
760 total_momentum_y = [d[1] for d in total_momentum]
761 total_momentum_z = [d[2] for d in total_momentum]
762
763 plt.figure(figsize=(8, 5), dpi=200)
764
765 plt.plot(t, total_momentum_x)
766 plt.plot(t, total_momentum_y)
767 plt.plot(t, total_momentum_z)
768 plt.xlabel("t")
769 plt.ylabel("total_momentum")
770 plt.legend(["x", "y", "z"])
771 plt.savefig(analysis_folder + "total_momentum.png")
772 plt.show()

load the json file for energies
776 t, potential_energy = load_data_from_json("potential_energy.json", "potential_energy")
777 _, kinetic_energy = load_data_from_json("kinetic_energy.json", "kinetic_energy")
778
779 total_energy = [p + k for p, k in zip(potential_energy, kinetic_energy)]
780
781 plt.figure(figsize=(8, 5), dpi=200)
782 plt.plot(t, potential_energy)
783 plt.plot(t, kinetic_energy)
784 plt.plot(t, total_energy)
785 plt.xlabel("t")
786 plt.ylabel("energy")
787 plt.legend(["potential_energy", "kinetic_energy", "total_energy"])
788 plt.savefig(analysis_folder + "energies.png")
789 plt.show()

load the json file for sinks
793 t, sinks = load_data_from_json("sinks.json", "sinks")
794
795 sinks_x = [d[0]["pos"][0] for d in sinks]
796 sinks_y = [d[0]["pos"][1] for d in sinks]
797 sinks_z = [d[0]["pos"][2] for d in sinks]
798
799 plt.figure(figsize=(8, 5), dpi=200)
800 plt.plot(t, sinks_x, label="sink 0 (x)")
801 plt.plot(t, sinks_y, label="sink 0 (y)")
802 plt.plot(t, sinks_z, label="sink 0 (z)")
803 plt.xlabel("t")
804 plt.ylabel("sink position")
805 plt.legend()
806 plt.savefig(analysis_folder + "sinks.png")
807 plt.show()

Sink to barycenter distance
811 t, sinks = load_data_from_json("sinks.json", "sinks")
812 _, barycenter = load_data_from_json("barycenter.json", "barycenter")
813
814 barycenter_x = np.array([d[0] for d in barycenter])
815 barycenter_y = np.array([d[1] for d in barycenter])
816 barycenter_z = np.array([d[2] for d in barycenter])
817
818 sinks_x = np.array([d[0]["pos"][0] for d in sinks])
819 sinks_y = np.array([d[0]["pos"][1] for d in sinks])
820 sinks_z = np.array([d[0]["pos"][2] for d in sinks])
821
822
823 plt.figure(figsize=(8, 5), dpi=200)
824 plt.plot(t, sinks_x - barycenter_x, label="sink 0 (x)")
825 plt.plot(t, sinks_y - barycenter_y, label="sink 0 (y)")
826 plt.plot(t, sinks_z - barycenter_z, label="sink 0 (z)")
827 plt.xlabel("t")
828 plt.ylabel("sink pos - barycenter pos")
829 plt.legend()
830 plt.savefig(analysis_folder + "sink_to_barycenter_distance.png")
831 plt.show()

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







