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 try:
51 from numba import njit
52
53 _HAS_NUMBA = True
54 except ImportError:
55 _HAS_NUMBA = False
56
57
58 import shamrock
59
60 # If we use the shamrock executable to run this script instead of the python interpreter,
61 # we should not initialize the system as the shamrock executable needs to handle specific MPI logic
62 if not shamrock.sys.is_initialized():
63 shamrock.change_loglevel(1)
64 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
69 si = shamrock.UnitSystem()
70 sicte = shamrock.Constants(si)
71 codeu = shamrock.UnitSystem(
72 unit_time=sicte.year(),
73 unit_length=sicte.au(),
74 unit_mass=sicte.sol_mass(),
75 )
76 ucte = shamrock.Constants(codeu)
77 G = ucte.G()
List parameters
82 # Resolution
83 Npart = 100000
84
85 # Domain decomposition parameters
86 scheduler_split_val = int(1.0e7) # split patches with more than 1e7 particles
87 scheduler_merge_val = scheduler_split_val // 16
88
89 # Dump and plot frequency and duration of the simulation
90 dump_freq_stop = 2
91 plot_freq_stop = 1
92
93 dt_stop = 0.02
94 nstop = 30
95
96 # The list of times at which the simulation will pause for analysis / dumping
97 t_stop = [i * dt_stop for i in range(nstop + 1)]
98
99
100 # Sink parameters
101 center_mass = 1.0
102 center_racc = 0.8
103
104 # Disc parameter
105 disc_mass = 0.01 # sol mass
106 rout = 10.0 # au
107 rin = 1.0 # au
108 H_r_0 = 0.05
109 q = 0.5
110 p = 3.0 / 2.0
111 r0 = 1.0
112
113 # Viscosity parameter
114 alpha_AV = 1.0e-3 / 0.08
115 alpha_u = 1.0
116 beta_AV = 2.0
117
118 # Integrator parameters
119 C_cour = 0.3
120 C_force = 0.25
121
122 sim_folder = f"_to_trash/circular_disc_sink_{Npart}/"
123
124 dump_folder = sim_folder + "dump/"
125 analysis_folder = sim_folder + "analysis/"
126 plot_folder = analysis_folder + "plots/"
127
128 dump_prefix = dump_folder + "dump_"
129
130
131 # Disc profiles
132 def sigma_profile(r):
133 sigma_0 = 1.0 # We do not care as it will be renormalized
134 return sigma_0 * (r / r0) ** (-p)
135
136
137 def kep_profile(r):
138 return (G * center_mass / r) ** 0.5
139
140
141 def omega_k(r):
142 return kep_profile(r) / r
143
144
145 def cs_profile(r):
146 cs_in = (H_r_0 * r0) * omega_k(r0)
147 return ((r / r0) ** (-q)) * cs_in
Create the dump directory if it does not exist
152 if shamrock.sys.world_rank() == 0:
153 os.makedirs(sim_folder, exist_ok=True)
154 os.makedirs(dump_folder, exist_ok=True)
155 os.makedirs(analysis_folder, exist_ok=True)
156 os.makedirs(plot_folder, exist_ok=True)
Utility functions and quantities deduced from the base one
161 # Deduced quantities
162 pmass = disc_mass / Npart
163
164 bsize = rout * 2
165 bmin = (-bsize, -bsize, -bsize)
166 bmax = (bsize, bsize, bsize)
167
168 cs0 = cs_profile(r0)
169
170
171 def rot_profile(r):
172 return ((kep_profile(r) ** 2) - (2 * p + q) * cs_profile(r) ** 2) ** 0.5
173
174
175 def H_profile(r):
176 H = cs_profile(r) / omega_k(r)
177 # fact = (2.**0.5) * 3. # factor taken from phantom, to fasten thermalizing
178 fact = 1.0
179 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)
187 ctx = shamrock.Context()
188 ctx.pdata_layout_new()
Attach a SPH model to the context
193 model = shamrock.get_Model_SPH(context=ctx, vector_type="f64_3", sph_kernel="M4")
Dump handling
200 def get_vtk_dump_name(idump):
201 return dump_prefix + f"{idump:07}" + ".vtk"
202
203
204 def get_ph_dump_name(idump):
205 return dump_prefix + f"{idump:07}" + ".phdump"
206
207
208 dump_helper = shamrock.utils.dump.ShamrockDumpHandleHelper(model, dump_prefix)
Load the last dump if it exists, setup otherwise
214 def setup_model():
215 global disc_mass
216
217 # Generate the default config
218 cfg = model.gen_default_config()
219 cfg.set_artif_viscosity_ConstantDisc(alpha_u=alpha_u, alpha_AV=alpha_AV, beta_AV=beta_AV)
220 cfg.set_eos_locally_isothermalLP07(cs0=cs0, q=q, r0=r0)
221
222 cfg.add_kill_sphere(center=(0, 0, 0), radius=bsize) # kill particles outside the simulation box
223
224 cfg.set_units(codeu)
225 cfg.set_particle_mass(pmass)
226 # Set the CFL
227 cfg.set_cfl_cour(C_cour)
228 cfg.set_cfl_force(C_force)
229
230 # Enable this to debug the neighbor counts
231 # cfg.set_show_neigh_stats(True)
232
233 # Standard way to set the smoothing length (e.g. Price et al. 2018)
234 cfg.set_smoothing_length_density_based()
235
236 cfg.set_save_dt_to_fields(True)
237
238 # Standard density based smoothing length but with a neighbor count limit
239 # Use it if you have large slowdowns due to giant particles
240 # I recommend to use it if you have a circumbinary discs as the issue is very likely to happen
241 # cfg.set_smoothing_length_density_based_neigh_lim(500)
242
243 cfg.set_save_dt_to_fields(True)
244
245 # Set the solver config to be the one stored in cfg
246 model.set_solver_config(cfg)
247
248 # Print the solver config
249 model.get_current_config().print_status()
250
251 # Init the scheduler & fields
252 model.init_scheduler(scheduler_split_val, scheduler_merge_val)
253
254 # Set the simulation box size
255 model.resize_simulation_box(bmin, bmax)
256
257 # Create the setup
258
259 setup = model.get_setup()
260 gen_disc = setup.make_generator_disc_mc(
261 part_mass=pmass,
262 disc_mass=disc_mass,
263 r_in=rin,
264 r_out=rout,
265 sigma_profile=sigma_profile,
266 H_profile=H_profile,
267 rot_profile=rot_profile,
268 cs_profile=cs_profile,
269 random_seed=666,
270 )
271
272 # Print the dot graph of the setup
273 print(gen_disc.get_dot())
274
275 # Apply the setup
276 setup.apply_setup(gen_disc)
277
278 # correct the momentum and barycenter of the disc to 0
279 analysis_momentum = shamrock.model_sph.analysisTotalMomentum(model=model)
280 total_momentum = analysis_momentum.get_total_momentum()
281
282 if shamrock.sys.world_rank() == 0:
283 print(f"disc momentum = {total_momentum}")
284
285 model.apply_momentum_offset((-total_momentum[0], -total_momentum[1], -total_momentum[2]))
286
287 # Correct the barycenter before adding the sink
288 analysis_barycenter = shamrock.model_sph.analysisBarycenter(model=model)
289 barycenter, disc_mass = analysis_barycenter.get_barycenter()
290
291 if shamrock.sys.world_rank() == 0:
292 print(f"disc barycenter = {barycenter}")
293
294 model.apply_position_offset((-barycenter[0], -barycenter[1], -barycenter[2]))
295
296 total_momentum = shamrock.model_sph.analysisTotalMomentum(model=model).get_total_momentum()
297
298 if shamrock.sys.world_rank() == 0:
299 print(f"disc momentum after correction = {total_momentum}")
300
301 barycenter, disc_mass = shamrock.model_sph.analysisBarycenter(model=model).get_barycenter()
302
303 if shamrock.sys.world_rank() == 0:
304 print(f"disc barycenter after correction = {barycenter}")
305
306 if not np.allclose(total_momentum, 0.0):
307 raise RuntimeError("disc momentum is not 0")
308 if not np.allclose(barycenter, 0.0):
309 raise RuntimeError("disc barycenter is not 0")
310
311 # now that the barycenter & momentum are 0, we can add the sink
312 model.add_sink(center_mass, (0, 0, 0), (0, 0, 0), center_racc)
313
314 # Run a single step to init the integrator and smoothing length of the particles
315 # Here the htolerance is the maximum factor of evolution of the smoothing length in each
316 # Smoothing length iterations, increasing it affect the performance negatively but increase the
317 # convergence rate of the smoothing length
318 # this is why we increase it temporely to 1.3 before lowering it back to 1.1 (default value)
319 # Note that both ``change_htolerances`` can be removed and it will work the same but would converge
320 # more slowly at the first timestep
321
322 model.change_htolerances(coarse=1.3, fine=1.1)
323 model.timestep()
324 model.change_htolerances(coarse=1.1, fine=1.1)
325
326
327 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 rank min = 2.6e+05 max = 1.0e+05) rate = 1.000000e+05 N.s^-1
SPH setup: the generation step took : 0.38439821700000004 s
SPH setup: final particle count = 100000 beginning injection ...
Info: --------------------------------------------- [DataInserterUtility][rank=0]
Info: Compute load ... [DataInserterUtility][rank=0]
Info: run scheduler step ... [DataInserterUtility][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 27.99 us (85.8%)
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1553.00 ns (0.2%)
patch tree reduce : 1232.00 ns (0.1%)
gen split merge : 781.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.1%)
LB compute : 966.46 us (98.8%)
LB move op cnt : 0
LB apply : 4.19 us (0.4%)
Info: patch count stable after 1 runs npatch = 1 [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
SPH setup: injected 100000 / 100000 => 100.0% | ranks with patchs = 1 / 1 <- global loop -> (msg count : 0)
SPH setup: the injection step took : 0.012150671 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.5% 0.0% | 2.00 GB | 2.00 GB |
+------+--------------------+-------+-------------+-------------+-------------+
SPH setup: the setup took : 0.43437373100000004 s
disc momentum = (-5.810951242480584e-05, 2.0681541048100417e-06, 0.0)
disc barycenter = (-0.015207723587746209, 0.015657581335006374, -0.00025450167927213325)
disc momentum after correction = (-1.7503935855010117e-18, -5.637004263977369e-18, 0.0)
disc barycenter after correction = (-1.786900705527672e-15, 6.979551485375435e-16, -6.060520737604519e-17)
---------------- t = 0, dt = 0 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.72 us (1.4%)
patch tree reduce : 1763.00 ns (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 461.10 us (95.7%)
LB move op cnt : 0
LB apply : 3.71 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (67.6%)
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.6528e+04 | 100000 | 1 | 3.770e+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
332 def save_rho_integ(ext, arr_rho, iplot):
333 if shamrock.sys.world_rank() == 0:
334 metadata = {"extent": [-ext, ext, -ext, ext], "time": model.get_time()}
335 np.save(plot_folder + f"rho_integ_{iplot:07}.npy", arr_rho)
336
337 with open(plot_folder + f"rho_integ_{iplot:07}.json", "w") as fp:
338 json.dump(metadata, fp)
339
340
341 def save_analysis_data(filename, key, value, ianalysis):
342 """Helper to save analysis data to a JSON file."""
343 if shamrock.sys.world_rank() == 0:
344 filepath = os.path.join(analysis_folder, filename)
345 try:
346 with open(filepath, "r") as fp:
347 data = json.load(fp)
348 except (FileNotFoundError, json.JSONDecodeError):
349 data = {key: []}
350 data[key] = data[key][:ianalysis]
351 data[key].append({"t": model.get_time(), key: value})
352 with open(filepath, "w") as fp:
353 json.dump(data, fp, indent=4)
354
355
356 from shamrock.utils.analysis import (
357 AnalysisHelper,
358 ColumnDensityPlot,
359 ColumnParticleCount,
360 PerfHistory,
361 SliceDensityPlot,
362 SliceDiffVthetaProfile,
363 SliceDtPart,
364 SliceVzPlot,
365 VerticalShearGradient,
366 )
367
368 perf_analysis = PerfHistory(model, analysis_folder, "perf_history")
369
370 column_density_plot = ColumnDensityPlot(
371 model,
372 ext_r=rout * 1.5,
373 nx=1024,
374 ny=1024,
375 ex=(1, 0, 0),
376 ey=(0, 1, 0),
377 center=(0, 0, 0),
378 analysis_folder=analysis_folder,
379 analysis_prefix="rho_integ_normal",
380 )
381
382 column_density_plot_hollywood = ColumnDensityPlot(
383 model,
384 ext_r=rout * 1.5,
385 nx=1024,
386 ny=1024,
387 ex=(1, 0, 0),
388 ey=(0, 1, 0),
389 center=(0, 0, 0),
390 analysis_folder=analysis_folder,
391 analysis_prefix="rho_integ_hollywood",
392 )
393
394 vertical_density_plot = SliceDensityPlot(
395 model,
396 ext_r=rout * 1.1 / (16.0 / 9.0), # aspect ratio of 16:9
397 nx=1920,
398 ny=1080,
399 ex=(1, 0, 0),
400 ey=(0, 0, 1),
401 center=(0, 0, 0),
402 analysis_folder=analysis_folder,
403 analysis_prefix="rho_slice",
404 )
405
406 v_z_slice_plot = SliceVzPlot(
407 model,
408 ext_r=rout * 1.1 / (16.0 / 9.0), # aspect ratio of 16:9
409 nx=1920,
410 ny=1080,
411 ex=(1, 0, 0),
412 ey=(0, 0, 1),
413 center=(0, 0, 0),
414 analysis_folder=analysis_folder,
415 analysis_prefix="v_z_slice",
416 do_normalization=True,
417 )
418
419 relative_azy_velocity_slice_plot = SliceDiffVthetaProfile(
420 model,
421 ext_r=rout * 0.5 / (16.0 / 9.0), # aspect ratio of 16:9
422 nx=1920,
423 ny=1080,
424 ex=(1, 0, 0),
425 ey=(0, 0, 1),
426 center=((rin + rout) / 2, 0, 0),
427 analysis_folder=analysis_folder,
428 analysis_prefix="relative_azy_velocity_slice",
429 velocity_profile=kep_profile,
430 do_normalization=True,
431 min_normalization=1e-9,
432 )
433
434 vertical_shear_gradient_slice_plot = VerticalShearGradient(
435 model,
436 ext_r=rout * 0.5 / (16.0 / 9.0), # aspect ratio of 16:9
437 nx=1920,
438 ny=1080,
439 ex=(1, 0, 0),
440 ey=(0, 0, 1),
441 center=((rin + rout) / 2, 0, 0),
442 analysis_folder=analysis_folder,
443 analysis_prefix="vertical_shear_gradient_slice",
444 do_normalization=True,
445 min_normalization=1e-9,
446 )
447
448 dt_part_slice_plot = SliceDtPart(
449 model,
450 ext_r=rout * 0.5 / (16.0 / 9.0), # aspect ratio of 16:9
451 nx=1920,
452 ny=1080,
453 ex=(1, 0, 0),
454 ey=(0, 0, 1),
455 center=((rin + rout) / 2, 0, 0),
456 analysis_folder=analysis_folder,
457 analysis_prefix="dt_part_slice",
458 )
459
460 column_particle_count_plot = ColumnParticleCount(
461 model,
462 ext_r=rout * 1.5,
463 nx=1024,
464 ny=1024,
465 ex=(1, 0, 0),
466 ey=(0, 1, 0),
467 center=(0, 0, 0),
468 analysis_folder=analysis_folder,
469 analysis_prefix="particle_count",
470 )
471
472 profile_plot = AnalysisHelper(
473 analysis_folder=os.path.join(analysis_folder, "plots"),
474 analysis_prefix="density_profile",
475 )
476
477
478 def analysis(ianalysis):
479 column_density_plot.analysis_save(ianalysis)
480 column_density_plot_hollywood.analysis_save(ianalysis)
481 vertical_density_plot.analysis_save(ianalysis)
482 v_z_slice_plot.analysis_save(ianalysis)
483 relative_azy_velocity_slice_plot.analysis_save(ianalysis)
484 vertical_shear_gradient_slice_plot.analysis_save(ianalysis)
485 dt_part_slice_plot.analysis_save(ianalysis)
486 column_particle_count_plot.analysis_save(ianalysis)
487
488 barycenter, disc_mass = shamrock.model_sph.analysisBarycenter(model=model).get_barycenter()
489
490 total_momentum = shamrock.model_sph.analysisTotalMomentum(model=model).get_total_momentum()
491 angular_momentum = shamrock.model_sph.analysisAngularMomentum(
492 model=model
493 ).get_angular_momentum()
494
495 potential_energy = shamrock.model_sph.analysisEnergyPotential(
496 model=model
497 ).get_potential_energy()
498
499 kinetic_energy = shamrock.model_sph.analysisEnergyKinetic(model=model).get_kinetic_energy()
500
501 save_analysis_data("barycenter.json", "barycenter", barycenter, ianalysis)
502 save_analysis_data("disc_mass.json", "disc_mass", disc_mass, ianalysis)
503 save_analysis_data("total_momentum.json", "total_momentum", total_momentum, ianalysis)
504 save_analysis_data("angular_momentum.json", "angular_momentum", angular_momentum, ianalysis)
505 save_analysis_data("potential_energy.json", "potential_energy", potential_energy, ianalysis)
506 save_analysis_data("kinetic_energy.json", "kinetic_energy", kinetic_energy, ianalysis)
507
508 sinks = model.get_sinks()
509 save_analysis_data("sinks.json", "sinks", sinks, ianalysis)
510
511 perf_analysis.analysis_save(ianalysis)
512
513 #'''
514 rho_field = model.compute_field("rho", "f64")
515 hpart_field = model.compute_field("hpart", "f64")
516
517 def internal(size: int, x: np.array, y: np.array, z: np.array) -> np.array:
518 r = np.sqrt(x**2 + y**2 + z**2)
519 return r
520
521 if _HAS_NUMBA:
522 internal = njit(internal)
523
524 def custom_getter(size: int, dic_out: dict) -> np.array:
525 return internal(
526 size,
527 dic_out["xyz"][:, 0],
528 dic_out["xyz"][:, 1],
529 dic_out["xyz"][:, 2],
530 )
531
532 r_field = model.compute_field("custom", "f64", custom_getter)
533
534 print(rho_field, r_field)
535
536 x_min = center_racc / 2.0
537 x_max = rout * 1.1
538 x_min_log = np.log10(x_min)
539 x_max_log = np.log10(x_max)
540
541 bin_edges_x1d = np.logspace(x_min_log, x_max_log, 2049)
542
543 histo = shamrock.compute_histogram(
544 bin_edges=bin_edges_x1d,
545 x_field=r_field,
546 y_field=rho_field,
547 do_average=True,
548 )
549
550 histo_convolve = shamrock.compute_histogram_convolve_x(
551 bin_edges=bin_edges_x1d,
552 x_field=r_field,
553 y_field=rho_field,
554 size_field=hpart_field,
555 do_average=True,
556 )
557
558 bin_edges_x = np.logspace(x_min_log, x_max_log, 1025)
559 bin_edges_y = np.logspace(-6, -3, 1025)
560 histo_top = shamrock.compute_histogram_2d(
561 bin_edges_x=bin_edges_x,
562 bin_edges_y=bin_edges_y,
563 x_field=r_field,
564 y_field=rho_field,
565 )
566 histo_2d = np.array(histo_top).reshape(len(bin_edges_x) - 1, len(bin_edges_y) - 1)
567
568 data = {
569 "bin_edges_x1d": bin_edges_x1d,
570 "bin_edges_x": bin_edges_x,
571 "bin_edges_y": bin_edges_y,
572 "histo": histo,
573 "histo_convolve": histo_convolve,
574 "histo_2d": histo_2d,
575 "time": model.get_time(),
576 }
577
578 profile_plot.analysis_save(ianalysis, data)
Evolve the simulation
583 model.solver_logs_reset_cumulated_step_time()
584 model.solver_logs_reset_step_count()
585
586 t_start = model.get_time()
587
588 idump = 0
589 iplot = 0
590 istop = 0
591 for ttarg in t_stop:
592 if ttarg >= t_start:
593 model.evolve_until(ttarg)
594
595 if istop % dump_freq_stop == 0:
596 model.do_vtk_dump(get_vtk_dump_name(idump), True)
597 dump_helper.write_dump(idump, purge_old_dumps=True, keep_first=1, keep_last=3)
598
599 # dump = model.make_phantom_dump()
600 # dump.save_dump(get_ph_dump_name(idump))
601
602 if istop % plot_freq_stop == 0:
603 analysis(iplot)
604
605 if istop % dump_freq_stop == 0:
606 idump += 1
607
608 if istop % plot_freq_stop == 0:
609 iplot += 1
610
611 istop += 1
Info: iteration since start : 1 [SPH][rank=0]
Info: time since start : 15.771835147 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000000.vtk [VTK Dump][rank=0]
- took 30.64 ms, bandwidth = 174.29 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.59 us (57.0%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000000.sham [Shamrock Dump][rank=0]
- took 6.89 ms, bandwidth = 1.73 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 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 713.11 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 733.36 ms [sph::CartesianRender][rank=0]
/usr/local/lib/python3.10/dist-packages/shamrock/utils/analysis/StandardPlotHelper.py:59: RuntimeWarning: invalid value encountered in divide
ret = field / normalization
Saving data to _to_trash/circular_disc_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 700.94 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 712.23 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.065444842 s
Info: compute_slice took 1283.36 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1227.08 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.022427412 s
Info: compute_slice took 1237.98 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1221.20 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 1224.06 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1224.66 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
sph::RenderFieldGetter compute custom field took : 0.017302751 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Info: no autotuning registered for compute_histogram [Algs][rank=0]
Info: switching config for alg compute_histogram to cfg=naive_gpu [Algs][rank=0]
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000000.npy
---------------- t = 0, dt = 7.833195568092581e-05 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.94 us (2.2%)
patch tree reduce : 11.84 us (2.2%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.2%)
LB compute : 495.88 us (93.1%)
LB move op cnt : 0
LB apply : 4.29 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (66.6%)
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.6147e+05 | 100000 | 1 | 6.193e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4553378451336409 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.833195568092581e-05, dt = 0.0026632979621559584 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (1.7%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1453.00 ns (0.4%)
LB compute : 371.49 us (94.6%)
LB move op cnt : 0
LB apply : 4.10 us (1.0%)
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.6193e+05 | 100000 | 1 | 6.175e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.525834370863722 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0027416299178368844, dt = 0.004305100970695993 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.62 us (1.6%)
patch tree reduce : 1763.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 394.03 us (95.0%)
LB move op cnt : 0
LB apply : 4.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (65.4%)
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.5357e+05 | 100000 | 1 | 6.512e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.800739998460923 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.007046730888532878, dt = 0.005275348061247063 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.03 us (1.7%)
patch tree reduce : 1643.00 ns (0.4%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 391.87 us (94.8%)
LB move op cnt : 0
LB apply : 4.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5071867437222426e-07,-3.2834919980494023e-07,-5.069091446243247e-08)
sum a = (6.993104012531504e-18,1.2197274440461925e-18,-8.131516293641283e-20)
sum e = 0.05001133752984097
sum de = 6.675787766369644e-05
Info: CFL hydro = 0.005823510397813129 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005823510397813129 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.6119e+05 | 100000 | 1 | 6.204e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.61145309105289 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.01232207894977994, dt = 0.005823510397813129 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (1.5%)
patch tree reduce : 1594.00 ns (0.4%)
gen split merge : 1152.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 414.72 us (95.1%)
LB move op cnt : 0
LB apply : 4.16 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (71.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7106695280283807e-07,-3.827460416889963e-07,-5.59056459867891e-08)
sum a = (-1.5334684477091853e-17,-9.513874063560301e-18,-1.2197274440461925e-19)
sum e = 0.050013529501835206
sum de = 9.351643443353433e-05
Info: CFL hydro = 0.006852671769914118 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.006852671769914118 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.6101e+05 | 100000 | 1 | 6.211e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.75477403180901 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.01814558934759307, dt = 0.0018544106524069313 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.59 us (1.6%)
patch tree reduce : 1632.00 ns (0.4%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 383.94 us (94.7%)
LB move op cnt : 0
LB apply : 4.91 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.547156663986385e-08,-1.2941095425873268e-07,-1.777475242986092e-08)
sum a = (2.2510747606230286e-17,1.8973538018496328e-18,-4.0657581468206416e-20)
sum e = 0.050005072613755606
sum de = 0.00010284103199076322
Info: CFL hydro = 0.007170089423545368 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007170089423545368 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.6204e+05 | 100000 | 1 | 6.171e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.817330428166544 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 7 [SPH][rank=0]
Info: time since start : 36.986032079000005 (s) [SPH][rank=0]
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_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.06 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 715.72 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 701.01 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 707.68 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 721.75 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.051612881000000006 s
Info: compute_slice took 1264.37 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1233.73 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.022492651000000002 s
Info: compute_slice took 1243.49 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_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 1217.17 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1215.95 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
sph::RenderFieldGetter compute custom field took : 0.020503077 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000001.npy
---------------- t = 0.02, dt = 0.007170089423545368 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.28 us (2.3%)
patch tree reduce : 1744.00 ns (0.3%)
gen split merge : 1323.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 502.73 us (94.9%)
LB move op cnt : 0
LB apply : 4.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (69.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.151368608858162e-07,-5.099554699889892e-07,-6.868448795890273e-08)
sum a = (-2.89346454782069e-18,-8.185726402265558e-18,-2.371692252312041e-20)
sum e = 0.050019525542698104
sum de = 0.0001346795192961015
Info: CFL hydro = 0.007254201835600557 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007254201835600557 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.5939e+05 | 100000 | 1 | 6.274e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.14125869891726 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.027170089423545367, dt = 0.007254201835600557 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.88 us (1.5%)
patch tree reduce : 1643.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.2%)
LB compute : 433.04 us (95.3%)
LB move op cnt : 0
LB apply : 3.57 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1745208374368134e-07,-5.54681463830632e-07,-6.929157141662548e-08)
sum a = (-1.362028979184915e-18,1.9244588561617704e-18,8.470329472543003e-20)
sum e = 0.050020971664200935
sum de = 0.00016803767315974496
Info: CFL hydro = 0.007559980617992012 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007559980617992012 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.4631e+05 | 100000 | 1 | 6.835e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.20815963438596 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.03442429125914592, dt = 0.005575708740854078 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.10 us (1.8%)
patch tree reduce : 1613.00 ns (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1272.00 ns (0.3%)
LB compute : 376.18 us (94.6%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6341645050241564e-07,-4.5778060856649145e-07,-5.3060116552295046e-08)
sum a = (-2.42861286636753e-17,1.0570971181733668e-17,3.049318610115481e-20)
sum e = 0.05001588289880117
sum de = 0.00019479268345204062
Info: CFL hydro = 0.007352780151318078 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007352780151318078 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.5644e+05 | 100000 | 1 | 6.392e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.4016614396555 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 10 [SPH][rank=0]
Info: time since start : 56.339773294000004 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000001.vtk [VTK Dump][rank=0]
- took 5.49 ms, bandwidth = 972.72 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.24 us (57.9%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000001.sham [Shamrock Dump][rank=0]
- took 5.88 ms, bandwidth = 2.03 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_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 715.84 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 719.47 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 716.46 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 711.77 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.049826296000000006 s
Info: compute_slice took 1278.10 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1233.91 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.022064044 s
Info: compute_slice took 1248.70 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1272.67 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.49 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1235.26 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.03 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
sph::RenderFieldGetter compute custom field took : 0.014804724000000002 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000002.npy
---------------- t = 0.04, dt = 0.007352780151318078 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.35 us (2.2%)
patch tree reduce : 1863.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.2%)
LB compute : 495.62 us (94.9%)
LB move op cnt : 0
LB apply : 4.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0839568654317661e-07,-6.364601310386451e-07,-6.973029005121068e-08)
sum a = (-3.5101045334218206e-18,1.2197274440461925e-18,1.2197274440461925e-19)
sum e = 0.05002395552543832
sum de = 0.00022799155444462726
Info: CFL hydro = 0.006990923618745033 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.006990923618745033 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.5839e+05 | 100000 | 1 | 6.313e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.92606862833522 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.04735278015131808, dt = 0.006990923618745033 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.32 us (1.7%)
patch tree reduce : 1643.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 418.23 us (95.0%)
LB move op cnt : 0
LB apply : 4.02 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (72.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8486946365066403e-07,-6.46985185881734e-07,-6.594660862249442e-08)
sum a = (-3.3949080525952358e-18,-8.131516293641283e-19,-4.743384504624082e-20)
sum e = 0.05002420082454321
sum de = 0.00026059146025838643
Info: CFL hydro = 0.006684376248916982 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.006684376248916982 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.5875e+05 | 100000 | 1 | 6.299e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.953838723538475 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.05434370377006311, dt = 0.005656296229936887 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.80 us (1.6%)
patch tree reduce : 1673.00 ns (0.4%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 397.78 us (94.9%)
LB move op cnt : 0
LB apply : 4.20 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3556250266948695e-07,-5.559848892092188e-07,-5.304373260932013e-08)
sum a = (1.4840017235895342e-17,-2.439454888092385e-19,-6.776263578034403e-21)
sum e = 0.05002097344212843
sum de = 0.00028767890079470454
Info: CFL hydro = 0.00647267763484464 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00647267763484464 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.5888e+05 | 100000 | 1 | 6.294e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.35301821858566 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 13 [SPH][rank=0]
Info: time since start : 75.75230714700001 (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 710.52 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 699.73 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 712.95 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 697.97 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.057250528 s
Info: compute_slice took 1283.51 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1222.80 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.021962255 s
Info: compute_slice took 1248.72 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1234.90 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 1227.17 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1235.80 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.03 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
sph::RenderFieldGetter compute custom field took : 0.018081894 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000003.npy
---------------- t = 0.06, dt = 0.00647267763484464 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.90 us (2.7%)
patch tree reduce : 1903.00 ns (0.4%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 417.15 us (94.0%)
LB move op cnt : 0
LB apply : 3.90 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.389958030415245e-07,-6.663279556594894e-07,-6.037545186483872e-08)
sum a = (9.473216482092095e-18,2.520770051028798e-18,-1.4230153513872246e-19)
sum e = 0.050025746692372405
sum de = 0.00031743827935375835
Info: CFL hydro = 0.006243141934139896 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.006243141934139896 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.4665e+05 | 100000 | 1 | 6.819e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.17220740353736 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.06647267763484464, dt = 0.006243141934139896 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.89 us (1.6%)
patch tree reduce : 1653.00 ns (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 397.88 us (95.0%)
LB move op cnt : 0
LB apply : 3.93 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1287816870348438e-07,-6.756175092549974e-07,-5.7840657417889946e-08)
sum a = (7.491159385517032e-18,2.7376104855258987e-18,3.049318610115481e-20)
sum e = 0.05002700109278961
sum de = 0.00034658243533899186
Info: CFL hydro = 0.006045671232738496 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.006045671232738496 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.5434e+05 | 100000 | 1 | 6.479e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.68750576169807 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.07271581956898454, dt = 0.006045671232738496 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.82 us (1.7%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 389.78 us (94.7%)
LB move op cnt : 0
LB apply : 5.03 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (72.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.61973323285126e-08,-6.844347390058374e-07,-5.560856412461177e-08)
sum a = (2.7647155398380363e-18,5.6107462426124854e-18,3.7269449679189215e-20)
sum e = 0.05002850275950456
sum de = 0.00037475674233686967
Info: CFL hydro = 0.00606934440277358 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00606934440277358 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.4868e+05 | 100000 | 1 | 6.726e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.3603107880726 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.07876149080172304, dt = 0.001238509198276963 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.42 us (2.1%)
patch tree reduce : 1703.00 ns (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 332.03 us (93.9%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2438751903337497e-08,-1.4604020860080229e-07,-1.1305450962605589e-08)
sum a = (-1.7428549922704484e-17,-4.092863201132779e-18,5.082197683525802e-20)
sum e = 0.050019037398656555
sum de = 0.00038170748183485523
Info: CFL hydro = 0.0060562169848360865 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0060562169848360865 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.5952e+05 | 100000 | 1 | 6.269e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.11220620204925 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 17 [SPH][rank=0]
Info: time since start : 95.808368732 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000002.vtk [VTK Dump][rank=0]
- took 5.87 ms, bandwidth = 910.06 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.31 us (55.5%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000002.sham [Shamrock Dump][rank=0]
- took 6.62 ms, bandwidth = 1.80 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.04 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_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.04 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 712.55 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 712.93 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 710.97 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 715.38 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.049964327 s
Info: compute_slice took 1288.71 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1246.46 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.022127219 s
Info: compute_slice took 1257.35 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1226.58 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 1246.21 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1236.94 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
sph::RenderFieldGetter compute custom field took : 0.019648895 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000004.npy
---------------- t = 0.08, dt = 0.0060562169848360865 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.27 us (2.6%)
patch tree reduce : 1753.00 ns (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.2%)
LB compute : 412.46 us (94.2%)
LB move op cnt : 0
LB apply : 3.87 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.522236632539019e-08,-7.198476246265319e-07,-5.5192337008691154e-08)
sum a = (-1.0975852930521224e-17,-2.0057740190981832e-18,-7.792703114739563e-20)
sum e = 0.05003140984192237
sum de = 0.00040861559809590833
Info: CFL hydro = 0.005844046467445585 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005844046467445585 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.5726e+05 | 100000 | 1 | 6.359e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.286697127609756 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.08605621698483609, dt = 0.005844046467445585 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (1.7%)
patch tree reduce : 1823.00 ns (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 371.95 us (94.7%)
LB move op cnt : 0
LB apply : 3.88 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.508935612574449e-08,-7.209499437860235e-07,-5.281374555171802e-08)
sum a = (-5.464421300974305e-18,1.2902005852577503e-17,2.371692252312041e-19)
sum e = 0.05003317049576819
sum de = 0.00043565188645411726
Info: CFL hydro = 0.005634112318081264 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005634112318081264 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.5717e+05 | 100000 | 1 | 6.363e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.06585912517358 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.09190026345228168, dt = 0.005634112318081264 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.66 us (1.9%)
patch tree reduce : 2.04 us (0.5%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 380.12 us (94.4%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.678049181960918e-09,-7.183679473210277e-07,-5.047542273273557e-08)
sum a = (6.132518538121134e-19,-6.505213034913027e-19,-1.3552527156068805e-20)
sum e = 0.050035024016694
sum de = 0.00046161244324723283
Info: CFL hydro = 0.005449058234902525 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005449058234902525 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.5768e+05 | 100000 | 1 | 6.342e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.981939137826167 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.09753437577036295, dt = 0.002465624229637059 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (1.7%)
patch tree reduce : 1513.00 ns (0.4%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1091.00 ns (0.3%)
LB compute : 381.14 us (94.9%)
LB move op cnt : 0
LB apply : 3.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (70.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5275126291376227e-08,-3.236504783127543e-07,-2.1892316910956648e-08)
sum a = (-1.0242322398199e-17,3.63207727782644e-18,-9.486769009248164e-20)
sum e = 0.05002888504271695
sum de = 0.0004739735863529036
Info: CFL hydro = 0.0061518882414104015 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0061518882414104015 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.5742e+05 | 100000 | 1 | 6.352e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.973358001532054 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 21 [SPH][rank=0]
Info: time since start : 115.888507696 (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_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.03 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 707.77 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 712.03 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 703.87 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 737.48 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.051784398 s
Info: compute_slice took 1285.19 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1222.44 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.022387354 s
Info: compute_slice took 1253.22 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1239.41 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 1273.93 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1227.98 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.04 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
sph::RenderFieldGetter compute custom field took : 0.021424881 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000005.npy
---------------- t = 0.1, dt = 0.0061518882414104015 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.27 us (2.7%)
patch tree reduce : 1473.00 ns (0.3%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1412.00 ns (0.3%)
LB compute : 430.41 us (94.0%)
LB move op cnt : 0
LB apply : 3.77 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1943.00 ns (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.334577120849557e-08,-8.171747235946445e-07,-5.439943337369592e-08)
sum a = (1.0371071406181653e-17,6.559423143537302e-18,-1.0164395367051604e-20)
sum e = 0.05004092556703287
sum de = 0.0005006431115265124
Info: CFL hydro = 0.005907387957801621 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005907387957801621 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.5702e+05 | 100000 | 1 | 6.369e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.774302398113896 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1061518882414104, dt = 0.005907387957801621 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.02 us (1.7%)
patch tree reduce : 1443.00 ns (0.3%)
gen split merge : 1303.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 393.77 us (94.7%)
LB move op cnt : 0
LB apply : 3.84 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (70.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.969504615743017e-08,-8.064240863166844e-07,-5.1681691000241024e-08)
sum a = (4.167402100491158e-18,-6.288372600415926e-18,6.437450399132683e-20)
sum e = 0.05004313764221356
sum de = 0.0005273279731153853
Info: CFL hydro = 0.005695466080099179 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005695466080099179 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.5347e+05 | 100000 | 1 | 6.516e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.63881599619228 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.11205927619921202, dt = 0.005695466080099179 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.90 us (1.0%)
patch tree reduce : 1793.00 ns (0.2%)
gen split merge : 862.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.1%)
LB compute : 696.00 us (97.0%)
LB move op cnt : 0
LB apply : 4.28 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.245593198331653e-07,-7.956580062564445e-07,-4.9286785195901275e-08)
sum a = (1.6927106417929938e-17,2.8731357570865868e-18,4.675621868843738e-19)
sum e = 0.05004552727468397
sum de = 0.0005528303065424875
Info: CFL hydro = 0.005506679273622603 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005506679273622603 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.5713e+05 | 100000 | 1 | 6.364e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.21670171441386 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1177547422793112, dt = 0.002245257720688801 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.70 us (1.6%)
patch tree reduce : 1573.00 ns (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1302.00 ns (0.3%)
LB compute : 401.45 us (95.1%)
LB move op cnt : 0
LB apply : 3.43 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.443930570657999e-08,-3.1977637298231273e-07,-1.92147132519856e-08)
sum a = (7.860465750519907e-18,1.4203048459560108e-17,-4.743384504624082e-20)
sum e = 0.050038973729300065
sum de = 0.0005640350337441077
Info: CFL hydro = 0.005439087281154737 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005439087281154737 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.5977e+05 | 100000 | 1 | 6.259e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.913860339862516 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 25 [SPH][rank=0]
Info: time since start : 135.989589141 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000003.vtk [VTK Dump][rank=0]
- took 5.75 ms, bandwidth = 928.89 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 : 6.69 us (56.6%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000003.sham [Shamrock Dump][rank=0]
- took 6.50 ms, bandwidth = 1.84 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.04 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.04 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 702.31 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 712.52 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_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 694.62 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 706.94 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.052245681 s
Info: compute_slice took 1278.60 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1239.69 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.019872320000000002 s
Info: compute_slice took 1228.46 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1233.66 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 1214.71 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1230.76 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.03 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
sph::RenderFieldGetter compute custom field took : 0.015729491 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000006.npy
---------------- t = 0.12, dt = 0.005439087281154737 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.64 us (2.7%)
patch tree reduce : 1713.00 ns (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 401.66 us (93.9%)
LB move op cnt : 0
LB apply : 4.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7128710879079058e-07,-7.799385177297492e-07,-4.633576976919563e-08)
sum a = (1.883801274693564e-17,-3.74049749507499e-18,-2.574980159653073e-19)
sum e = 0.05004911223468375
sum de = 0.0005869894688323379
Info: CFL hydro = 0.005273770200141866 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005273770200141866 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.5538e+05 | 100000 | 1 | 6.436e-01 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.425359764319793 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.12543908728115474, dt = 0.005273770200141866 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (1.8%)
patch tree reduce : 1914.00 ns (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 341.80 us (94.2%)
LB move op cnt : 0
LB apply : 4.02 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0292204888069969e-07,-7.673008380186687e-07,-4.441709509295024e-08)
sum a = (-4.919567357652976e-18,1.111307226797642e-17,-6.437450399132683e-20)
sum e = 0.05005177561938762
sum de = 0.0006100009173685583
Info: CFL hydro = 0.005127008507011178 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005127008507011178 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.5827e+05 | 100000 | 1 | 6.319e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.047586582849426 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1307128574812966, dt = 0.005127008507011178 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.56 us (1.6%)
patch tree reduce : 1482.00 ns (0.4%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1383.00 ns (0.3%)
LB compute : 395.38 us (94.9%)
LB move op cnt : 0
LB apply : 3.85 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1964.00 ns (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.334657097892547e-07,-7.545157819071982e-07,-4.268231241731559e-08)
sum a = (-1.39455504435948e-17,-1.83772268236293e-17,-2.1345230270808369e-19)
sum e = 0.0500545354461507
sum de = 0.0006320839702118486
Info: CFL hydro = 0.005241748240132683 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005241748240132683 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.5740e+05 | 100000 | 1 | 6.353e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.0515875490639 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.13583986598830777, dt = 0.00416013401169224 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.19 us (2.0%)
patch tree reduce : 1834.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 332.59 us (93.9%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1902938781957756e-07,-6.174644505825003e-07,-3.4226406482330096e-08)
sum a = (-1.0733601507606494e-17,7.806255641895632e-18,-1.4230153513872246e-19)
sum e = 0.05005464192047158
sum de = 0.0006502279732610841
Info: CFL hydro = 0.0050924861089099525 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0050924861089099525 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.5759e+05 | 100000 | 1 | 6.346e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.600981667869412 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 29 [SPH][rank=0]
Info: time since start : 155.955152585 (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.04 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 712.81 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 711.40 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 701.51 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 709.25 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.057348517 s
Info: compute_slice took 1285.41 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1231.88 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.022414083 s
Info: compute_slice took 1249.47 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1235.80 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 1245.33 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1240.09 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.04 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
sph::RenderFieldGetter compute custom field took : 0.016476944 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000007.npy
---------------- t = 0.14, dt = 0.0050924861089099525 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.06 us (2.6%)
patch tree reduce : 1704.00 ns (0.4%)
gen split merge : 1152.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 439.99 us (94.2%)
LB move op cnt : 0
LB apply : 4.81 us (1.0%)
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 = (2.983664417642125e-07,-7.596338556599937e-07,-4.148158170295512e-08)
sum a = (4.445228907190568e-18,-2.0057740190981832e-18,-1.4230153513872246e-19)
sum e = 0.05006048672514194
sum de = 0.0006710773050009295
Info: CFL hydro = 0.004924155181834194 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004924155181834194 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.5500e+05 | 100000 | 1 | 6.452e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.4158725834747 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.14509248610890996, dt = 0.004924155181834194 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.71 us (1.7%)
patch tree reduce : 2.07 us (0.5%)
gen split merge : 921.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1031.00 ns (0.3%)
LB compute : 378.66 us (94.5%)
LB move op cnt : 0
LB apply : 3.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.252349735482639e-07,-7.372481632435184e-07,-3.960518342379331e-08)
sum a = (1.8431436932253575e-18,-7.15573433840433e-18,-2.812149384884277e-19)
sum e = 0.050063369835926255
sum de = 0.0006913635127489733
Info: CFL hydro = 0.004775415257661982 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004775415257661982 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.5724e+05 | 100000 | 1 | 6.360e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.87318252353936 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.15001664129074416, dt = 0.004775415257661982 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 37.11 us (9.0%)
patch tree reduce : 1723.00 ns (0.4%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 359.20 us (87.4%)
LB move op cnt : 0
LB apply : 3.93 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.507041637823669e-07,-7.15676479708807e-07,-3.792170570689214e-08)
sum a = (-1.463672932855431e-18,-4.119968255444917e-18,5.082197683525802e-20)
sum e = 0.05006631464797809
sum de = 0.0007106718147903095
Info: CFL hydro = 0.005134480695639185 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005134480695639185 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.5555e+05 | 100000 | 1 | 6.429e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.742008746211518 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.15479205654840614, dt = 0.005134480695639185 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.83 us (1.8%)
patch tree reduce : 1793.00 ns (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 351.02 us (94.5%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.1463146547234614e-07,-7.682660604202944e-07,-4.025181855381151e-08)
sum a = (-5.149960319306146e-18,-3.3068166260807885e-18,-6.776263578034403e-20)
sum e = 0.05007105044730858
sum de = 0.0007306626671322395
Info: CFL hydro = 0.005015613925607575 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005015613925607575 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.5638e+05 | 100000 | 1 | 6.395e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.906216016427223 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.15992653724404532, dt = 7.34627559546841e-05 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (1.5%)
patch tree reduce : 1553.00 ns (0.3%)
gen split merge : 1182.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 423.52 us (95.3%)
LB move op cnt : 0
LB apply : 3.82 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.520430120473979e-09,-1.0941551081819815e-08,-5.676885173297553e-10)
sum a = (6.667843360785852e-18,-7.752045533271357e-18,3.3881317890172014e-21)
sum e = 0.05006352228476966
sum de = 0.0007321608753006916
Info: CFL hydro = 0.005016571335278051 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005016571335278051 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.6299e+05 | 100000 | 1 | 6.135e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4310634428018924 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 34 [SPH][rank=0]
Info: time since start : 176.64864868200002 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000004.vtk [VTK Dump][rank=0]
- took 5.83 ms, bandwidth = 916.18 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.32 us (53.5%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000004.sham [Shamrock Dump][rank=0]
- took 6.62 ms, bandwidth = 1.80 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.04 s [sph::CartesianRender][rank=0]
Saving data to _to_trash/circular_disc_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.04 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 711.72 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 715.82 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 699.24 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 714.71 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.051499932000000005 s
Info: compute_slice took 1268.07 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1234.61 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.024625227000000003 s
Info: compute_slice took 1247.68 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1272.43 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 1221.99 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1232.20 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.05 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
sph::RenderFieldGetter compute custom field took : 0.020517614 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000008.npy
---------------- t = 0.16, dt = 0.005016571335278051 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.80 us (2.7%)
patch tree reduce : 1694.00 ns (0.4%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1423.00 ns (0.3%)
LB compute : 452.79 us (94.0%)
LB move op cnt : 0
LB apply : 4.50 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (72.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.458415248907355e-07,-7.471027319577248e-07,-3.8757762963556986e-08)
sum a = (1.3200161450011016e-17,-5.421010862427522e-20,1.8465318250143747e-19)
sum e = 0.05007448889546177
sum de = 0.0007502484953923789
Info: CFL hydro = 0.00490695084537378 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00490695084537378 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.5663e+05 | 100000 | 1 | 6.385e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.28601826371279 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.16501657133527806, dt = 0.00490695084537378 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.77 us (1.6%)
patch tree reduce : 1533.00 ns (0.4%)
gen split merge : 1002.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1282.00 ns (0.3%)
LB compute : 393.58 us (94.6%)
LB move op cnt : 0
LB apply : 4.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (71.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.750447398737203e-07,-7.252512702108461e-07,-3.7360486111646434e-08)
sum a = (6.451002926288751e-18,1.6967763999398144e-17,-5.251604272976662e-20)
sum e = 0.050077915696196594
sum de = 0.0007686291366959137
Info: CFL hydro = 0.004809714821827945 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004809714821827945 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.5728e+05 | 100000 | 1 | 6.358e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.784269877636373 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.16992352218065185, dt = 0.004809714821827945 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.79 us (1.9%)
patch tree reduce : 1974.00 ns (0.6%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 330.82 us (94.0%)
LB move op cnt : 0
LB apply : 3.92 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1993.00 ns (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.033819047691819e-07,-7.034667039524447e-07,-3.608005422261532e-08)
sum a = (-1.5287250632045613e-17,5.041540102057596e-18,-3.218725199566341e-20)
sum e = 0.050081395134377545
sum de = 0.000786133036015293
Info: CFL hydro = 0.004720954860370113 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004720954860370113 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.5739e+05 | 100000 | 1 | 6.354e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.252568417391984 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.17473323700247978, dt = 0.004720954860370113 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (1.8%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1362.00 ns (0.4%)
LB compute : 334.99 us (94.2%)
LB move op cnt : 0
LB apply : 3.74 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.30686884432623e-07,-6.813114635311501e-07,-3.488304253303823e-08)
sum a = (-8.61940727125976e-18,-5.095750210681871e-18,-2.0159384144652348e-19)
sum e = 0.050084914019876824
sum de = 0.0008027867813030053
Info: CFL hydro = 0.00517865933156533 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00517865933156533 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.5568e+05 | 100000 | 1 | 6.423e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.45845756293214 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1794541918628499, dt = 0.0005458081371501056 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.95 us (1.9%)
patch tree reduce : 1613.00 ns (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 347.89 us (94.4%)
LB move op cnt : 0
LB apply : 3.43 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (62.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.552544311748656e-08,-7.749621305546057e-08,-3.971416517525646e-09)
sum a = (-7.37257477290143e-18,-3.144186300207963e-18,-2.320870275476783e-19)
sum e = 0.050078992990704944
sum de = 0.0008057930629627205
Info: CFL hydro = 0.005142647206584954 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005142647206584954 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.6079e+05 | 100000 | 1 | 6.219e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1594277551056202 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 39 [SPH][rank=0]
Info: time since start : 197.35891561300002 (s) [SPH][rank=0]
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_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.04 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 705.83 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 711.76 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 683.74 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 711.46 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.058426385000000004 s
Info: compute_slice took 1287.30 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1235.99 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.022168527 s
Info: compute_slice took 1252.23 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1228.39 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 1233.73 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1227.10 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.05 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
sph::RenderFieldGetter compute custom field took : 0.019670455 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000009.npy
---------------- t = 0.18, dt = 0.005142647206584954 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.56 us (2.6%)
patch tree reduce : 1894.00 ns (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1113.00 ns (0.3%)
LB compute : 412.04 us (94.0%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.219343838794165e-07,-7.286484302553828e-07,-3.735119630328041e-08)
sum a = (-1.496198998029996e-17,-5.963111948670274e-19,2.405573570202213e-19)
sum e = 0.05009075506683038
sum de = 0.0008217710411676636
Info: CFL hydro = 0.005042736600566154 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005042736600566154 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.5576e+05 | 100000 | 1 | 6.420e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.83618133502541 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.18514264720658494, dt = 0.005042736600566154 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.20 us (2.0%)
patch tree reduce : 1983.00 ns (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.3%)
LB compute : 335.41 us (93.9%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.518698321234918e-07,-6.989475379780378e-07,-3.599154862999261e-08)
sum a = (4.174178364069192e-18,-6.830473686658678e-18,1.1350241493207625e-19)
sum e = 0.05009466217344074
sum de = 0.0008381127855705959
Info: CFL hydro = 0.004840163932108771 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004840163932108771 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.4527e+05 | 100000 | 1 | 6.884e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.37201102691752 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.19018538380715108, dt = 0.004840163932108771 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.34 us (1.7%)
patch tree reduce : 1703.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1091.00 ns (0.3%)
LB compute : 344.80 us (94.5%)
LB move op cnt : 0
LB apply : 3.64 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1853.00 ns (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.651186617461967e-07,-6.538132921816902e-07,-3.393641677469651e-08)
sum a = (-8.294146619514109e-18,-2.461138931542095e-17,-7.453889935837843e-20)
sum e = 0.050098189577541204
sum de = 0.0008531997013079331
Info: CFL hydro = 0.0046624811529341545 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0046624811529341545 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.5663e+05 | 100000 | 1 | 6.385e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.29138540993839 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.19502554773925984, dt = 0.0046624811529341545 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.43 us (1.8%)
patch tree reduce : 1673.00 ns (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 387.38 us (94.8%)
LB move op cnt : 0
LB apply : 3.57 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.769317935737791e-07,-6.118421429473077e-07,-3.211601804390421e-08)
sum a = (-3.144186300207963e-18,6.559423143537302e-18,-1.7618285302889447e-19)
sum e = 0.05010172306885269
sum de = 0.0008670681527763748
Info: CFL hydro = 0.004505496577714329 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004505496577714329 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.5669e+05 | 100000 | 1 | 6.382e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.300530243808584 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.199688028892194, dt = 0.00031197110780600834 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (1.6%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 1273.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 382.36 us (94.9%)
LB move op cnt : 0
LB apply : 3.84 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.760687685559405e-08,-3.9643513430792686e-08,-2.111186475822106e-09)
sum a = (4.0115480381963664e-18,1.0083080204115191e-17,-7.962109704190423e-20)
sum e = 0.050095693699269146
sum de = 0.0008691438299308716
Info: CFL hydro = 0.004495901902453527 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004495901902453527 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.5972e+05 | 100000 | 1 | 6.261e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7937736450555235 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 44 [SPH][rank=0]
Info: time since start : 218.09785359900002 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000005.vtk [VTK Dump][rank=0]
- took 5.49 ms, bandwidth = 973.20 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.88 us (58.2%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000005.sham [Shamrock Dump][rank=0]
- took 6.80 ms, bandwidth = 1.76 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.05 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.07 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 698.43 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 702.36 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 650.68 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 695.78 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.054575066000000005 s
Info: compute_slice took 1255.56 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1207.77 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.023289712 s
Info: compute_slice took 1207.16 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1201.20 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 1189.45 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1201.61 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.04 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
sph::RenderFieldGetter compute custom field took : 0.019463266 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000010.npy
---------------- t = 0.2, dt = 0.004495901902453527 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.15 us (2.6%)
patch tree reduce : 1723.00 ns (0.4%)
gen split merge : 1122.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1031.00 ns (0.2%)
LB compute : 440.84 us (94.1%)
LB move op cnt : 0
LB apply : 4.14 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.882919053755435e-07,-5.699955146039058e-07,-3.038816611412775e-08)
sum a = (-9.107298248878237e-18,4.228388472693467e-18,5.082197683525802e-20)
sum e = 0.05010549386597752
sum de = 0.000880668323287411
Info: CFL hydro = 0.004356915210828825 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004356915210828825 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.4878e+05 | 100000 | 1 | 6.722e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.079756592221106 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.20449590190245354, dt = 0.004356915210828825 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.37 us (1.7%)
patch tree reduce : 1553.00 ns (0.4%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1352.00 ns (0.3%)
LB compute : 416.16 us (95.0%)
LB move op cnt : 0
LB apply : 4.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (70.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.977339736010796e-07,-5.330209118164847e-07,-2.8931117828465095e-08)
sum a = (7.48099499014998e-18,1.734723475976807e-17,-9.656175598699024e-20)
sum e = 0.0501090093754875
sum de = 0.0008923117833947741
Info: CFL hydro = 0.0042328398918523346 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0042328398918523346 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.4993e+05 | 100000 | 1 | 6.670e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.51680323596468 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.20885281711328235, dt = 0.0042328398918523346 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (1.6%)
patch tree reduce : 1513.00 ns (0.4%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 391.90 us (94.9%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.063293641584186e-07,-4.97994617703308e-07,-2.7611756745035183e-08)
sum a = (-1.1709383462843448e-17,-1.5910666881224778e-17,-1.5415999640028266e-19)
sum e = 0.05011250869084008
sum de = 0.0009029914234547822
Info: CFL hydro = 0.004121077139140907 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004121077139140907 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.5735e+05 | 100000 | 1 | 6.355e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.97701494715437 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.21308565700513468, dt = 0.004121077139140907 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.17 us (1.8%)
patch tree reduce : 1493.00 ns (0.4%)
gen split merge : 1162.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1173.00 ns (0.3%)
LB compute : 384.86 us (94.7%)
LB move op cnt : 0
LB apply : 4.17 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (70.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.141018380329985e-07,-4.645857400889267e-07,-2.6406603644505883e-08)
sum a = (9.486769009248164e-18,8.592302216947623e-18,1.1858461261560205e-20)
sum e = 0.05011598731075177
sum de = 0.0009127656847424998
Info: CFL hydro = 0.004019904462748778 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004019904462748778 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.5719e+05 | 100000 | 1 | 6.362e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.32063729449464 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.21720673414427558, dt = 0.002793265855724425 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.71 us (1.7%)
patch tree reduce : 1473.00 ns (0.4%)
gen split merge : 1202.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1133.00 ns (0.3%)
LB compute : 372.46 us (94.6%)
LB move op cnt : 0
LB apply : 4.27 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.010799164192336e-07,-3.0057787846702997e-07,-1.7579431830398573e-08)
sum a = (1.577514160966409e-17,-4.336808689942018e-19,9.317362419797304e-20)
sum e = 0.05011586124044335
sum de = 0.000919613811006853
Info: CFL hydro = 0.0039559395664413525 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0039559395664413525 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.5798e+05 | 100000 | 1 | 6.330e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.88638444468754 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 49 [SPH][rank=0]
Info: time since start : 238.607083893 (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_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.04 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 670.35 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 687.25 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 667.05 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 686.83 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.049765659000000004 s
Info: compute_slice took 1223.00 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1210.85 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.021379219 s
Info: compute_slice took 1207.73 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1209.28 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 1182.52 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1210.55 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.03 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
sph::RenderFieldGetter compute custom field took : 0.01867925 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000011.npy
---------------- t = 0.22, dt = 0.0039559395664413525 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.63 us (2.8%)
patch tree reduce : 1923.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 430.27 us (94.0%)
LB move op cnt : 0
LB apply : 3.97 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.256949690666602e-07,-4.112000821088061e-07,-2.458674814723417e-08)
sum a = (1.2956215961201778e-17,-9.893344823930228e-18,5.759824041329242e-20)
sum e = 0.05012182372138322
sum de = 0.0009274574159028378
Info: CFL hydro = 0.003869026642575885 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.003869026642575885 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.5788e+05 | 100000 | 1 | 6.334e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.4849209414068 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.22395593956644136, dt = 0.003869026642575885 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (1.8%)
patch tree reduce : 1853.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1393.00 ns (0.4%)
LB compute : 336.35 us (94.1%)
LB move op cnt : 0
LB apply : 3.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.314750365794664e-07,-3.8109090113765934e-07,-2.361206272915476e-08)
sum a = (1.6263032587282567e-18,-4.472333961502706e-18,-2.913793338554793e-19)
sum e = 0.050125235881243894
sum de = 0.0009350238805271304
Info: CFL hydro = 0.004213690404968462 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004213690404968462 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.5817e+05 | 100000 | 1 | 6.322e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.030744383400858 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.22782496620901724, dt = 0.004213690404968462 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.63 us (1.7%)
patch tree reduce : 1633.00 ns (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 372.80 us (94.8%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1934.00 ns (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.19100912042113e-07,-3.9137005070348263e-07,-2.5246315549581834e-08)
sum a = (-5.9631119486702744e-18,1.043544591017298e-17,-1.3891340334970526e-19)
sum e = 0.050130021319268615
sum de = 0.0009422941075154108
Info: CFL hydro = 0.0047635743229402314 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0047635743229402314 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.5795e+05 | 100000 | 1 | 6.331e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.959418146578777 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2320386566139857, dt = 0.0047635743229402314 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.73 us (1.7%)
patch tree reduce : 1643.00 ns (0.4%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1031.00 ns (0.3%)
LB compute : 371.82 us (94.8%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (73.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.527080472924147e-07,-4.117729208538931e-07,-2.7955192619700815e-08)
sum a = (-1.5720931501039814e-18,8.72782748850831e-18,-4.2351647362715017e-20)
sum e = 0.05013599684299855
sum de = 0.0009423009463000021
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.04628186071256071
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.737125515950754e-07,-3.877710937814929e-07,-2.741279680140602e-08)
sum a = (3.0899761915836876e-18,7.345469718589293e-18,-6.268043809681823e-20)
sum e = 0.05012928296651309
sum de = 0.0009436720423579661
Info: CFL hydro = 0.0023145112221884924 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0023145112221884924 cfl multiplier : 0.4999999996549677 [sph::Model][rank=0]
Info: Timestep perf 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 : 22.531680192451322 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.23680223093692593, dt = 0.0023145112221884924 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 100000.0 min = 100000.0 factor = 1
- strategy "round robin" : max = 95000.0 min = 95000.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 100000
max = 100000
avg = 100000
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (1.4%)
patch tree reduce : 1603.00 ns (0.4%)
gen split merge : 1092.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 420.52 us (95.4%)
LB move op cnt : 0
LB apply : 3.71 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (70.0%)
Info: sink accretion : [sph::Sink][rank=0]
id 0 deltas : mass=1.0000000005838672e-07 r=(-4.2418307192261476e-08,-6.738230333355845e-08,-6.978757165965112e-10) v=(6.716327015853959e-07,-3.054542466035865e-07,3.023513519619e-09) l=(-4.169224144206712e-09,-3.4022886031753526e-09,5.819166128467138e-07)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.7306911257571934e-07,-1.8896876985596736e-07,-1.332537050620792e-08)
sum a = (-1.2739375526704677e-17,3.686287386450715e-18,1.1011428314305904e-19)
sum e = 0.05013035194452982
sum de = 0.0009467289730656961
Info: CFL hydro = 0.0031682502950643033 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0031682502950643033 cfl multiplier : 0.6666666664366452 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5942e+05 | 99999 | 1 | 6.273e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.283497825085398 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2391167421591144, dt = 0.0008832578408855818 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99999.0 min = 99999.0 factor = 1
- strategy "round robin" : max = 94999.0 min = 94999.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99999
max = 99999
avg = 99999
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.58 us (1.6%)
patch tree reduce : 1953.00 ns (0.5%)
gen split merge : 1142.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 380.11 us (94.5%)
LB move op cnt : 0
LB apply : 4.65 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (69.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8309111334094034e-07,-6.85234887275521e-08,-5.021550213838959e-09)
sum a = (4.2825985813177425e-18,1.8241701552068612e-17,3.1509625637859973e-19)
sum e = 0.05012983576892973
sum de = 0.0009482523621882664
Info: CFL hydro = 0.0036744132607496286 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0036744132607496286 cfl multiplier : 0.7777777776244301 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.6081e+05 | 99999 | 1 | 6.218e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.113339380167192 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 55 [SPH][rank=0]
Info: time since start : 259.67427483 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000006.vtk [VTK Dump][rank=0]
- took 5.98 ms, bandwidth = 893.48 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.40 us (58.0%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000006.sham [Shamrock Dump][rank=0]
- took 6.93 ms, bandwidth = 1.72 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_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.03 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 670.45 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 678.11 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 667.73 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 675.71 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.049894882 s
Info: compute_slice took 1222.44 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1205.59 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.023323410000000003 s
Info: compute_slice took 1194.37 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1200.61 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 1186.19 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1208.56 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.03 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
sph::RenderFieldGetter compute custom field took : 0.020491676 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000012.npy
---------------- t = 0.24, dt = 0.0036744132607496286 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99999.0 min = 99999.0 factor = 1
- strategy "round robin" : max = 94999.0 min = 94999.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99999
max = 99999
avg = 99999
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.78 us (2.5%)
patch tree reduce : 1983.00 ns (0.4%)
gen split merge : 1122.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.2%)
LB compute : 436.17 us (94.3%)
LB move op cnt : 0
LB apply : 3.73 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.65640987673008e-07,-2.796101101522477e-07,-2.079212119182711e-08)
sum a = (-4.933119884809045e-18,-3.1712913545201005e-18,-2.761327408049019e-19)
sum e = 0.050137091679940224
sum de = 0.0009521793758873761
Info: CFL hydro = 0.003926716907570339 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.003926716907570339 cfl multiplier : 0.8518518517496201 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.4349e+05 | 99999 | 1 | 6.969e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.980722285200702 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.24367441326074962, dt = 0.003926716907570339 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99999.0 min = 99999.0 factor = 1
- strategy "round robin" : max = 94999.0 min = 94999.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99999
max = 99999
avg = 99999
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.70 us (1.8%)
patch tree reduce : 1814.00 ns (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 350.44 us (94.6%)
LB move op cnt : 0
LB apply : 3.42 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1883.00 ns (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.35380378592964e-07,-2.7399076933991106e-07,-2.178128873128784e-08)
sum a = (-2.4936649967166602e-18,9.107298248878237e-18,-2.574980159653073e-19)
sum e = 0.050141415453446275
sum de = 0.0009563332775144992
Info: CFL hydro = 0.004053778127631799 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004053778127631799 cfl multiplier : 0.9012345678330801 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5785e+05 | 99999 | 1 | 6.335e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.314518122541624 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.24760113016831997, dt = 0.004053778127631799 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99999.0 min = 99999.0 factor = 1
- strategy "round robin" : max = 94999.0 min = 94999.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99999
max = 99999
avg = 99999
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (1.4%)
patch tree reduce : 1503.00 ns (0.3%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.2%)
LB compute : 427.47 us (95.3%)
LB move op cnt : 0
LB apply : 4.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (70.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.804274975158737e-07,-2.5443772337972677e-07,-2.1996024788489353e-08)
sum a = (2.8731357570865868e-18,9.012430558785756e-18,-1.2705494208814505e-19)
sum e = 0.05014561050984517
sum de = 0.0009599127892762046
Info: CFL hydro = 0.004560302629297338 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004560302629297338 cfl multiplier : 0.9341563785553868 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5799e+05 | 99999 | 1 | 6.329e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.056535161679125 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2516549082959518, dt = 0.004560302629297338 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99999.0 min = 99999.0 factor = 1
- strategy "round robin" : max = 94999.0 min = 94999.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99999
max = 99999
avg = 99999
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (1.6%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.3%)
LB compute : 390.44 us (94.9%)
LB move op cnt : 0
LB apply : 3.89 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0101655634172296e-06,-2.520022385363321e-07,-2.416763584260734e-08)
sum a = (3.5236570605778894e-18,-1.974603206639225e-17,-9.147955830346444e-20)
sum e = 0.050151303791975396
sum de = 0.0009627081849541977
Info: CFL hydro = 0.004441870255843614 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004441870255843614 cfl multiplier : 0.9561042523702579 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5802e+05 | 99999 | 1 | 6.328e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.94299137246941 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2562152109252491, dt = 0.0037847890747508828 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99999.0 min = 99999.0 factor = 1
- strategy "round robin" : max = 94999.0 min = 94999.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99999
max = 99999
avg = 99999
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.05 us (1.6%)
patch tree reduce : 1663.00 ns (0.4%)
gen split merge : 1183.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.2%)
LB compute : 420.21 us (95.1%)
LB move op cnt : 0
LB apply : 4.12 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.62 us (76.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.555191805581077e-07,-1.7600632372259857e-07,-1.951140671128116e-08)
sum a = (-7.806255641895632e-18,9.202165938970719e-18,-1.4568966692773966e-19)
sum e = 0.050153038153323615
sum de = 0.0009650335309015403
Info: CFL hydro = 0.004341363766879834 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004341363766879834 cfl multiplier : 0.9707361682468386 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5777e+05 | 99999 | 1 | 6.338e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.496653114800356 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 60 [SPH][rank=0]
Info: time since start : 279.982197061 (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_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.04 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 689.44 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 696.68 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 670.51 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 696.17 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.051388039 s
Info: compute_slice took 1282.44 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1214.15 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.018004543 s
Info: compute_slice took 1196.81 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1218.72 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 1209.22 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1204.22 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.03 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
sph::RenderFieldGetter compute custom field took : 0.016329683 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000013.npy
---------------- t = 0.26, dt = 0.004341363766879834 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99999.0 min = 99999.0 factor = 1
- strategy "round robin" : max = 94999.0 min = 94999.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99999
max = 99999
avg = 99999
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.75 us (2.6%)
patch tree reduce : 1543.00 ns (0.3%)
gen split merge : 1192.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 421.15 us (94.1%)
LB move op cnt : 0
LB apply : 4.22 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.964021709611608e-07,-1.692990061800972e-07,-2.1853327027034273e-08)
sum a = (-6.830473686658678e-18,9.229270993282856e-18,8.470329472543003e-21)
sum e = 0.05015858930878161
sum de = 0.0009595477982831707
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.042111598348849213
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0031367041937316e-06,-1.4074700077393613e-07,-2.1001917485847466e-08)
sum a = (-8.348356728138384e-18,-2.846030702774449e-19,3.218725199566341e-20)
sum e = 0.05015295185260515
sum de = 0.00096072263938688
Info: CFL hydro = 0.0021951242807874034 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021951242807874034 cfl multiplier : 0.4902453894156129 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.3150e+05 | 99999 | 1 | 7.605e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.552182222621397 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.26434136376687983, dt = 0.0021951242807874034 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99999.0 min = 99999.0 factor = 1
- strategy "round robin" : max = 94999.0 min = 94999.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99999
max = 99999
avg = 99999
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (1.7%)
patch tree reduce : 1633.00 ns (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 380.81 us (94.8%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (69.9%)
Info: sink accretion : [sph::Sink][rank=0]
id 0 deltas : mass=1.0000000005838672e-07 r=(-5.3843740741702996e-08,-5.88262989481768e-08,1.411333831011877e-09) v=(5.999788497341226e-07,-4.275704127329382e-07,-3.3235594369157397e-09) l=(7.903624077129793e-09,6.750853258436924e-09,5.829155225982962e-07)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.070835379764703e-07,-7.177492323280074e-08,-1.0750701349117932e-08)
sum a = (2.4936649967166602e-18,-6.640738306473715e-18,8.470329472543003e-21)
sum e = 0.050153798142565396
sum de = 0.0009534811507096122
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.021234835468634687
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.061207523592614e-07,-6.591036442002456e-08,-1.0555592487764989e-08)
sum a = (-4.607859233063394e-18,-1.3234042767901188e-17,-1.5246593050577406e-20)
sum e = 0.05015234961033071
sum de = 0.0009537752138127556
Info: CFL hydro = 0.001492455171155616 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001492455171155616 cfl multiplier : 0.33008179647187097 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.2480e+05 | 99998 | 1 | 8.013e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.862349736223416 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2665364880476672, dt = 0.001492455171155616 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99998.0 min = 99998.0 factor = 1
- strategy "round robin" : max = 94998.1 min = 94998.1 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99998
max = 99998
avg = 99998
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.38 us (1.4%)
patch tree reduce : 1853.00 ns (0.4%)
gen split merge : 1192.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1041.00 ns (0.2%)
LB compute : 422.85 us (95.3%)
LB move op cnt : 0
LB apply : 3.91 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (69.3%)
Info: sink accretion : [sph::Sink][rank=0]
id 0 deltas : mass=1.0000000005838672e-07 r=(-5.785184733075539e-08,-5.5150053691421025e-08,-1.1221727921594434e-09) v=(5.794161396655283e-07,-4.4624556612489117e-07,-8.264333115630682e-09) l=(-4.658444224585309e-10,-1.1264499317535856e-08,5.776184444195458e-07)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.4402746198457246e-07,-4.5048208253859964e-08,-7.210482208762517e-09)
sum a = (2.1141942363467336e-18,1.7767363101606204e-17,1.1519648082658485e-19)
sum e = 0.050151780472220575
sum de = 0.0009537705956723362
Info: CFL hydro = 0.0025410002373358275 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025410002373358275 cfl multiplier : 0.5533878643145806 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5999e+05 | 99997 | 1 | 6.250e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.596397999064857 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2680289432188228, dt = 0.0025410002373358275 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99997.0 min = 99997.0 factor = 1
- strategy "round robin" : max = 94997.1 min = 94997.1 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99997
max = 99997
avg = 99997
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.16 us (1.8%)
patch tree reduce : 1453.00 ns (0.4%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 386.66 us (94.8%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.887776858436487e-07,-6.848535064378302e-08,-1.2095056652416243e-08)
sum a = (-1.6317242695906842e-17,-1.2041420378167134e-17,-4.912791094074942e-20)
sum e = 0.05015546829682402
sum de = 0.0009534753201023026
Info: CFL hydro = 0.003179736613649177 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.003179736613649177 cfl multiplier : 0.7022585762097204 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.4677e+05 | 99997 | 1 | 6.813e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.426266842717803 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.27056994345615865, dt = 0.003179736613649177 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99997.0 min = 99997.0 factor = 1
- strategy "round robin" : max = 94997.1 min = 94997.1 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99997
max = 99997
avg = 99997
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.67 us (1.7%)
patch tree reduce : 1613.00 ns (0.4%)
gen split merge : 1162.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1013.00 ns (0.3%)
LB compute : 374.19 us (94.7%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.426493030986811e-07,-6.885387291869432e-08,-1.4870015505220241e-08)
sum a = (1.0191500421363742e-17,-5.285485590866834e-19,-1.5246593050577406e-19)
sum e = 0.05015959570850178
sum de = 0.0009526658978864616
Info: CFL hydro = 0.0035669494695420518 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0035669494695420518 cfl multiplier : 0.8015057174731469 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5746e+05 | 99997 | 1 | 6.351e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.025187857308087 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2737496800698078, dt = 0.0035669494695420518 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99997.0 min = 99997.0 factor = 1
- strategy "round robin" : max = 94997.1 min = 94997.1 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99997
max = 99997
avg = 99997
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.21 us (1.8%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 1123.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 389.77 us (94.7%)
LB move op cnt : 0
LB apply : 3.79 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.406564552100747e-07,-5.319227984710857e-08,-1.6304830657463696e-08)
sum a = (9.703609443745265e-18,1.360843133058759e-17,3.5914196963582334e-19)
sum e = 0.05016378010259876
sum de = 0.0009511917168018436
Info: CFL hydro = 0.003779070153269571 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.003779070153269571 cfl multiplier : 0.8676704783154312 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5795e+05 | 99997 | 1 | 6.331e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.28333668008399 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2773166295393499, dt = 0.0026833704606501474 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99997.0 min = 99997.0 factor = 1
- strategy "round robin" : max = 94997.1 min = 94997.1 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99997
max = 99997
avg = 99997
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.5%)
patch tree reduce : 1713.00 ns (0.4%)
gen split merge : 1132.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1011.00 ns (0.3%)
LB compute : 380.71 us (95.1%)
LB move op cnt : 0
LB apply : 3.47 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.381205595783283e-07,-1.9350574071394543e-08,-1.1945197532706e-08)
sum a = (-6.071532165918825e-18,-7.942204429929947e-18,1.2366681029912785e-19)
sum e = 0.05016467993124992
sum de = 0.0009501825754057174
Info: CFL hydro = 0.0038985791638087475 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0038985791638087475 cfl multiplier : 0.9117803188769541 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5813e+05 | 99997 | 1 | 6.324e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.276414197901738 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 67 [SPH][rank=0]
Info: time since start : 301.98600661300003 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000007.vtk [VTK Dump][rank=0]
- took 5.50 ms, bandwidth = 971.52 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.68 us (56.8%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000007.sham [Shamrock Dump][rank=0]
- took 6.87 ms, bandwidth = 1.74 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.05 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.04 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 674.18 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 680.01 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 681.38 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 705.06 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.051985302000000004 s
Info: compute_slice took 1229.16 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1200.49 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.028057427000000003 s
Info: compute_slice took 1210.37 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1205.28 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 1192.05 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1206.84 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.04 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
sph::RenderFieldGetter compute custom field took : 0.014904969 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000014.npy
---------------- t = 0.28, dt = 0.0038985791638087475 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99997.0 min = 99997.0 factor = 1
- strategy "round robin" : max = 94997.1 min = 94997.1 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99997
max = 99997
avg = 99997
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.40 us (2.5%)
patch tree reduce : 1734.00 ns (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.3%)
LB compute : 459.21 us (94.3%)
LB move op cnt : 0
LB apply : 4.15 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.326304391368731e-07,-5.175303578359449e-09,-1.700076403619353e-08)
sum a = (1.5124620306172787e-17,2.6725583551767684e-17,1.5415999640028266e-19)
sum e = 0.05017078636805804
sum de = 0.0009405890210689476
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.03778944268503215
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.325158485705553e-07,1.883832562355912e-08,-1.7105876275334777e-08)
sum a = (8.348356728138384e-18,1.7160887511372125e-18,1.6601845766184287e-19)
sum e = 0.050166206066808834
sum de = 0.0009415182048512407
Info: CFL hydro = 0.00201874081500257 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00201874081500257 cfl multiplier : 0.4705934396256513 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.3108e+05 | 99997 | 1 | 7.629e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.397414973194106 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2838985791638088, dt = 0.00201874081500257 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99997.0 min = 99997.0 factor = 1
- strategy "round robin" : max = 94997.1 min = 94997.1 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99997
max = 99997
avg = 99997
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.92 us (1.7%)
patch tree reduce : 1603.00 ns (0.4%)
gen split merge : 1292.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 378.80 us (94.7%)
LB move op cnt : 0
LB apply : 3.82 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (62.3%)
Info: sink accretion : [sph::Sink][rank=0]
id 0 deltas : mass=1.0000000005838672e-07 r=(-4.6392729771773944e-08,-6.479162568755804e-08,-4.125229638530522e-09) v=(6.427771517276333e-07,-3.498691781772599e-07,3.1876875766008884e-09) l=(-1.6418618449173085e-08,-2.5082938728872315e-08,5.786026755721715e-07)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.828304970665097e-07,9.316975248762054e-09,-8.762604209001254e-09)
sum a = (7.968885967768458e-18,1.2065137300690254e-17,-1.7957098481791167e-19)
sum e = 0.0501666651302296
sum de = 0.0009278346923595472
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.019630666692920597
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.7670904179531576e-07,1.0974859547858312e-08,-8.436944358934414e-09)
sum a = (-4.87890977618477e-18,-1.2534393553469136e-17,-1.5077186461126546e-19)
sum e = 0.05016542659512945
sum de = 0.0009280745366264777
Info: CFL hydro = 0.0013777385888333648 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013777385888333648 cfl multiplier : 0.32353114654188375 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.3120e+05 | 99996 | 1 | 7.622e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.535274360775656 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.28591731997881137, dt = 0.0013777385888333648 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99996.0 min = 99996.0 factor = 1
- strategy "round robin" : max = 94996.2 min = 94996.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99996
max = 99996
avg = 99996
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (1.7%)
patch tree reduce : 1633.00 ns (0.4%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 373.13 us (94.8%)
LB move op cnt : 0
LB apply : 3.52 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (67.9%)
Info: sink accretion : [sph::Sink][rank=0]
id 0 deltas : mass=1.9999999989472883e-07 r=(-1.0000539853867165e-07,-1.0056719709848352e-07,3.6006269614417935e-09) v=(1.0334218591422998e-06,-8.097446925228963e-07,1.205621121189454e-08) l=(-2.863706004517287e-09,4.53155962478316e-08,1.1816156783910634e-06)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.251125587368548e-07,7.071774645216124e-09,-5.7491008589807965e-09)
sum a = (-6.505213034913027e-19,-6.871131268126884e-18,2.168404344971009e-19)
sum e = 0.05016174199462404
sum de = 0.0009213196856984345
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.013385103160800747
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2334076412517284e-07,1.4903197401835088e-08,-5.751601258399358e-09)
sum a = (-7.589415207398531e-19,-2.6254633233094293e-17,2.388632911257127e-19)
sum e = 0.05016116667529666
sum de = 0.0009214464946572858
Info: CFL hydro = 0.001256909978983161 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001256909978983161 cfl multiplier : 0.2745103821806279 [sph::Model][rank=0]
Info: Timestep perf 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 | 99994 | 1 | 7.537e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.58032079642035 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.28729505856764476, dt = 0.001256909978983161 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99994.0 min = 99994.0 factor = 1
- strategy "round robin" : max = 94994.3 min = 94994.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99994
max = 99994
avg = 99994
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.86 us (1.5%)
patch tree reduce : 1814.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 426.29 us (95.3%)
LB move op cnt : 0
LB apply : 3.82 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (68.2%)
Info: sink accretion : [sph::Sink][rank=0]
id 0 deltas : mass=1.0000000005838672e-07 r=(-5.179355087405518e-08,6.094202161569087e-08,-1.142619251271682e-09) v=(-5.078161046548975e-07,-5.418323784047894e-07,-1.158594880562265e-08) l=(-1.3270152902641753e-08,-2.1675253496517603e-10,5.899594296596167e-07)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.94672784984815e-07,1.3674229224406957e-08,-5.218545966268299e-09)
sum a = (-4.87890977618477e-18,-1.1821191811881016e-17,1.9989977555201488e-19)
sum e = 0.050160053712719165
sum de = 0.0009202233971207968
Info: CFL hydro = 0.0024426827020346915 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024426827020346915 cfl multiplier : 0.5163402547870852 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5687e+05 | 99993 | 1 | 6.374e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.0985867040744255 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2885519685466279, dt = 0.0024426827020346915 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99993.0 min = 99993.0 factor = 1
- strategy "round robin" : max = 94993.3 min = 94993.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99993
max = 99993
avg = 99993
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (1.9%)
patch tree reduce : 1754.00 ns (0.5%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 326.29 us (93.9%)
LB move op cnt : 0
LB apply : 3.74 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1914.00 ns (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.743166341096973e-07,3.3165750721027916e-08,-1.0090311030521373e-08)
sum a = (-9.75781955236954e-18,-1.2576745200831851e-17,8.300922883092143e-20)
sum e = 0.05016361740729588
sum de = 0.0009175600697619626
Info: CFL hydro = 0.003142348031690326 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.003142348031690326 cfl multiplier : 0.6775601698580568 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5921e+05 | 99993 | 1 | 6.281e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.001403222139476 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2909946512486626, dt = 0.003142348031690326 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99993.0 min = 99993.0 factor = 1
- strategy "round robin" : max = 94993.3 min = 94993.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99993
max = 99993
avg = 99993
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.92 us (1.7%)
patch tree reduce : 1653.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 382.54 us (94.9%)
LB move op cnt : 0
LB apply : 3.83 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (70.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.411091639955973e-07,5.963466254524949e-08,-1.2711148200764697e-08)
sum a = (1.734723475976807e-18,5.5294310796760726e-18,1.2197274440461925e-19)
sum e = 0.050167674283478195
sum de = 0.0009137022887954568
Info: CFL hydro = 0.0035525590298847777 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0035525590298847777 cfl multiplier : 0.7850401132387045 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5785e+05 | 99993 | 1 | 6.335e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.857501197902224 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2941369992803529, dt = 0.0035525590298847777 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99993.0 min = 99993.0 factor = 1
- strategy "round robin" : max = 94993.3 min = 94993.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99993
max = 99993
avg = 99993
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (1.9%)
patch tree reduce : 1552.00 ns (0.4%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1373.00 ns (0.4%)
LB compute : 334.90 us (94.2%)
LB move op cnt : 0
LB apply : 3.64 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.404723061354846e-07,9.232023313127737e-08,-1.3975275693481527e-08)
sum a = (-1.2468324983583301e-18,2.1304572689340162e-17,-1.8634724839594607e-19)
sum e = 0.05017174535188924
sum de = 0.0009087898558714294
Info: CFL hydro = 0.004143102655209971 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004143102655209971 cfl multiplier : 0.856693408825803 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5716e+05 | 99993 | 1 | 6.363e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.10069292421268 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2976895583102377, dt = 0.0023104416897622992 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99993.0 min = 99993.0 factor = 1
- strategy "round robin" : max = 94993.3 min = 94993.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99993
max = 99993
avg = 99993
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.10 us (1.8%)
patch tree reduce : 1703.00 ns (0.4%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 365.98 us (94.5%)
LB move op cnt : 0
LB apply : 3.82 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1903.00 ns (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.478955628349027e-07,7.852251508798196e-08,-8.795316399491418e-09)
sum a = (-1.0842021724855044e-18,1.3566079683224874e-17,1.0249098661777034e-19)
sum e = 0.05017164851345922
sum de = 0.0009058739800252182
Info: CFL hydro = 0.0046418016524449966 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0046418016524449966 cfl multiplier : 0.9044622725505352 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5868e+05 | 99993 | 1 | 6.302e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.199149275196705 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 75 [SPH][rank=0]
Info: time since start : 324.702851308 (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_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.04 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 674.07 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 691.81 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 671.42 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 691.19 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.049531042000000004 s
Info: compute_slice took 1229.38 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1211.53 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.023663781000000002 s
Info: compute_slice took 1203.02 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1215.28 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 1183.47 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1217.54 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
sph::RenderFieldGetter compute custom field took : 0.019036898 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000015.npy
---------------- t = 0.3, dt = 0.0046418016524449966 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99993.0 min = 99993.0 factor = 1
- strategy "round robin" : max = 94993.3 min = 94993.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99993
max = 99993
avg = 99993
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.55 us (2.8%)
patch tree reduce : 1673.00 ns (0.4%)
gen split merge : 1082.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 429.32 us (94.1%)
LB move op cnt : 0
LB apply : 3.73 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1016938258557387e-06,1.820741561427261e-07,-1.728312063825245e-08)
sum a = (-2.7647155398380363e-18,1.4121733296623695e-17,9.063252535621014e-20)
sum e = 0.050180737493322074
sum de = 0.0008813931579010586
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.04509416653655979
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0977837480156377e-06,1.9292937876103024e-07,-1.6140952055744135e-08)
sum a = (1.6263032587282567e-19,5.692061405548898e-18,9.656175598699024e-20)
sum e = 0.05017418914396254
sum de = 0.000882716360865907
Info: CFL hydro = 0.002412886432062043 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002412886432062043 cfl multiplier : 0.4681540908501784 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.2054e+05 | 99993 | 1 | 8.296e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.143689241874856 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.304641801652445, dt = 0.002412886432062043 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99993.0 min = 99993.0 factor = 1
- strategy "round robin" : max = 94993.3 min = 94993.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99993
max = 99993
avg = 99993
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.81 us (1.7%)
patch tree reduce : 2.17 us (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 384.83 us (94.6%)
LB move op cnt : 0
LB apply : 3.86 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.2%)
Info: sink accretion : [sph::Sink][rank=0]
id 0 deltas : mass=2.9999999995311555e-07 r=(-2.1779212755360187e-08,-2.1312260724842807e-07,1.9741546268320066e-09) v=(1.9859353858802653e-06,-1.5063555568088172e-08,-2.7451415309805472e-09) l=(-5.081240849284723e-09,8.297984681138192e-09,1.7591702511241477e-06)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.713624128369894e-07,9.876689675964963e-08,-8.307286001137514e-09)
sum a = (-8.836247705756861e-18,-8.836247705756861e-18,-6.098637220230962e-20)
sum e = 0.05016992606387972
sum de = 0.000872366211997074
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.023487918282282756
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.654232201968696e-07,1.0813504048331861e-07,-7.922499417420318e-09)
sum a = (-1.0354130747236567e-17,-2.791820594150174e-18,-5.505714157152952e-20)
sum e = 0.050168155013833725
sum de = 0.0008727797518703614
Info: CFL hydro = 0.0016441868906024752 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0016441868906024752 cfl multiplier : 0.3227180302833928 [sph::Model][rank=0]
Info: Timestep perf 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 | 99990 | 1 | 7.584e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.45316808517161 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.30705468808450703, dt = 0.0016441868906024752 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99990.0 min = 99990.0 factor = 1
- strategy "round robin" : max = 94990.5 min = 94990.5 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99990
max = 99990
avg = 99990
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.70 us (1.7%)
patch tree reduce : 1623.00 ns (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 369.90 us (94.7%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (64.1%)
Info: sink accretion : [sph::Sink][rank=0]
id 0 deltas : mass=1.0000000005838672e-07 r=(-5.536880550421008e-08,-5.739160631411784e-08,2.6900807109048052e-09) v=(5.761841495646793e-07,-4.4091552535247897e-07,-2.705836204212429e-09) l=(1.336063943456854e-08,1.4047525095252169e-08,5.746937889082341e-07)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.852001724682859e-07,7.337811770345254e-08,-5.477006968639785e-09)
sum a = (-2.222614453595284e-18,1.6967763999398144e-17,4.489274620447792e-20)
sum e = 0.050167778466707655
sum de = 0.0008695962029045577
Info: CFL hydro = 0.002767584778322051 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002767584778322051 cfl multiplier : 0.5484786868555952 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5924e+05 | 99989 | 1 | 6.279e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.426856479200406 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3086988749751095, dt = 0.002767584778322051 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99989.0 min = 99989.0 factor = 1
- strategy "round robin" : max = 94989.5 min = 94989.5 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99989
max = 99989
avg = 99989
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (1.7%)
patch tree reduce : 1493.00 ns (0.4%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 375.60 us (94.8%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.483679611104181e-07,1.3428940705718652e-07,-8.91651849740657e-09)
sum a = (6.5052130349130266e-18,1.1519648082658485e-18,-1.8634724839594607e-20)
sum e = 0.05017167712179034
sum de = 0.0008639120232032731
Info: CFL hydro = 0.003468200776639184 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.003468200776639184 cfl multiplier : 0.6989857912370635 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.4291e+05 | 99989 | 1 | 6.997e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.240172491614546 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.31146645975343157, dt = 0.003468200776639184 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99989.0 min = 99989.0 factor = 1
- strategy "round robin" : max = 94989.5 min = 94989.5 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99989
max = 99989
avg = 99989
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.37 us (1.4%)
patch tree reduce : 1914.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.2%)
LB compute : 486.00 us (95.5%)
LB move op cnt : 0
LB apply : 4.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.70 us (70.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.116336427269345e-07,1.8998475248513012e-07,-1.0812036931177203e-08)
sum a = (4.9873299934333204e-18,-5.204170427930421e-18,1.1096131609031334e-19)
sum e = 0.05017598754906833
sum de = 0.0008562615897933201
Info: CFL hydro = 0.003886240991742331 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.003886240991742331 cfl multiplier : 0.799323860824709 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.3804e+05 | 99989 | 1 | 7.243e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.23712896990741 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.31493466053007074, dt = 0.003886240991742331 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99989.0 min = 99989.0 factor = 1
- strategy "round robin" : max = 94989.5 min = 94989.5 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99989
max = 99989
avg = 99989
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (1.7%)
patch tree reduce : 1613.00 ns (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 386.45 us (94.7%)
LB move op cnt : 0
LB apply : 4.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.072421627604287e-07,2.4344960343268107e-07,-1.1603396062667794e-08)
sum a = (-1.6263032587282567e-19,-5.6107462426124854e-18,9.063252535621014e-20)
sum e = 0.05018023729147215
sum de = 0.000842380011634549
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.037822254860815904
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.915059194906902e-07,2.7955957941930233e-07,-1.1468894743987837e-08)
sum a = (-6.993104012531504e-18,1.1275702593849246e-17,7.453889935837843e-20)
sum e = 0.050175646804432324
sum de = 0.0008432478306263855
Info: CFL hydro = 0.0020582040922189943 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020582040922189943 cfl multiplier : 0.43310795360823634 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.3154e+05 | 99989 | 1 | 7.601e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.405492767829497 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3188209015218131, dt = 0.001179098478186924 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99989.0 min = 99989.0 factor = 1
- strategy "round robin" : max = 94989.5 min = 94989.5 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99989
max = 99989
avg = 99989
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.53 us (1.8%)
patch tree reduce : 1953.00 ns (0.5%)
gen split merge : 1182.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1013.00 ns (0.2%)
LB compute : 382.20 us (92.1%)
LB move op cnt : 0
LB apply : 4.91 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (71.4%)
Info: sink accretion : [sph::Sink][rank=0]
id 0 deltas : mass=1.0000000005838672e-07 r=(-7.8829146546158e-08,1.1840611944226244e-08,-2.9394544988404433e-09) v=(-4.669803652036959e-08,-7.377227484391303e-07,-1.6824619989941846e-09) l=(-2.1888347110475042e-08,-2.209178921202091e-11,5.869041832088926e-07)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.702029929270761e-07,8.464988880421768e-08,-3.4033663434976665e-09)
sum a = (6.0173220572945496e-18,-6.505213034913027e-19,8.470329472543003e-20)
sum e = 0.050174338629081695
sum de = 0.0008358366793083307
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01147610825946606
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7136529332913906e-07,8.455305124182796e-08,-3.587744002089488e-09)
sum a = (-1.734723475976807e-18,7.399679827213568e-18,1.0503208545953324e-19)
sum e = 0.05017391278755637
sum de = 0.000835917135808777
Info: CFL hydro = 0.0014669527244892777 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0014669527244892777 cfl multiplier : 0.3110359845360788 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.3236e+05 | 99988 | 1 | 7.554e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.618983493117863 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 82 [SPH][rank=0]
Info: time since start : 347.019537796 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000008.vtk [VTK Dump][rank=0]
- took 5.65 ms, bandwidth = 944.95 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.70 us (57.7%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000008.sham [Shamrock Dump][rank=0]
- took 8.14 ms, bandwidth = 1.47 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_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.04 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 686.13 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 691.30 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 681.50 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 693.03 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.051640135000000004 s
Info: compute_slice took 1262.56 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1213.23 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.021643277000000002 s
Info: compute_slice took 1206.36 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1223.89 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 1191.12 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1208.25 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.05 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
sph::RenderFieldGetter compute custom field took : 0.015648577 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000016.npy
---------------- t = 0.32, dt = 0.0014669527244892777 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99988.0 min = 99988.0 factor = 1
- strategy "round robin" : max = 94988.6 min = 94988.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99988
max = 99988
avg = 99988
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.30 us (2.5%)
patch tree reduce : 1653.00 ns (0.4%)
gen split merge : 1052.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 425.96 us (94.4%)
LB move op cnt : 0
LB apply : 3.91 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (68.2%)
Info: sink accretion : [sph::Sink][rank=0]
id 0 deltas : mass=1.0000000005838672e-07 r=(2.9153631283102666e-08,-7.433434847049117e-08,-3.5338698354585448e-09) v=(6.612828132169499e-07,3.3338375439256695e-07,1.3968005638505375e-08) l=(1.5139538682834135e-09,-2.7389058268899212e-08,5.886139420368702e-07)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.378997925422331e-07,1.0495072012312197e-07,-4.31968689499423e-09)
sum a = (8.72782748850831e-18,1.9786689647860456e-18,-4.319868030996932e-20)
sum e = 0.05017305342309187
sum de = 0.00082805342282052
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.014284390879392034
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.3262364848416935e-07,1.0857093048511897e-07,-4.555332646208308e-09)
sum a = (7.426784881525705e-18,-8.40256683676266e-18,-4.319868030996932e-20)
sum e = 0.05017239640756266
sum de = 0.0008281759421538982
Info: CFL hydro = 0.0012633154732619183 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0012633154732619183 cfl multiplier : 0.27034532817869295 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.3253e+05 | 99987 | 1 | 7.544e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.0000939899626555 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3214669527244893, dt = 0.0012633154732619183 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99987.0 min = 99987.0 factor = 1
- strategy "round robin" : max = 94987.6 min = 94987.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99987
max = 99987
avg = 99987
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (1.9%)
patch tree reduce : 1924.00 ns (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 335.60 us (94.2%)
LB move op cnt : 0
LB apply : 3.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (69.6%)
Info: sink accretion : [sph::Sink][rank=0]
id 0 deltas : mass=1.0000000005838672e-07 r=(-7.554081403155239e-08,-2.5873255405055504e-08,-3.0746895466711495e-09) v=(2.982549740575361e-07,-6.77369098764587e-07,1.7566943237555147e-08) l=(-2.5325204569411317e-08,3.972276497327445e-09,5.88778417090631e-07)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.8623809860327617e-07,9.331892886538018e-08,-3.76277697070435e-09)
sum a = (-5.149960319306146e-18,-7.15573433840433e-18,1.2281977735187355e-19)
sum e = 0.05017119204233097
sum de = 0.0008249919893092267
Info: CFL hydro = 0.002598188879423567 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002598188879423567 cfl multiplier : 0.5135635521191286 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5965e+05 | 99986 | 1 | 6.263e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.261803701066513 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3227302681977512, dt = 0.002598188879423567 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99986.0 min = 99986.0 factor = 1
- strategy "round robin" : max = 94986.7 min = 94986.7 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99986
max = 99986
avg = 99986
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (1.6%)
patch tree reduce : 1653.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 403.38 us (95.1%)
LB move op cnt : 0
LB apply : 3.86 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.8796179107285e-07,1.995872852031508e-07,-7.940127973872678e-09)
sum a = (2.927345865710862e-18,-2.574980159653073e-18,-9.317362419797304e-21)
sum e = 0.05017489175227281
sum de = 0.0008181195096406291
Info: CFL hydro = 0.0033582641020091343 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0033582641020091343 cfl multiplier : 0.6757090347460858 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5916e+05 | 99986 | 1 | 6.282e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.888964224544463 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3253284570771748, dt = 0.0033582641020091343 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99986.0 min = 99986.0 factor = 1
- strategy "round robin" : max = 94986.7 min = 94986.7 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99986
max = 99986
avg = 99986
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (1.4%)
patch tree reduce : 2.02 us (0.5%)
gen split merge : 1002.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1222.00 ns (0.3%)
LB compute : 417.13 us (95.2%)
LB move op cnt : 0
LB apply : 3.79 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.564704283195535e-07,2.7734365540762226e-07,-9.920238476779218e-09)
sum a = (-1.4094628242311558e-18,7.237049501340742e-18,1.0418505251227894e-19)
sum e = 0.050179002992828604
sum de = 0.0008087849776172598
Info: CFL hydro = 0.003812019563422231 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.003812019563422231 cfl multiplier : 0.7838060231640572 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5752e+05 | 99986 | 1 | 6.348e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.04603664725016 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3286867211791839, dt = 0.003812019563422231 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99986.0 min = 99986.0 factor = 1
- strategy "round robin" : max = 94986.7 min = 94986.7 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99986
max = 99986
avg = 99986
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.04 us (2.0%)
patch tree reduce : 1643.00 ns (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1293.00 ns (0.4%)
LB compute : 328.99 us (93.9%)
LB move op cnt : 0
LB apply : 3.79 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.526551562985544e-07,3.431753777274161e-07,-1.0753066838649616e-08)
sum a = (1.5720931501039814e-18,-2.325613659981407e-17,-8.893845946170154e-20)
sum e = 0.050183061565141115
sum de = 0.000787232090108351
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.03696919081590801
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.428493599875242e-07,3.6527809033620734e-07,-9.680059305386579e-09)
sum a = (1.6805133673525319e-18,-2.7538735181131813e-17,-8.639736061993863e-20)
sum e = 0.05017861970956307
sum de = 0.0007880250418684913
Info: CFL hydro = 0.002103810317326186 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002103810317326186 cfl multiplier : 0.4279353410546857 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.3186e+05 | 99986 | 1 | 7.583e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.09760857788066 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.33249874074260616, dt = 0.002103810317326186 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99986.0 min = 99986.0 factor = 1
- strategy "round robin" : max = 94986.7 min = 94986.7 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99986
max = 99986
avg = 99986
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.41 us (2.1%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.3%)
LB compute : 337.54 us (93.9%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (68.2%)
Info: sink accretion : [sph::Sink][rank=0]
id 0 deltas : mass=1.9999999989472883e-07 r=(-1.203376940592873e-08,-6.746003641617531e-08,3.3266236190647725e-09) v=(6.35635569378102e-07,-5.151008882875696e-08,-3.134312086966625e-08) l=(1.5449565230132194e-08,-6.4287913234335806e-09,1.1804289142783336e-06)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.653935721157511e-07,2.0134496295314789e-07,-5.612082982125376e-09)
sum a = (3.848917712323541e-18,1.0137290312739466e-17,-2.625802136488331e-20)
sum e = 0.05017611987666497
sum de = 0.0007815390005468062
Info: CFL hydro = 0.003028391346060247 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.003028391346060247 cfl multiplier : 0.6186235607031239 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5871e+05 | 99984 | 1 | 6.300e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.022488083738725 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.33460255105993236, dt = 0.003028391346060247 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99984.0 min = 99984.0 factor = 1
- strategy "round robin" : max = 94984.8 min = 94984.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99984
max = 99984
avg = 99984
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (1.7%)
patch tree reduce : 1803.00 ns (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 326.10 us (94.1%)
LB move op cnt : 0
LB apply : 4.25 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.657548080835031e-07,3.041215045523462e-07,-7.437599085559478e-09)
sum a = (1.0842021724855044e-18,-1.338989683019598e-17,-7.707999820014133e-20)
sum e = 0.05017991732839283
sum de = 0.0007648059759233718
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.02946843092291402
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.436413738450392e-07,3.1603387792498284e-07,-6.32254966999184e-09)
sum a = (2.9815559743351372e-18,-1.0245710529988017e-17,-8.639736061993863e-20)
sum e = 0.050177113355763484
sum de = 0.0007652689492295129
Info: CFL hydro = 0.0017887636393128373 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0017887636393128373 cfl multiplier : 0.3728745202343746 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.3250e+05 | 99984 | 1 | 7.546e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.447585714821722 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3376309424059926, dt = 0.0017887636393128373 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99984.0 min = 99984.0 factor = 1
- strategy "round robin" : max = 94984.8 min = 94984.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99984
max = 99984
avg = 99984
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.03 us (2.1%)
patch tree reduce : 1633.00 ns (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 320.53 us (93.8%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (68.4%)
Info: sink accretion : [sph::Sink][rank=0]
id 0 deltas : mass=1.9999999989472883e-07 r=(-1.366934613131919e-07,-6.857646330064114e-08,6.38209071539375e-09) v=(7.226211068286453e-07,-1.2275906915554225e-06,-1.5531418873146486e-08) l=(4.509899958738836e-08,1.879782763747834e-08,1.1808279707224135e-06)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.7970180966198424e-07,1.8592542085300504e-07,-4.0551912767640685e-09)
sum a = (-3.2526065174565133e-19,-1.3335686721571705e-17,-1.8973538018496328e-19)
sum e = 0.050173951708217354
sum de = 0.0007595464797488014
Info: CFL hydro = 0.002758898950564843 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002758898950564843 cfl multiplier : 0.5819163468229164 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.3048e+05 | 99982 | 1 | 7.663e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.403653524328275 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.33941970604530547, dt = 0.0005802939546945551 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99982.0 min = 99982.0 factor = 1
- strategy "round robin" : max = 94982.9 min = 94982.9 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99982
max = 99982
avg = 99982
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.21 us (1.6%)
patch tree reduce : 1593.00 ns (0.3%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 435.91 us (95.3%)
LB move op cnt : 0
LB apply : 3.99 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (73.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2260736027583873e-07,6.275074052692828e-08,-1.169904236359646e-09)
sum a = (-9.86623976961809e-18,-9.595189226496714e-18,-7.199780051661553e-20)
sum e = 0.05017351750293528
sum de = 0.0007579303014417153
Info: CFL hydro = 0.0034074390724075834 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0034074390724075834 cfl multiplier : 0.7212775645486108 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.6167e+05 | 99982 | 1 | 6.184e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3780213974798614 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 91 [SPH][rank=0]
Info: time since start : 370.481503363 (s) [SPH][rank=0]
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_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.04 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 686.89 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 688.45 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 688.01 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 679.16 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.057927317000000006 s
Info: compute_slice took 1263.45 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1227.35 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.02178681 s
Info: compute_slice took 1227.39 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1231.84 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 1199.89 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1228.62 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.05 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
sph::RenderFieldGetter compute custom field took : 0.022038958 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000017.npy
---------------- t = 0.34, dt = 0.0034074390724075834 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99982.0 min = 99982.0 factor = 1
- strategy "round robin" : max = 94982.9 min = 94982.9 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99982
max = 99982
avg = 99982
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.88 us (2.6%)
patch tree reduce : 1824.00 ns (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1031.00 ns (0.2%)
LB compute : 430.97 us (94.2%)
LB move op cnt : 0
LB apply : 3.91 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.185044309587839e-07,3.7263248812861237e-07,-6.79020710361355e-09)
sum a = (-7.26415455565288e-18,5.963111948670274e-19,-2.803679055411734e-19)
sum e = 0.05017951722178248
sum de = 0.000738855089813058
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.03317243214657075
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.899579072246713e-07,3.91122345617202e-07,-5.790922917243413e-09)
sum a = (-7.26415455565288e-18,-5.7462715141731735e-18,-2.685094442796132e-19)
sum e = 0.050175966395899024
sum de = 0.0007394446965624716
Info: CFL hydro = 0.001994561814048249 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001994561814048249 cfl multiplier : 0.40709252151620356 [sph::Model][rank=0]
Info: Timestep perf 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 | 99982 | 1 | 7.610e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.120034364616043 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3434074390724076, dt = 0.001994561814048249 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99982.0 min = 99982.0 factor = 1
- strategy "round robin" : max = 94982.9 min = 94982.9 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99982
max = 99982
avg = 99982
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.48 us (1.6%)
patch tree reduce : 1943.00 ns (0.5%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 387.03 us (94.9%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (70.2%)
Info: sink accretion : [sph::Sink][rank=0]
id 0 deltas : mass=1.9999999989472883e-07 r=(-1.4838095673353147e-07,-4.4213948370355546e-08,4.022080757931573e-09) v=(5.02514360339209e-07,-1.3439562933469294e-06,-2.83849660686515e-08) l=(3.1425084542765285e-08,-6.906479875889133e-09,1.1770350583148437e-06)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.0320043585486017e-07,2.2820303273641445e-07,-3.5722318093560926e-09)
sum a = (-2.2768245622195593e-18,-1.1763593571467723e-17,1.1265538198482195e-19)
sum e = 0.05017319760142622
sum de = 0.0007291609941635007
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.019385612604410785
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.0131695789398427e-07,2.3089020987248813e-07,-2.9344959875691472e-09)
sum a = (-5.366800753803247e-18,-8.023096076392733e-18,1.122318655111948e-19)
sum e = 0.05017197885472681
sum de = 0.0007293893397301352
Info: CFL hydro = 0.0014594823718448906 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0014594823718448906 cfl multiplier : 0.30236417383873454 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.3232e+05 | 99980 | 1 | 7.556e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.503389892073145 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.34540200088645584, dt = 0.0014594823718448906 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99980.0 min = 99980.0 factor = 1
- strategy "round robin" : max = 94981.0 min = 94981.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99980
max = 99980
avg = 99980
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.45 us (1.7%)
patch tree reduce : 1633.00 ns (0.4%)
gen split merge : 1262.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1031.00 ns (0.3%)
LB compute : 365.10 us (94.6%)
LB move op cnt : 0
LB apply : 3.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1973.00 ns (67.0%)
Info: sink accretion : [sph::Sink][rank=0]
id 0 deltas : mass=1.0000000005838672e-07 r=(9.363827670484637e-09,-7.933381539935632e-08,3.860128556979932e-09) v=(7.259468247848664e-07,1.3648129656060982e-07,-1.2592553154123659e-08) l=(4.573787414219142e-09,2.918125711073405e-08,5.886416149242529e-07)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.937657811889543e-07,1.6868127131743164e-07,-2.3208033413273164e-09)
sum a = (-2.5478751053409354e-18,-1.0842021724855044e-18,-2.0032329202564203e-19)
sum e = 0.050170957358702056
sum de = 0.0007244847383183387
Info: CFL hydro = 0.002554584480463816 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002554584480463816 cfl multiplier : 0.5349094492258231 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5919e+05 | 99979 | 1 | 6.280e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.365806110956838 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.34686148325830074, dt = 0.002554584480463816 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99979.0 min = 99979.0 factor = 1
- strategy "round robin" : max = 94980.0 min = 94980.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99979
max = 99979
avg = 99979
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.15 us (1.9%)
patch tree reduce : 1874.00 ns (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.3%)
LB compute : 360.21 us (94.3%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1914.00 ns (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.108957945225916e-07,3.03217248786303e-07,-3.6104514640090545e-09)
sum a = (-1.8431436932253575e-18,1.5693826446727677e-17,-5.802175688691957e-20)
sum e = 0.05017413740302904
sum de = 0.0007122074931269055
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.02487032773258367
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.073158090886516e-07,3.0864474677547073e-07,-2.991332791792122e-09)
sum a = (1.5178830414797062e-18,2.6834003769016235e-17,-4.616329562535937e-20)
sum e = 0.05017214356418538
sum de = 0.000712508296384135
Info: CFL hydro = 0.0016185961767088881 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0016185961767088881 cfl multiplier : 0.3449698164086077 [sph::Model][rank=0]
Info: Timestep perf 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 | 99979 | 1 | 7.552e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.178060446874959 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.34941606773876455, dt = 0.0016185961767088881 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99979.0 min = 99979.0 factor = 1
- strategy "round robin" : max = 94980.0 min = 94980.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99979
max = 99979
avg = 99979
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.43 us (1.5%)
patch tree reduce : 1763.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 34.41 us (8.1%)
LB compute : 370.90 us (87.2%)
LB move op cnt : 0
LB apply : 4.08 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (69.7%)
Info: sink accretion : [sph::Sink][rank=0]
id 0 deltas : mass=1.0000000005838672e-07 r=(2.147884867820579e-08,-7.683464932038223e-08,3.6333354253087567e-09) v=(6.971354796604326e-07,2.4336421336870387e-07,-3.4966966858505486e-08) l=(1.7927899108578663e-08,3.280112224932725e-08,5.876672102436683e-07)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.218406081789162e-07,1.9527505237317835e-07,-2.007745994031044e-09)
sum a = (-3.0357660829594124e-18,-8.239936510889834e-18,-1.351017550870609e-19)
sum e = 0.0501713630090159
sum de = 0.0007068393660782344
Info: CFL hydro = 0.002799903017157846 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002799903017157846 cfl multiplier : 0.5633132109390718 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5777e+05 | 99978 | 1 | 6.337e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.19515789745439 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.35103466391547344, dt = 0.002799903017157846 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99978.0 min = 99978.0 factor = 1
- strategy "round robin" : max = 94979.1 min = 94979.1 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99978
max = 99978
avg = 99978
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.10 us (1.7%)
patch tree reduce : 1593.00 ns (0.4%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 388.34 us (94.8%)
LB move op cnt : 0
LB apply : 3.81 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.520014749306148e-07,3.4728361869746526e-07,-3.1027864818446076e-09)
sum a = (4.87890977618477e-18,5.5294310796760726e-18,-5.802175688691957e-20)
sum e = 0.050174919684550366
sum de = 0.000691938619808063
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.02713649966902874
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.529694856032516e-07,3.6508877412103703e-07,-2.288693130400219e-09)
sum a = (3.144186300207963e-18,4.228388472693467e-18,-6.162164691275035e-20)
sum e = 0.0501725212389998
sum de = 0.0006922989410935084
Info: CFL hydro = 0.0018475647283896616 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0018475647283896616 cfl multiplier : 0.35443773697969067 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.3223e+05 | 99978 | 1 | 7.561e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.331269888689599 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.35383456693263127, dt = 0.0018475647283896616 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99978.0 min = 99978.0 factor = 1
- strategy "round robin" : max = 94979.1 min = 94979.1 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99978
max = 99978
avg = 99978
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.89 us (1.7%)
patch tree reduce : 1574.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1363.00 ns (0.3%)
LB compute : 376.51 us (94.5%)
LB move op cnt : 0
LB apply : 3.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (68.3%)
Info: sink accretion : [sph::Sink][rank=0]
id 0 deltas : mass=1.0000000005838672e-07 r=(7.672090947863712e-08,2.1899141927959228e-08,4.7084213447683334e-09) v=(-2.693028577260739e-07,6.928088850877013e-07,-1.9953466996354046e-08) l=(-3.692976986054282e-08,2.4733657132704164e-09,5.902447423977529e-07)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.6513459932746627e-07,2.413227543778435e-07,-1.6973199913093771e-09)
sum a = (1.463672932855431e-18,5.312590645178972e-18,-3.6507120026660345e-19)
sum e = 0.05017208998180198
sum de = 0.0006855576936708398
Info: CFL hydro = 0.002947904589623911 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002947904589623911 cfl multiplier : 0.5696251579864605 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5619e+05 | 99977 | 1 | 6.401e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.390926586160353 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3556821316610209, dt = 0.002947904589623911 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99977.0 min = 99977.0 factor = 1
- strategy "round robin" : max = 94978.1 min = 94978.1 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99977
max = 99977
avg = 99977
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.33 us (1.6%)
patch tree reduce : 1483.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1252.00 ns (0.3%)
LB compute : 382.65 us (95.1%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1944.00 ns (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.768263643317155e-07,3.951668388745423e-07,-2.1991723749761064e-09)
sum a = (-2.222614453595284e-18,1.0842021724855044e-18,-5.844527336054672e-20)
sum e = 0.05017570546015149
sum de = 0.000674553265861877
Info: CFL hydro = 0.0036106925318782064 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0036106925318782064 cfl multiplier : 0.7130834386576405 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5886e+05 | 99977 | 1 | 6.293e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.862788502711403 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3586300362506448, dt = 0.001369963749355163 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99977.0 min = 99977.0 factor = 1
- strategy "round robin" : max = 94978.1 min = 94978.1 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99977
max = 99977
avg = 99977
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (1.7%)
patch tree reduce : 1663.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 388.53 us (95.0%)
LB move op cnt : 0
LB apply : 3.50 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.638803238403753e-07,1.9155379486370498e-07,-8.65980306902175e-10)
sum a = (9.215718466126788e-19,9.486769009248164e-18,-4.870439446712227e-20)
sum e = 0.050174546357722505
sum de = 0.0006667383003180728
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.013328517560730677
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6075483849662725e-07,1.9111441690810948e-07,-9.864998100886688e-10)
sum a = (1.0842021724855044e-18,-5.421010862427522e-18,-4.5951537388545793e-20)
sum e = 0.05017397071421082
sum de = 0.0006668123219217431
Info: CFL hydro = 0.0020283126623866607 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020283126623866607 cfl multiplier : 0.40436114621921354 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.3345e+05 | 99977 | 1 | 7.492e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.583105498412713 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 100 [SPH][rank=0]
Info: time since start : 394.105147578 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000009.vtk [VTK Dump][rank=0]
- took 5.51 ms, bandwidth = 969.66 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 : 6.12 us (52.8%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000009.sham [Shamrock Dump][rank=0]
- took 4.94 ms, bandwidth = 2.42 GB/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_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.04 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 681.46 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 696.61 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 674.71 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 690.40 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.054874802 s
Info: compute_slice took 1254.14 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1236.01 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.021632325 s
Info: compute_slice took 1220.07 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1217.40 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 1200.90 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1219.29 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.05 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
sph::RenderFieldGetter compute custom field took : 0.021274612000000002 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000018.npy
---------------- t = 0.36, dt = 0.0020283126623866607 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99977.0 min = 99977.0 factor = 1
- strategy "round robin" : max = 94978.1 min = 94978.1 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99977
max = 99977
avg = 99977
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.49 us (2.3%)
patch tree reduce : 1603.00 ns (0.3%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 464.50 us (94.6%)
LB move op cnt : 0
LB apply : 4.25 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (68.5%)
Info: sink accretion : [sph::Sink][rank=0]
id 0 deltas : mass=1.0000000005838672e-07 r=(-2.0756494578323414e-08,-7.714893520951003e-08,-3.651718292012115e-09) v=(7.212091125288967e-07,-1.4697697918991247e-07,3.1085831255009817e-10) l=(-5.453281129718438e-09,-2.6306050013384537e-08,5.867579525482243e-07)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.8615498825425175e-07,2.8254060282119754e-07,-1.2809500552655388e-09)
sum a = (2.656295322589486e-18,-1.577514160966409e-17,-2.202285662861181e-20)
sum e = 0.050173864868643066
sum de = 0.0006590045978703896
Info: CFL hydro = 0.002981783501643402 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002981783501643402 cfl multiplier : 0.6029074308128091 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5706e+05 | 99976 | 1 | 6.366e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.471019627620418 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.36202831266238666, dt = 0.002981783501643402 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99976.0 min = 99976.0 factor = 1
- strategy "round robin" : max = 94977.2 min = 94977.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99976
max = 99976
avg = 99976
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.66 us (1.5%)
patch tree reduce : 1803.00 ns (0.4%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1353.00 ns (0.3%)
LB compute : 418.62 us (95.3%)
LB move op cnt : 0
LB apply : 3.47 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.609589143930615e-07,4.2753264536885265e-07,-1.914987842963146e-09)
sum a = (-5.421010862427522e-20,-1.870248747537495e-17,1.9841746789431985e-19)
sum e = 0.05017727358794796
sum de = 0.0006388668231118674
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.02903587179710208
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.458349966099165e-07,4.189791694610433e-07,-1.820944300534366e-09)
sum a = (-1.1926223897340549e-18,-1.7401444868392346e-17,1.9651164376299768e-19)
sum e = 0.05017454329077059
sum de = 0.0006392592048766679
Info: CFL hydro = 0.001807418989202682 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001807418989202682 cfl multiplier : 0.36763581027093634 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.2764e+05 | 99976 | 1 | 7.832e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.705136179924958 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3650100961640301, dt = 0.001807418989202682 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99976.0 min = 99976.0 factor = 1
- strategy "round robin" : max = 94977.2 min = 94977.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99976
max = 99976
avg = 99976
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (1.6%)
patch tree reduce : 1703.00 ns (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 401.14 us (94.9%)
LB move op cnt : 0
LB apply : 4.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (73.4%)
Info: sink accretion : [sph::Sink][rank=0]
id 0 deltas : mass=2.9999999995311555e-07 r=(-4.33121248814136e-08,-2.1971366711643687e-07,-2.1450911836150737e-09) v=(2.048266167509709e-06,-3.003234960312733e-07,3.898143781039482e-08) l=(-5.1484347387480914e-08,6.585251641362065e-09,1.7676211870202895e-06)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.312850474257884e-07,2.5265670475928096e-07,-1.1272680346674705e-09)
sum a = (-9.378348791999613e-18,-1.0462550964485118e-17,4.044582323139284e-20)
sum e = 0.050168489653437516
sum de = 0.0006321074969276303
Info: CFL hydro = 0.002812716315474477 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002812716315474477 cfl multiplier : 0.5784238735139575 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5126e+05 | 99973 | 1 | 6.609e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.844599282316752 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.36681751515323274, dt = 0.002812716315474477 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99973.0 min = 99973.0 factor = 1
- strategy "round robin" : max = 94974.3 min = 94974.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99973
max = 99973
avg = 99973
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.49 us (1.4%)
patch tree reduce : 1563.00 ns (0.3%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.2%)
LB compute : 430.97 us (95.2%)
LB move op cnt : 0
LB apply : 4.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (71.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.092488023725216e-07,4.045697109978649e-07,-1.5149854527640407e-09)
sum a = (-4.2825985813177425e-18,-4.716279450311944e-18,-1.2716082120655184e-19)
sum e = 0.05017166862162406
sum de = 0.0006210355938404877
Info: CFL hydro = 0.0034397771766100644 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0034397771766100644 cfl multiplier : 0.718949249009305 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5781e+05 | 99973 | 1 | 6.335e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.9839855587172 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3696302314687072, dt = 0.0034397771766100644 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99973.0 min = 99973.0 factor = 1
- strategy "round robin" : max = 94974.3 min = 94974.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99973
max = 99973
avg = 99973
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.72 us (1.6%)
patch tree reduce : 1703.00 ns (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1111.00 ns (0.3%)
LB compute : 405.43 us (95.1%)
LB move op cnt : 0
LB apply : 3.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.116234674599354e-07,5.123202683798481e-07,-1.4663629751869784e-09)
sum a = (-1.5178830414797062e-18,-5.149960319306146e-18,-2.0807893744893922e-19)
sum e = 0.050174983329242015
sum de = 0.0006005784818596655
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.033498746432865496
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.928802633699509e-07,5.27188439495836e-07,-2.8751738034251995e-10)
sum a = (2.168404344971009e-19,-5.041540102057596e-18,-2.1729042075032973e-19)
sum e = 0.05017135383798102
sum de = 0.0006010986071915592
Info: CFL hydro = 0.0022599674835712793 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022599674835712793 cfl multiplier : 0.406316416336435 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.3135e+05 | 99973 | 1 | 7.611e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.270180927639224 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.37307000864531725, dt = 0.0022599674835712793 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99973.0 min = 99973.0 factor = 1
- strategy "round robin" : max = 94974.3 min = 94974.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99973
max = 99973
avg = 99973
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (1.6%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.2%)
LB compute : 399.46 us (95.2%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (68.1%)
Info: sink accretion : [sph::Sink][rank=0]
id 0 deltas : mass=1.9999999989472883e-07 r=(-3.298010218733189e-08,-4.662296736605682e-08,5.291980430881106e-09) v=(4.4773774726955616e-07,-2.9158705465500437e-07,-4.523912662641459e-08) l=(2.1228275557912612e-08,-5.6381557262117114e-09,1.172473378834058e-06)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.895939877490278e-07,3.459648796718656e-07,-5.396963050142739e-10)
sum a = (-1.0842021724855044e-18,-2.9815559743351372e-18,-1.1229803996019904e-20)
sum e = 0.050168850586185344
sum de = 0.0005891459756472252
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.022014987580817283
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.768462537826232e-07,3.5222070455748694e-07,-5.104662738024396e-11)
sum a = (4.933119884809045e-18,-1.3931997916438732e-17,-4.431702849814101e-20)
sum e = 0.050167281810241354
sum de = 0.0005893967966705259
Info: CFL hydro = 0.001645197403529088 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001645197403529088 cfl multiplier : 0.302105472112145 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.3143e+05 | 99971 | 1 | 7.606e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.696466809752733 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3753299761288885, dt = 0.001645197403529088 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99971.0 min = 99971.0 factor = 1
- strategy "round robin" : max = 94972.4 min = 94972.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99971
max = 99971
avg = 99971
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (1.9%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 336.26 us (94.2%)
LB move op cnt : 0
LB apply : 4.09 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (69.5%)
Info: sink accretion : [sph::Sink][rank=0]
id 0 deltas : mass=1.0000000005838672e-07 r=(-7.210651210170031e-08,-3.446641137438652e-08,-6.828658131518877e-10) v=(3.4997281018682273e-07,-6.507507588916818e-07,-1.5750532716580175e-09) l=(-3.89458238295801e-09,-3.5361423341562496e-09,5.897247751158091e-07)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7410255787174546e-07,2.561088994599509e-07,-2.4708589376802267e-11)
sum a = (-4.119968255444917e-18,-4.33138767907959e-17,-1.3864870555368829e-19)
sum e = 0.050166346046593285
sum de = 0.0005781133812879321
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01600551201300291
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.674611437095516e-07,2.515142297499493e-07,8.600736407759471e-11)
sum a = (-8.782037597132586e-18,-5.421010862427522e-19,-1.4972630831699843e-19)
sum e = 0.05016551406957602
sum de = 0.0005782297321387395
Info: CFL hydro = 0.0014346508328363856 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0014346508328363856 cfl multiplier : 0.26736849070404833 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.3187e+05 | 99970 | 1 | 7.581e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.812836920176541 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3769751735324176, dt = 0.0014346508328363856 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99970.0 min = 99970.0 factor = 1
- strategy "round robin" : max = 94971.5 min = 94971.5 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99970
max = 99970
avg = 99970
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.14 us (2.0%)
patch tree reduce : 1763.00 ns (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 335.68 us (94.2%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (67.5%)
Info: sink accretion : [sph::Sink][rank=0]
id 0 deltas : mass=1.9999999989472883e-07 r=(-5.3937797250524626e-08,-1.4898804554231064e-07,2.97771804149241e-10) v=(1.386568612257773e-06,-4.363598368835233e-07,2.4088886151917935e-08) l=(-1.911289485185457e-08,8.974733331660572e-09,1.1737950197699948e-06)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3332946972230652e-07,2.1865382346829065e-07,1.3555162232114923e-10)
sum a = (3.5236570605778894e-18,-7.806255641895632e-18,-2.541098841762901e-20)
sum e = 0.05016157059545308
sum de = 0.0005723584668696379
Info: CFL hydro = 0.002710662449902615 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002710662449902615 cfl multiplier : 0.5115789938026989 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5801e+05 | 99968 | 1 | 6.327e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.16327244492093 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.378409824365254, dt = 0.001590175634746005 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99968.0 min = 99968.0 factor = 1
- strategy "round robin" : max = 94969.6 min = 94969.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99968
max = 99968
avg = 99968
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.25 us (2.0%)
patch tree reduce : 1894.00 ns (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 338.06 us (93.9%)
LB move op cnt : 0
LB apply : 3.95 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (70.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.5566456931090816e-07,2.468528558276307e-07,1.7319418444012717e-10)
sum a = (1.734723475976807e-18,9.269928574751063e-18,-1.8740603958001395e-20)
sum e = 0.05016261780162757
sum de = 0.0005659609849811573
Info: CFL hydro = 0.0035254991817594296 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0035254991817594296 cfl multiplier : 0.6743859958684659 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5336e+05 | 99968 | 1 | 6.518e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.782378309748482 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 109 [SPH][rank=0]
Info: time since start : 417.700858765 (s) [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.08 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.05 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 682.71 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 680.66 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 677.70 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 680.40 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.051363711000000006 s
Info: compute_slice took 1238.30 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1188.43 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.021810507 s
Info: compute_slice took 1213.69 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1230.04 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 1193.60 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1193.77 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.05 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
sph::RenderFieldGetter compute custom field took : 0.018020512000000002 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000019.npy
---------------- t = 0.38, dt = 0.0035254991817594296 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99968.0 min = 99968.0 factor = 1
- strategy "round robin" : max = 94969.6 min = 94969.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99968
max = 99968
avg = 99968
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.38 us (3.1%)
patch tree reduce : 1773.00 ns (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 405.93 us (93.5%)
LB move op cnt : 0
LB apply : 3.99 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.59670251497308e-07,5.563990880657284e-07,6.051924914068322e-10)
sum a = (-2.8731357570865868e-18,5.421010862427522e-20,1.0423799207148234e-19)
sum e = 0.05016761461872792
sum de = 0.0005484183007010449
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.034266175428790804
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.5080765256367e-07,5.683862748361718e-07,4.671078284774642e-10)
sum a = (-5.4752209710517974e-18,-5.2583805365546965e-18,9.793818452627848e-20)
sum e = 0.050163810576853055
sum de = 0.0005489350632140206
Info: CFL hydro = 0.0019895422017690333 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019895422017690333 cfl multiplier : 0.391461998622822 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.3160e+05 | 99968 | 1 | 7.596e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.70771930002197 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.38352549918175943, dt = 0.0019895422017690333 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99968.0 min = 99968.0 factor = 1
- strategy "round robin" : max = 94969.6 min = 94969.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99968
max = 99968
avg = 99968
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.63 us (1.5%)
patch tree reduce : 1603.00 ns (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.2%)
LB compute : 430.11 us (95.3%)
LB move op cnt : 0
LB apply : 3.50 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (69.7%)
Info: sink accretion : [sph::Sink][rank=0]
id 0 deltas : mass=1.0000000005838672e-07 r=(5.5273385357367053e-08,-5.762911127982615e-08,-4.618588309297691e-09) v=(5.061315630595442e-07,5.252552060684557e-07,2.1135486373618477e-08) l=(1.2227080022048632e-08,-3.4896330467502315e-08,5.817527862819897e-07)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.113663751655346e-07,3.2066886211891334e-07,5.130399062564406e-10)
sum a = (-2.710505431213761e-19,-1.2468324983583301e-17,1.1276126110322873e-19)
sum e = 0.05016343941104786
sum de = 0.0005371006238487902
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01934248061451639
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.0703107071571153e-07,3.2105610735540095e-07,1.3249176730387846e-10)
sum a = (1.0299920638612292e-18,6.342582709040201e-18,1.2043749718772083e-19)
sum e = 0.050162223852818495
sum de = 0.000537264633395911
Info: CFL hydro = 0.0016205332156606935 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0016205332156606935 cfl multiplier : 0.2971539995409407 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.3241e+05 | 99967 | 1 | 7.550e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.486655267498069 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3855150413835285, dt = 0.0016205332156606935 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99967.0 min = 99967.0 factor = 1
- strategy "round robin" : max = 94968.6 min = 94968.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99967
max = 99967
avg = 99967
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.84 us (1.9%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1363.00 ns (0.3%)
LB compute : 397.01 us (94.9%)
LB move op cnt : 0
LB apply : 3.36 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (62.0%)
Info: sink accretion : [sph::Sink][rank=0]
id 0 deltas : mass=1.0000000005838672e-07 r=(1.9509705095007804e-08,-7.7463141797045e-08,-3.765706434057138e-09) v=(6.989742751693019e-07,2.2549781858673986e-07,1.2744000924664627e-08) l=(-1.2885360922193855e-09,-2.8780483108035908e-08,5.853583446883397e-07)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.502628375832607e-07,2.6124689985543563e-07,2.13699212135429e-10)
sum a = (2.5478751053409354e-18,8.673617379884035e-19,-7.723881687775151e-20)
sum e = 0.05016119745450209
sum de = 0.0005303875653540521
Info: CFL hydro = 0.002877343389369445 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002877343389369445 cfl multiplier : 0.5314359996939605 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5926e+05 | 99966 | 1 | 6.277e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.294419794598547 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3871355745991892, dt = 0.002877343389369445 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99966.0 min = 99966.0 factor = 1
- strategy "round robin" : max = 94967.7 min = 94967.7 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99966
max = 99966
avg = 99966
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (1.5%)
patch tree reduce : 1663.00 ns (0.4%)
gen split merge : 1152.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.2%)
LB compute : 398.13 us (95.0%)
LB move op cnt : 0
LB apply : 4.12 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (70.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.3779009664293266e-07,4.715903570094829e-07,3.787433365428134e-10)
sum a = (5.963111948670274e-19,8.61940727125976e-18,-3.784119691858587e-19)
sum e = 0.05016443501874695
sum de = 0.0005179695146520376
Info: CFL hydro = 0.0036397705153573675 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0036397705153573675 cfl multiplier : 0.6876239997959738 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5791e+05 | 99966 | 1 | 6.331e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.362528253778923 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.39001291798855864, dt = 0.0036397705153573675 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99966.0 min = 99966.0 factor = 1
- strategy "round robin" : max = 94967.7 min = 94967.7 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99966
max = 99966
avg = 99966
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.39 us (1.5%)
patch tree reduce : 1502.00 ns (0.3%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.2%)
LB compute : 466.37 us (95.6%)
LB move op cnt : 0
LB apply : 3.78 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1954.00 ns (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.393917352935525e-07,6.125758310060605e-07,8.998243604714523e-10)
sum a = (1.1384122811097797e-18,-1.6263032587282567e-19,-2.329340604949326e-20)
sum e = 0.05016781532602747
sum de = 0.0004995953290829425
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.035421962780642864
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.093327492588021e-07,6.310882295529848e-07,1.881582085295618e-09)
sum a = (-4.336808689942018e-19,2.439454888092385e-18,-1.334076891925523e-20)
sum e = 0.05016375602207598
sum de = 0.0005001196121005848
Info: CFL hydro = 0.0020419992837602194 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020419992837602194 cfl multiplier : 0.39587466659865794 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.3117e+05 | 99966 | 1 | 7.621e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.192762128826303 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.393652688503916, dt = 0.0020419992837602194 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99966.0 min = 99966.0 factor = 1
- strategy "round robin" : max = 94967.7 min = 94967.7 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99966
max = 99966
avg = 99966
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.05 us (1.6%)
patch tree reduce : 1703.00 ns (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 407.44 us (95.0%)
LB move op cnt : 0
LB apply : 3.83 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (66.8%)
Info: sink accretion : [sph::Sink][rank=0]
id 0 deltas : mass=1.0000000005838672e-07 r=(-7.937526157240155e-08,-8.499904285310845e-09,3.1898768767857646e-09) v=(1.0491444925724036e-07,-7.272262392352604e-07,-5.1046804905246105e-09) l=(2.3614764321706254e-08,-6.255979602551699e-10,5.859506947823095e-07)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.8540059973986465e-07,3.537556225086298e-07,9.692674656894791e-10)
sum a = (-3.3068166260807885e-18,2.1846673775582914e-17,2.625802136488331e-19)
sum e = 0.050163352615271585
sum de = 0.0004910792720285819
Info: CFL hydro = 0.003037633582095976 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.003037633582095976 cfl multiplier : 0.5972497777324386 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5851e+05 | 99965 | 1 | 6.307e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.656355139012897 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3956946877876762, dt = 0.003037633582095976 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99965.0 min = 99965.0 factor = 1
- strategy "round robin" : max = 94966.8 min = 94966.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99965
max = 99965
avg = 99965
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.90 us (1.8%)
patch tree reduce : 2.09 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 367.13 us (94.6%)
LB move op cnt : 0
LB apply : 4.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.159787079050317e-07,5.354995852281711e-07,1.8193595365565706e-09)
sum a = (7.589415207398531e-19,5.421010862427522e-18,5.1880768019325896e-20)
sum e = 0.050166372520480805
sum de = 0.0004754926051564413
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.029592219159322742
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.930261769390965e-07,5.459535888511886e-07,2.399159112676758e-09)
sum a = (-2.9815559743351372e-18,-8.890457814381136e-18,4.912791094074942e-20)
sum e = 0.050163543396935836
sum de = 0.00047582590156666776
Info: CFL hydro = 0.0018246728083826317 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0018246728083826317 cfl multiplier : 0.36574992591081285 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.3082e+05 | 99965 | 1 | 7.642e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.310306397962513 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.39873232136977216, dt = 0.0012676786302278642 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99965.0 min = 99965.0 factor = 1
- strategy "round robin" : max = 94966.8 min = 94966.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99965
max = 99965
avg = 99965
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.18 us (1.8%)
patch tree reduce : 1573.00 ns (0.4%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1332.00 ns (0.3%)
LB compute : 369.60 us (94.5%)
LB move op cnt : 0
LB apply : 3.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1963.00 ns (67.8%)
Info: sink accretion : [sph::Sink][rank=0]
id 0 deltas : mass=1.0000000005838672e-07 r=(-7.738767064268948e-08,-1.9841789155622904e-08,1.785846564566343e-09) v=(2.0640194319594858e-07,-7.12008339469861e-07,-1.1482932725808281e-08) l=(1.498230045826888e-08,-5.170632832946234e-09,5.917925693232189e-07)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6374466312337854e-07,2.275468733971865e-07,9.69117281786012e-10)
sum a = (-1.734723475976807e-18,-5.9631119486702744e-18,1.6114801821513064e-19)
sum e = 0.05016189087659725
sum de = 0.00047017577752817474
Info: CFL hydro = 0.0028567956398653904 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0028567956398653904 cfl multiplier : 0.5771666172738752 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5899e+05 | 99964 | 1 | 6.287e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.258382474011572 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 117 [SPH][rank=0]
Info: time since start : 440.529314208 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000010.vtk [VTK Dump][rank=0]
- took 5.57 ms, bandwidth = 957.88 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.51 us (53.6%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000010.sham [Shamrock Dump][rank=0]
- took 4.94 ms, bandwidth = 2.41 GB/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_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 681.98 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 679.93 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 674.62 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 675.67 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.057790197 s
Info: compute_slice took 1240.90 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1191.93 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.022802721 s
Info: compute_slice took 1221.56 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1206.48 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 1183.66 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1179.12 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.05 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
sph::RenderFieldGetter compute custom field took : 0.015160933000000001 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000020.npy
---------------- t = 0.4, dt = 0.0028567956398653904 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99964.0 min = 99964.0 factor = 1
- strategy "round robin" : max = 94965.8 min = 94965.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99964
max = 99964
avg = 99964
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.65 us (2.7%)
patch tree reduce : 2.08 us (0.5%)
gen split merge : 1142.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1093.00 ns (0.2%)
LB compute : 433.10 us (93.7%)
LB move op cnt : 0
LB apply : 4.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.641013038311805e-07,5.182564728106447e-07,2.4000983360479404e-09)
sum a = (-3.3610267347050637e-18,-4.662069341687669e-18,-5.1033735072071595e-20)
sum e = 0.05016522301152006
sum de = 0.000457244808574756
Info: CFL hydro = 0.003578205924249922 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.003578205924249922 cfl multiplier : 0.7181110781825835 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5837e+05 | 99964 | 1 | 6.312e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.29291126597899 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.40285679563986543, dt = 0.003578205924249922 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99964.0 min = 99964.0 factor = 1
- strategy "round robin" : max = 94965.8 min = 94965.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99964
max = 99964
avg = 99964
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.22 us (1.8%)
patch tree reduce : 1563.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 388.86 us (94.7%)
LB move op cnt : 0
LB apply : 4.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.4016609854109236e-07,6.623850667077897e-07,3.4112154398434198e-09)
sum a = (2.8189256484623115e-18,1.5720931501039814e-18,4.3029273720518457e-19)
sum e = 0.05016825593370127
sum de = 0.00043746656748801336
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.034829930695046536
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.2286956246335257e-07,6.890084451251632e-07,3.6825610972438455e-09)
sum a = (-5.177065373618284e-18,-4.336808689942018e-19,4.324103195733203e-19)
sum e = 0.05016432460946245
sum de = 0.0004379332064953476
Info: CFL hydro = 0.0021175923801827184 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021175923801827184 cfl multiplier : 0.4060370260608612 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.3146e+05 | 99964 | 1 | 7.604e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.94045205834271 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.40643500156411533, dt = 0.0021175923801827184 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99964.0 min = 99964.0 factor = 1
- strategy "round robin" : max = 94965.8 min = 94965.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99964
max = 99964
avg = 99964
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.39 us (1.8%)
patch tree reduce : 1763.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1133.00 ns (0.3%)
LB compute : 381.77 us (94.5%)
LB move op cnt : 0
LB apply : 4.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (67.6%)
Info: sink accretion : [sph::Sink][rank=0]
id 0 deltas : mass=1.0000000005838672e-07 r=(2.2433764816731262e-08,7.661335556819954e-08,-1.6912578764667773e-09) v=(-7.188121760150559e-07,1.6538536747194823e-07,2.466369780579417e-08) l=(2.1551342508264746e-08,6.6593853438155575e-09,5.875364250203358e-07)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.5004500492386596e-07,4.0826960998270915e-07,2.3528547729713983e-09)
sum a = (6.396792817664476e-18,2.222614453595284e-18,-5.336307567702092e-20)
sum e = 0.05016390191544843
sum de = 0.0004281835815698807
Info: CFL hydro = 0.0032356276630726203 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0032356276630726203 cfl multiplier : 0.6040246840405742 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5915e+05 | 99963 | 1 | 6.281e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.137014391337754 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.40855259394429805, dt = 0.0032356276630726203 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99963.0 min = 99963.0 factor = 1
- strategy "round robin" : max = 94964.8 min = 94964.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99963
max = 99963
avg = 99963
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.86 us (1.7%)
patch tree reduce : 1623.00 ns (0.4%)
gen split merge : 1182.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 377.73 us (94.8%)
LB move op cnt : 0
LB apply : 3.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1934.00 ns (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.710458062201725e-07,6.313867145540844e-07,3.605718331917532e-09)
sum a = (2.846030702774449e-18,-2.0599841277224584e-18,2.668153783851046e-20)
sum e = 0.050167098305017976
sum de = 0.0004087795726809802
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.031521336515764484
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.3465018457604686e-07,6.506371461664462e-07,4.058977462054189e-09)
sum a = (5.041540102057596e-18,3.3068166260807885e-18,2.922263668027336e-20)
sum e = 0.050163880511247545
sum de = 0.00040913249187984825
Info: CFL hydro = 0.0020036608388525035 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020036608388525035 cfl multiplier : 0.3680082280135248 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.2576e+05 | 99963 | 1 | 7.949e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.654054416972405 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.41178822160737066, dt = 0.0020036608388525035 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99963.0 min = 99963.0 factor = 1
- strategy "round robin" : max = 94964.8 min = 94964.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99963
max = 99963
avg = 99963
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.67 us (1.8%)
patch tree reduce : 1943.00 ns (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1263.00 ns (0.3%)
LB compute : 404.70 us (94.8%)
LB move op cnt : 0
LB apply : 3.89 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (67.9%)
Info: sink accretion : [sph::Sink][rank=0]
id 0 deltas : mass=1.9999999989472883e-07 r=(-1.498698211168852e-07,5.5494824747278306e-08,2.6847710677244303e-10) v=(-4.6347399781273267e-07,-1.3980718313293122e-06,-1.0047246850939016e-08) l=(-9.095612762701407e-10,-8.078945465938616e-09,1.1755927598717501e-06)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.060968215016263e-07,4.024393269609939e-07,2.503641556121548e-09)
sum a = (-2.710505431213761e-18,1.0191500421363742e-17,3.4304834363799164e-20)
sum e = 0.05016050574610338
sum de = 0.00039983436202109746
Info: CFL hydro = 0.003176245065637422 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.003176245065637422 cfl multiplier : 0.5786721520090166 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5846e+05 | 99961 | 1 | 6.308e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.434214977304434 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.41379188244622317, dt = 0.003176245065637422 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99961.0 min = 99961.0 factor = 1
- strategy "round robin" : max = 94962.9 min = 94962.9 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99961
max = 99961
avg = 99961
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.68 us (1.9%)
patch tree reduce : 1723.00 ns (0.4%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 379.44 us (94.8%)
LB move op cnt : 0
LB apply : 3.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.174340821207838e-07,6.455835749428977e-07,4.237143733849496e-09)
sum a = (-8.131516293641283e-19,3.5236570605778894e-18,5.802175688691957e-20)
sum e = 0.05016361099383101
sum de = 0.0003830929220618577
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.030901128763954098
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.940209219076873e-07,6.480129434577049e-07,4.615346207453089e-09)
sum a = (-1.5449880957918438e-18,2.7647155398380363e-18,6.818615225397118e-20)
sum e = 0.05016051442423911
sum de = 0.00038341800600169275
Info: CFL hydro = 0.001938394225800572 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001938394225800572 cfl multiplier : 0.3595573840030055 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.3241e+05 | 99961 | 1 | 7.549e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.146387223644705 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4169681275118606, dt = 0.001938394225800572 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99961.0 min = 99961.0 factor = 1
- strategy "round robin" : max = 94962.9 min = 94962.9 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99961
max = 99961
avg = 99961
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (1.7%)
patch tree reduce : 1994.00 ns (0.5%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 357.81 us (94.5%)
LB move op cnt : 0
LB apply : 3.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1924.00 ns (67.6%)
Info: sink accretion : [sph::Sink][rank=0]
id 0 deltas : mass=1.0000000005838672e-07 r=(-4.5547503519540234e-08,-6.574236707070789e-08,-1.7349293583608886e-10) v=(6.175206441324865e-07,-3.999740998847121e-07,-1.1883665016516486e-08) l=(7.08480753705117e-09,-6.459900629044584e-09,5.878848131443596e-07)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7942248237105417e-07,3.948564113477864e-07,2.7634296722837016e-09)
sum a = (-4.743384504624082e-18,1.3010426069826053e-18,-1.6559494118821572e-19)
sum e = 0.05015969424517327
sum de = 0.00037440493599095445
Info: CFL hydro = 0.003146594606212583 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.003146594606212583 cfl multiplier : 0.5730382560020036 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5675e+05 | 99960 | 1 | 6.377e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.94281470153943 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.41890652173766113, dt = 0.001093478262338854 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99960.0 min = 99960.0 factor = 1
- strategy "round robin" : max = 94962.0 min = 94962.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99960
max = 99960
avg = 99960
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.13 us (1.7%)
patch tree reduce : 1733.00 ns (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 397.77 us (94.9%)
LB move op cnt : 0
LB apply : 3.85 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.746904269233641e-08,2.2516410070278894e-07,1.671622179106912e-09)
sum a = (1.870248747537495e-18,7.914675859144182e-18,-5.590417451878382e-20)
sum e = 0.050159313583468056
sum de = 0.00036950952309058356
Info: CFL hydro = 0.0038694886732052315 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0038694886732052315 cfl multiplier : 0.715358837334669 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.6068e+05 | 99960 | 1 | 6.221e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.327578453152583 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 125 [SPH][rank=0]
Info: time since start : 463.16135785100005 (s) [SPH][rank=0]
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_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.05 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 671.12 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 681.98 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 669.62 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 676.18 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.051950522000000006 s
Info: compute_slice took 1229.15 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1192.58 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.022061553 s
Info: compute_slice took 1197.47 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1202.08 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 1181.98 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_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.05 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
sph::RenderFieldGetter compute custom field took : 0.019431076000000002 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000021.npy
---------------- t = 0.42, dt = 0.0038694886732052315 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99960.0 min = 99960.0 factor = 1
- strategy "round robin" : max = 94962.0 min = 94962.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99960
max = 99960
avg = 99960
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.13 us (2.5%)
patch tree reduce : 1703.00 ns (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.2%)
LB compute : 456.13 us (94.4%)
LB move op cnt : 0
LB apply : 4.42 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.3736173116275794e-07,8.008200632904125e-07,6.080181426995907e-09)
sum a = (2.3310346708438345e-18,-5.7462715141731735e-18,-3.7692966152816365e-20)
sum e = 0.050164935515604796
sum de = 0.0003510301011845873
Info: CFL hydro = 0.004165281074111009 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004165281074111009 cfl multiplier : 0.8102392248897793 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.4861e+05 | 99960 | 1 | 6.727e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.709295065852075 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.42386948867320523, dt = 0.004165281074111009 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99960.0 min = 99960.0 factor = 1
- strategy "round robin" : max = 94962.0 min = 94962.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99960
max = 99960
avg = 99960
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.95 us (1.7%)
patch tree reduce : 1754.00 ns (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 376.32 us (94.6%)
LB move op cnt : 0
LB apply : 3.95 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.340240723029758e-07,8.767194525338724e-07,7.170891601244401e-09)
sum a = (-1.0842021724855044e-18,-1.3173056395698879e-17,3.222960364302613e-19)
sum e = 0.050167091570466664
sum de = 0.00033134947428033076
Info: CFL hydro = 0.004909809598874041 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004909809598874041 cfl multiplier : 0.8734928165931862 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5717e+05 | 99960 | 1 | 6.360e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.576444469237764 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.42803476974731625, dt = 0.004909809598874041 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99960.0 min = 99960.0 factor = 1
- strategy "round robin" : max = 94962.0 min = 94962.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99960
max = 99960
avg = 99960
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.07 us (1.6%)
patch tree reduce : 1563.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1343.00 ns (0.3%)
LB compute : 414.87 us (95.0%)
LB move op cnt : 0
LB apply : 3.69 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (70.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.5608532932140274e-07,1.050651931978203e-06,9.24269967158854e-09)
sum a = (5.827586677109586e-19,-5.366800753803247e-18,2.625802136488331e-19)
sum e = 0.0501707432670575
sum de = 0.00030570197800829953
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.047832193400943
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.970389503564229e-07,1.0751984503295885e-06,1.0807853253721489e-08)
sum a = (4.87890977618477e-19,-8.890457814381136e-18,2.354751593366955e-19)
sum e = 0.05016333223379127
sum de = 0.0003065562290739232
Info: CFL hydro = 0.002528121297730054 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002528121297730054 cfl multiplier : 0.45783093886439535 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.2883e+05 | 99960 | 1 | 7.759e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.779452957243933 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4329445793461903, dt = 0.002528121297730054 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99960.0 min = 99960.0 factor = 1
- strategy "round robin" : max = 94962.0 min = 94962.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99960
max = 99960
avg = 99960
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.36 us (1.7%)
patch tree reduce : 1633.00 ns (0.4%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 409.67 us (94.9%)
LB move op cnt : 0
LB apply : 4.09 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (70.7%)
Info: sink accretion : [sph::Sink][rank=0]
id 0 deltas : mass=1.0000000005838672e-07 r=(-7.299968102354411e-08,3.243462719815937e-08,3.374710610426783e-09) v=(-2.848137072622957e-07,-6.797079697479725e-07,-2.2489041655597307e-08) l=(1.572677330863125e-08,-2.581607267324582e-08,5.883124087152254e-07)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5218200430989245e-07,5.536239941484998e-07,5.309177145162301e-09)
sum a = (0,-6.342582709040201e-18,3.8116482626443515e-20)
sum e = 0.05016333320204368
sum de = 0.00028683182857444834
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.02461310280544074
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5559228215584347e-07,5.735395074887286e-07,5.3335548683673085e-09)
sum a = (-2.3310346708438345e-18,4.824699667560495e-18,4.489274620447792e-20)
sum e = 0.05016135907467812
sum de = 0.00028702751373866405
Info: CFL hydro = 0.0017394974616856663 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0017394974616856663 cfl multiplier : 0.3192769796214651 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.1829e+05 | 99959 | 1 | 8.450e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.770390191549119 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.43547270064392035, dt = 0.0017394974616856663 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99959.0 min = 99959.0 factor = 1
- strategy "round robin" : max = 94961.0 min = 94961.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99959
max = 99959
avg = 99959
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.58 us (1.7%)
patch tree reduce : 1673.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1242.00 ns (0.3%)
LB compute : 363.89 us (94.4%)
LB move op cnt : 0
LB apply : 3.60 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (69.3%)
Info: sink accretion : [sph::Sink][rank=0]
id 0 deltas : mass=2.9999999995311555e-07 r=(1.5236156356405451e-07,1.5988784851806982e-07,-4.82154085616665e-09) v=(-1.535277208528435e-06,1.3297511389571912e-06,1.762847104862826e-08) l=(4.0957628953755217e-08,-3.793596322267612e-09,1.7626765935926293e-06)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0724883114968619e-07,3.9574457337826637e-07,3.875711842393495e-09)
sum a = (8.131516293641283e-19,9.75781955236954e-19,-3.8878812278972386e-19)
sum e = 0.05015466344936114
sum de = 0.0002769527765990793
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.016857273425330516
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0636995454376763e-07,3.975788958714296e-07,3.5967545521190872e-09)
sum a = (1.5720931501039814e-18,-8.673617379884035e-19,-3.9810548520952116e-19)
sum e = 0.05015372993623536
sum de = 0.00027708085376432716
Info: CFL hydro = 0.0014747382350311254 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0014747382350311254 cfl multiplier : 0.2730923265404884 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.2662e+05 | 99956 | 1 | 7.894e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.932516400422291 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.437212198105606, dt = 0.0014747382350311254 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99956.0 min = 99956.0 factor = 1
- strategy "round robin" : max = 94958.2 min = 94958.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99956
max = 99956
avg = 99956
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.66 us (1.7%)
patch tree reduce : 1874.00 ns (0.4%)
gen split merge : 1002.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.2%)
LB compute : 426.84 us (95.0%)
LB move op cnt : 0
LB apply : 4.15 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (71.2%)
Info: sink accretion : [sph::Sink][rank=0]
id 0 deltas : mass=1.0000000005838672e-07 r=(7.889195113268212e-08,1.2640156250539716e-08,-2.783974486220303e-09) v=(-1.4244662344430937e-07,7.308671443885377e-07,-7.213360415742282e-10) l=(2.023047186405777e-08,4.651607612504703e-09,5.944086244035143e-07)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.054470284764024e-08,3.3737439531992087e-07,3.1845089757365864e-09)
sum a = (-1.2061749168901237e-18,4.0115480381963664e-18,-1.0079692072326174e-19)
sum e = 0.0501520317675235
sum de = 0.00027026319926871917
Info: CFL hydro = 0.0027626116943033807 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027626116943033807 cfl multiplier : 0.5153948843603255 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5919e+05 | 99955 | 1 | 6.279e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.455469982762544 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.43868693634063716, dt = 0.0013130636593628453 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99955.0 min = 99955.0 factor = 1
- strategy "round robin" : max = 94957.2 min = 94957.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99955
max = 99955
avg = 99955
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.17 us (2.0%)
patch tree reduce : 1713.00 ns (0.5%)
gen split merge : 1022.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1533.00 ns (0.4%)
LB compute : 340.11 us (94.0%)
LB move op cnt : 0
LB apply : 4.01 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.643711174637946e-08,3.0145654651329277e-07,2.7875492352954197e-09)
sum a = (-1.7076184216646695e-18,5.366800753803247e-18,6.522153693858113e-20)
sum e = 0.050152243265392006
sum de = 0.00026047971836986445
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.012788298703616429
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.728401299922794e-08,2.963315515231748e-07,2.67980001250939e-09)
sum a = (-1.951563910473908e-18,7.047314121155779e-19,7.538593230563273e-20)
sum e = 0.05015171223664231
sum de = 0.00026051187072273697
Info: CFL hydro = 0.0019351584900187916 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019351584900187916 cfl multiplier : 0.33846496145344185 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.3308e+05 | 99955 | 1 | 7.511e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.29352618009284 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 132 [SPH][rank=0]
Info: time since start : 485.40003279200005 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000011.vtk [VTK Dump][rank=0]
- took 5.59 ms, bandwidth = 955.44 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.01 us (56.1%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000011.sham [Shamrock Dump][rank=0]
- took 4.89 ms, bandwidth = 2.44 GB/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_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.04 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 668.49 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 740.18 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 664.14 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 678.48 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.05260054 s
Info: compute_slice took 1215.58 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1174.73 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.024198236 s
Info: compute_slice took 1190.32 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1190.37 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 1169.93 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1195.34 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.05 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
sph::RenderFieldGetter compute custom field took : 0.019525721000000003 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000022.npy
---------------- t = 0.44, dt = 0.0019351584900187916 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99955.0 min = 99955.0 factor = 1
- strategy "round robin" : max = 94957.2 min = 94957.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99955
max = 99955
avg = 99955
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.79 us (2.6%)
patch tree reduce : 1704.00 ns (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.2%)
LB compute : 424.65 us (94.2%)
LB move op cnt : 0
LB apply : 3.97 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (66.2%)
Info: sink accretion : [sph::Sink][rank=0]
id 0 deltas : mass=1.9999999989472883e-07 r=(8.473472183345868e-08,-1.2385555867979702e-07,-3.3984527512766536e-09) v=(1.1067192385395206e-06,8.187055546781599e-07,5.6879558206680276e-08) l=(-2.0574779887510127e-08,-4.4571677212233737e-08,1.1741164625591223e-06)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1465239332956393e-07,4.362650563371613e-07,4.10759573883403e-09)
sum a = (9.622294280808852e-19,1.5829351718288365e-17,-8.470329472543003e-21)
sum e = 0.05014791412882138
sum de = 0.00024964668097052987
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.018778084694396385
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0851446222537688e-07,4.335834956230456e-07,3.919656087497042e-09)
sum a = (-2.520770051028798e-18,2.710505431213761e-19,4.235164736271502e-21)
sum e = 0.050146763522641184
sum de = 0.00024977476159318156
Info: CFL hydro = 0.0015964134746623783 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0015964134746623783 cfl multiplier : 0.27948832048448063 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.3152e+05 | 99953 | 1 | 7.600e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.166504430327638 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4419351584900188, dt = 0.0015964134746623783 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99953.0 min = 99953.0 factor = 1
- strategy "round robin" : max = 94955.3 min = 94955.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99953
max = 99953
avg = 99953
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.53 us (1.6%)
patch tree reduce : 1592.00 ns (0.4%)
gen split merge : 921.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1033.00 ns (0.3%)
LB compute : 382.74 us (94.8%)
LB move op cnt : 0
LB apply : 3.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1964.00 ns (66.4%)
Info: sink accretion : [sph::Sink][rank=0]
id 0 deltas : mass=1.0000000005838672e-07 r=(2.6407100107608123e-08,-7.546876158201924e-08,-2.3735493835333922e-09) v=(6.858304831519857e-07,2.6638489820537813e-07,2.6866277161596174e-08) l=(-1.3895674259422213e-08,-2.3347793290270828e-08,5.877630327546219e-07)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.98269272868506e-08,3.5746855266601843e-07,3.302661638579675e-09)
sum a = (-1.5178830414797062e-18,4.174178364069192e-18,-1.2536087619363645e-19)
sum e = 0.050145218721594435
sum de = 0.00024054501931822822
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.015544408804156452
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.84646784762562e-08,3.563151199754895e-07,3.278352619559567e-09)
sum a = (-9.0801931945661e-19,6.179952383167375e-18,-1.4653669987499396e-19)
sum e = 0.050144435660357464
sum de = 0.00024061111067663344
Info: CFL hydro = 0.0014673406630297127 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0014673406630297127 cfl multiplier : 0.25982944016149356 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.3236e+05 | 99952 | 1 | 7.551e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.610750756825412 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4435315719646812, dt = 0.0014673406630297127 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99952.0 min = 99952.0 factor = 1
- strategy "round robin" : max = 94954.4 min = 94954.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99952
max = 99952
avg = 99952
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (1.7%)
patch tree reduce : 1764.00 ns (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1021.00 ns (0.3%)
LB compute : 382.55 us (94.7%)
LB move op cnt : 0
LB apply : 3.62 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (68.1%)
Info: sink accretion : [sph::Sink][rank=0]
id 0 deltas : mass=1.0000000005838672e-07 r=(6.340854621149182e-08,-4.8708361249891026e-08,-9.360789112565414e-10) v=(4.204810775991025e-07,5.91945832818474e-07,2.2933585305211794e-08) l=(-5.624532686043518e-09,-1.8468837920229692e-08,5.800188232148522e-07)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.167086121686718e-08,3.2745244288805804e-07,3.0225514592375198e-09)
sum a = (-1.734723475976807e-18,4.87890977618477e-19,2.0244087439377778e-19)
sum e = 0.050142799118022024
sum de = 0.00023399498891063685
Info: CFL hydro = 0.002831660617489689 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002831660617489689 cfl multiplier : 0.5065529601076624 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5890e+05 | 99951 | 1 | 6.290e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.397725448867725 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4449989126277109, dt = 0.002831660617489689 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99951.0 min = 99951.0 factor = 1
- strategy "round robin" : max = 94953.4 min = 94953.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99951
max = 99951
avg = 99951
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.75 us (1.6%)
patch tree reduce : 1572.00 ns (0.4%)
gen split merge : 1182.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 405.22 us (95.1%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4886549308950898e-07,6.346511107601866e-07,5.985508676731018e-09)
sum a = (1.6534083130403943e-18,-6.613633252161577e-18,-2.346281263894412e-19)
sum e = 0.050145238034071664
sum de = 0.00022117533836685835
Info: CFL hydro = 0.003888502678939362 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.003888502678939362 cfl multiplier : 0.6710353067384416 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5676e+05 | 99951 | 1 | 6.376e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.98745774981073 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4478305732452006, dt = 0.003888502678939362 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99951.0 min = 99951.0 factor = 1
- strategy "round robin" : max = 94953.4 min = 94953.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99951
max = 99951
avg = 99951
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.97 us (1.7%)
patch tree reduce : 1764.00 ns (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 381.75 us (94.7%)
LB move op cnt : 0
LB apply : 4.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (71.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8295965658346675e-07,8.780709021894252e-07,8.670590253112775e-09)
sum a = (-2.439454888092385e-19,-1.4203048459560108e-17,4.2436350657440447e-19)
sum e = 0.0501482399530417
sum de = 0.00020341611950783613
Info: CFL hydro = 0.00444945927187096 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00444945927187096 cfl multiplier : 0.7806902044922944 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5721e+05 | 99951 | 1 | 6.358e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.017685465180588 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.45171907592413996, dt = 0.00444945927187096 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99951.0 min = 99951.0 factor = 1
- strategy "round robin" : max = 94953.4 min = 94953.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99951
max = 99951
avg = 99951
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (1.5%)
patch tree reduce : 1613.00 ns (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.2%)
LB compute : 420.51 us (95.2%)
LB move op cnt : 0
LB apply : 3.88 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (71.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7531808070548292e-07,1.0140010110052528e-06,1.0628325483222657e-08)
sum a = (-3.198396408832238e-18,6.179952383167375e-18,1.1773757966834775e-19)
sum e = 0.05015053659203032
sum de = 0.0001819991298659251
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.04333437767812515
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3360362174372816e-07,1.0096062912036086e-06,1.0887514547331086e-08)
sum a = (-2.1412992906588713e-18,1.734723475976807e-18,1.2112571145736495e-19)
sum e = 0.05014447051591995
sum de = 0.00018253687884837034
Info: CFL hydro = 0.002427728092516587 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002427728092516587 cfl multiplier : 0.42689673483076485 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.2990e+05 | 99951 | 1 | 7.695e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.816997525217683 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4561685351960109, dt = 0.002427728092516587 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99951.0 min = 99951.0 factor = 1
- strategy "round robin" : max = 94953.4 min = 94953.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99951
max = 99951
avg = 99951
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.89 us (2.0%)
patch tree reduce : 1603.00 ns (0.5%)
gen split merge : 1082.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 322.22 us (94.0%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1954.00 ns (67.0%)
Info: sink accretion : [sph::Sink][rank=0]
id 0 deltas : mass=1.0000000005838672e-07 r=(-1.3927155469597947e-08,-7.869896063654126e-08,-3.183706784001417e-09) v=(7.240157634739292e-07,-1.240417783834456e-07,1.3979481947947387e-08) l=(-1.476112483614004e-08,-2.1128547508357095e-08,5.868553029303625e-07)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.3056378431001e-08,5.501922802079519e-07,6.154525488406968e-09)
sum a = (-1.1045309632196076e-18,-8.131516293641283e-19,2.168404344971009e-19)
sum e = 0.050143995558063585
sum de = 0.00017157552345334375
Info: CFL hydro = 0.003456125426398701 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.003456125426398701 cfl multiplier : 0.6179311565538432 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5832e+05 | 99950 | 1 | 6.313e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.844227154999734 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4585962632885275, dt = 0.0014037367114725363 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99950.0 min = 99950.0 factor = 1
- strategy "round robin" : max = 94952.5 min = 94952.5 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99950
max = 99950
avg = 99950
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (1.8%)
patch tree reduce : 1412.00 ns (0.4%)
gen split merge : 1263.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 335.01 us (94.2%)
LB move op cnt : 0
LB apply : 3.88 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1993.00 ns (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.5430046035791855e-08,3.1985300430158003e-07,3.5745810621564086e-09)
sum a = (1.883801274693564e-18,9.703609443745265e-18,4.658681209898652e-20)
sum e = 0.050143029352048896
sum de = 0.00016549484521742044
Info: CFL hydro = 0.004131865685408882 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004131865685408882 cfl multiplier : 0.7452874377025621 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5899e+05 | 99950 | 1 | 6.287e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.038576115690688 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 140 [SPH][rank=0]
Info: time since start : 507.974330133 (s) [SPH][rank=0]
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_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.05 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 679.08 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 683.66 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 670.69 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 684.44 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.05108051 s
Info: compute_slice took 1221.21 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1182.50 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.023473952000000003 s
Info: compute_slice took 1197.61 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1208.95 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 1165.01 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1185.67 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.05 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
sph::RenderFieldGetter compute custom field took : 0.019336828 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000023.npy
---------------- t = 0.46, dt = 0.004131865685408882 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99950.0 min = 99950.0 factor = 1
- strategy "round robin" : max = 94952.5 min = 94952.5 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99950
max = 99950
avg = 99950
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.77 us (2.8%)
patch tree reduce : 1663.00 ns (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 388.90 us (93.8%)
LB move op cnt : 0
LB apply : 3.85 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1964.00 ns (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.281314181657397e-08,9.435576227155431e-07,1.0759163168210744e-08)
sum a = (1.9244588561617704e-18,1.1275702593849246e-17,-1.3044307387716225e-19)
sum e = 0.0501483012866703
sum de = 0.00014440512649407944
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.04026588325998754
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.048359373664729e-08,9.435025738815833e-07,1.0480582859869962e-08)
sum a = (2.9680034471790684e-18,5.421010862427522e-19,-1.3383120566617945e-19)
sum e = 0.05014306753646507
sum de = 0.00014481801462521216
Info: CFL hydro = 0.002244247968130568 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002244247968130568 cfl multiplier : 0.41509581256752065 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.3110e+05 | 99950 | 1 | 7.624e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.51001618921764 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.46413186568540893, dt = 0.002244247968130568 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99950.0 min = 99950.0 factor = 1
- strategy "round robin" : max = 94952.5 min = 94952.5 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99950
max = 99950
avg = 99950
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.24 us (1.8%)
patch tree reduce : 1683.00 ns (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1001.00 ns (0.2%)
LB compute : 383.63 us (94.8%)
LB move op cnt : 0
LB apply : 3.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (66.1%)
Info: sink accretion : [sph::Sink][rank=0]
id 0 deltas : mass=1.0000000005838672e-07 r=(7.233964179134079e-08,-3.325451100788335e-08,-6.089887515119577e-09) v=(2.8427994085128807e-07,6.685721211441168e-07,3.859205339950289e-08) l=(2.798213369029509e-08,-4.4958862537047e-08,5.778928606014238e-07)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.897083120732458e-08,5.125562781489796e-07,6.009738810854464e-09)
sum a = (2.2327788489623357e-18,-1.0462550964485118e-17,-2.515687853345272e-19)
sum e = 0.05014227277998589
sum de = 0.00013482910995947536
Info: CFL hydro = 0.003255106126999375 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.003255106126999375 cfl multiplier : 0.6100638750450137 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5855e+05 | 99949 | 1 | 6.304e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.81661593145818 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4663761136535395, dt = 0.003255106126999375 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99949.0 min = 99949.0 factor = 1
- strategy "round robin" : max = 94951.5 min = 94951.5 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99949
max = 99949
avg = 99949
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (1.9%)
patch tree reduce : 1673.00 ns (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1213.00 ns (0.3%)
LB compute : 329.23 us (94.1%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.105923105600872e-08,7.453172049807781e-07,8.562518033114747e-09)
sum a = (1.8939656700606156e-18,-2.8731357570865868e-18,-9.317362419797304e-21)
sum e = 0.050144389536588244
sum de = 0.00011888860251242662
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.03173299653532012
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.0056995545013924e-08,7.472807387687018e-07,9.158489244707324e-09)
sum a = (1.4907779871675686e-19,6.505213034913027e-19,2.541098841762901e-21)
sum e = 0.050141142264685815
sum de = 0.0001190962468029372
Info: CFL hydro = 0.001940242310423791 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001940242310423791 cfl multiplier : 0.3700212916816712 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.3163e+05 | 99949 | 1 | 7.593e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.43235642770284 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.46963121978053884, dt = 0.001940242310423791 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99949.0 min = 99949.0 factor = 1
- strategy "round robin" : max = 94951.5 min = 94951.5 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99949
max = 99949
avg = 99949
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (1.7%)
patch tree reduce : 1813.00 ns (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 386.05 us (94.6%)
LB move op cnt : 0
LB apply : 4.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (70.7%)
Info: sink accretion : [sph::Sink][rank=0]
id 0 deltas : mass=1.0000000005838672e-07 r=(7.983866291973751e-08,-3.5842670342235754e-09,1.2154350745374875e-09) v=(1.692838373263685e-08,7.165401193886746e-07,-7.815636126816633e-09) l=(-8.428287000683115e-09,6.416829984000887e-09,5.725544799494299e-07)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8268678554961997e-08,4.4557729974245015e-07,5.428207226415636e-09)
sum a = (4.013242104090875e-18,-1.8431436932253575e-17,-1.8888834723770898e-19)
sum e = 0.050139940916393136
sum de = 0.00011059362650454197
Info: CFL hydro = 0.003233367690637692 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.003233367690637692 cfl multiplier : 0.5800141944544475 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5826e+05 | 99948 | 1 | 6.315e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.060209160637163 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4715714620909626, dt = 0.003233367690637692 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99948.0 min = 99948.0 factor = 1
- strategy "round robin" : max = 94950.6 min = 94950.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99948
max = 99948
avg = 99948
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.70 us (1.7%)
patch tree reduce : 1522.00 ns (0.4%)
gen split merge : 1072.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 378.68 us (94.6%)
LB move op cnt : 0
LB apply : 4.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (71.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.738237066790775e-08,7.436054365975142e-07,9.357421047419327e-09)
sum a = (2.6753535639027076e-18,3.63207727782644e-18,-2.202285662861181e-20)
sum e = 0.05014232356361284
sum de = 9.564986708562542e-05
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.03146898407617906
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.166773033831874e-09,7.479594447423784e-07,9.569073540516947e-09)
sum a = (3.463094204849207e-18,1.1384122811097797e-18,-3.134021904840911e-20)
sum e = 0.050139121700790525
sum de = 9.584160322624992e-05
Info: CFL hydro = 0.002087975207690544 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002087975207690544 cfl multiplier : 0.3600047314848158 [sph::Model][rank=0]
Info: Timestep perf 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 | 99948 | 1 | 7.638e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.239878195881348 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4748048297816003, dt = 0.002087975207690544 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99948.0 min = 99948.0 factor = 1
- strategy "round robin" : max = 94950.6 min = 94950.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99948
max = 99948
avg = 99948
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.99 us (2.0%)
patch tree reduce : 1713.00 ns (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 337.40 us (94.2%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (66.7%)
Info: sink accretion : [sph::Sink][rank=0]
id 0 deltas : mass=1.0000000005838672e-07 r=(7.712604136039938e-08,2.117337723711776e-08,-1.7690302798086757e-09) v=(-1.9708679050974096e-07,7.06607276873943e-07,-1.722927547671355e-09) l=(1.2088627611502076e-08,4.974947894425019e-09,5.865837648472265e-07)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.237939747950823e-09,4.832407508076562e-07,6.380310935638941e-09)
sum a = (-2.047278633513644e-18,1.0733601507606494e-17,4.0657581468206416e-20)
sum e = 0.05013795663541778
sum de = 8.684621644962498e-05
Info: CFL hydro = 0.0032925150491197245 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0032925150491197245 cfl multiplier : 0.5733364876565439 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5814e+05 | 99947 | 1 | 6.320e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.89300155457331 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4768928049892909, dt = 0.0031071950107091073 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99947.0 min = 99947.0 factor = 1
- strategy "round robin" : max = 94949.6 min = 94949.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99947
max = 99947
avg = 99947
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.17 us (1.8%)
patch tree reduce : 1542.00 ns (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 374.26 us (94.6%)
LB move op cnt : 0
LB apply : 4.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.066390629527331e-09,7.19710740261754e-07,9.462360501596306e-09)
sum a = (-3.2559946492455305e-18,-1.1980434005964824e-17,2.99002630380768e-19)
sum e = 0.050139826046701697
sum de = 7.354004969394845e-05
Info: CFL hydro = 0.004095714353845754 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004095714353845754 cfl multiplier : 0.7155576584376959 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5424e+05 | 99947 | 1 | 6.480e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.262149377271204 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 147 [SPH][rank=0]
Info: time since start : 529.882839523 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000012.vtk [VTK Dump][rank=0]
- took 5.57 ms, bandwidth = 958.47 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.64 us (57.8%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000012.sham [Shamrock Dump][rank=0]
- took 4.79 ms, bandwidth = 2.49 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.05 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.06 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 669.24 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 678.99 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 668.71 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 678.74 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.051422630000000004 s
Info: compute_slice took 1234.69 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1169.12 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.022056602 s
Info: compute_slice took 1184.60 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1186.69 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 1179.77 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1186.97 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.10 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
sph::RenderFieldGetter compute custom field took : 0.015566471 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000024.npy
---------------- t = 0.48, dt = 0.004095714353845754 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99947.0 min = 99947.0 factor = 1
- strategy "round robin" : max = 94949.6 min = 94949.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99947
max = 99947
avg = 99947
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.71 us (2.5%)
patch tree reduce : 1543.00 ns (0.3%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 451.20 us (94.5%)
LB move op cnt : 0
LB apply : 4.34 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.483489751857213e-08,9.499353687365421e-07,1.2994376626172128e-08)
sum a = (3.2526065174565133e-19,-1.951563910473908e-18,-3.9810548520952116e-20)
sum e = 0.050142272597374186
sum de = 5.4205323944454595e-05
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.039958859642167006
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.283149611597435e-08,9.624316400462115e-07,1.3944717290636793e-08)
sum a = (-4.87890977618477e-19,-7.209944447028604e-18,-3.4728350837426314e-20)
sum e = 0.05013713438897871
sum de = 5.453531700442692e-05
Info: CFL hydro = 0.002288636698160518 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002288636698160518 cfl multiplier : 0.4051858861458986 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.3099e+05 | 99947 | 1 | 7.630e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.323704321740784 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.48409571435384574, dt = 0.002288636698160518 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99947.0 min = 99947.0 factor = 1
- strategy "round robin" : max = 94949.6 min = 94949.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99947
max = 99947
avg = 99947
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.6%)
patch tree reduce : 1472.00 ns (0.4%)
gen split merge : 1122.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 337.45 us (94.5%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (68.4%)
Info: sink accretion : [sph::Sink][rank=0]
id 0 deltas : mass=1.0000000005838672e-07 r=(-2.7233407628238498e-08,7.508115048226408e-08,1.6765677010232475e-09) v=(-6.842726000331995e-07,-2.648122745980771e-07,-1.3442036149473542e-08) l=(-5.594012614582325e-09,-1.5104992104476193e-08,5.855750166366502e-07)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.124807266982309e-08,5.381812229922966e-07,7.722541697132122e-09)
sum a = (9.622294280808852e-19,9.107298248878237e-18,2.964615315390051e-19)
sum e = 0.05013615826890255
sum de = 4.429975118275052e-05
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.022307417952146955
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.973650749508663e-08,5.307711744948967e-07,8.0677017440003e-09)
sum a = (3.855693975901575e-18,1.1275702593849246e-17,2.896852679609707e-19)
sum e = 0.05013455301564548
sum de = 4.43940615994626e-05
Info: CFL hydro = 0.0016763185206450806 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0016763185206450806 cfl multiplier : 0.30172862871529954 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.3257e+05 | 99946 | 1 | 7.539e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.928089089213517 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4863843510520063, dt = 0.0016763185206450806 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99946.0 min = 99946.0 factor = 1
- strategy "round robin" : max = 94948.7 min = 94948.7 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99946
max = 99946
avg = 99946
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.4%)
patch tree reduce : 2.44 us (0.6%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 403.94 us (94.9%)
LB move op cnt : 0
LB apply : 3.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (70.5%)
Info: sink accretion : [sph::Sink][rank=0]
id 0 deltas : mass=1.0000000005838672e-07 r=(1.835856390010405e-08,-7.784779705012908e-08,7.386519694929164e-10) v=(7.070936893201148e-07,1.6970406257509806e-07,-1.3355528725348392e-08) l=(9.11775678643906e-09,7.666713889639766e-09,5.813940584593522e-07)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.607323858834154e-08,3.8847569902112565e-07,5.878806772238039e-09)
sum a = (-3.130633773051894e-18,-9.703609443745265e-18,-3.2526065174565133e-19)
sum e = 0.05013283172247024
sum de = 3.664839482285794e-05
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.016333542365130904
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.92351510382805e-08,3.929270327059036e-07,5.919067295938958e-09)
sum a = (2.0328790734103208e-20,-7.535205098774256e-18,-3.066259269060567e-19)
sum e = 0.050131970087262744
sum de = 3.669670937585585e-05
Info: CFL hydro = 0.001467687143683216 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001467687143683216 cfl multiplier : 0.2672428762384332 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.2236e+05 | 99945 | 1 | 8.168e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.388316225576781 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4880606695726514, dt = 0.001467687143683216 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99945.0 min = 99945.0 factor = 1
- strategy "round robin" : max = 94947.8 min = 94947.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99945
max = 99945
avg = 99945
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.3%)
patch tree reduce : 1603.00 ns (0.3%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1021.00 ns (0.2%)
LB compute : 443.96 us (95.7%)
LB move op cnt : 0
LB apply : 3.78 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (68.1%)
Info: sink accretion : [sph::Sink][rank=0]
id 0 deltas : mass=1.0000000005838672e-07 r=(4.382994796780609e-08,6.688530130736633e-08,-1.564679682649688e-09) v=(-6.174749631503233e-07,3.950965991902782e-07,8.591956422486747e-09) l=(1.1898455539878354e-08,5.912500476316293e-09,5.860420335335116e-07)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.4322671980287754e-08,3.4437710234576455e-07,5.219627479324629e-09)
sum a = (3.699839913606784e-18,4.7704895589362195e-18,-1.7872395187065737e-19)
sum e = 0.05012998597063575
sum de = 3.071782229841045e-05
Info: CFL hydro = 0.002830516001171287 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002830516001171287 cfl multiplier : 0.5114952508256221 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5915e+05 | 99944 | 1 | 6.280e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.41349072864773 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4895283567163346, dt = 0.002830516001171287 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99944.0 min = 99944.0 factor = 1
- strategy "round robin" : max = 94946.8 min = 94946.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99944
max = 99944
avg = 99944
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.09 us (1.8%)
patch tree reduce : 1683.00 ns (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.2%)
LB compute : 380.52 us (94.7%)
LB move op cnt : 0
LB apply : 3.71 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.468071104731644e-08,6.631788357243396e-07,1.015943418723276e-08)
sum a = (-4.0657581468206416e-20,4.336808689942018e-19,1.4399560103323106e-20)
sum e = 0.05013184601282086
sum de = 1.5489683744431787e-05
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.02761152130530373
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.23015659697854e-08,6.597782485245589e-07,1.0651705912049711e-08)
sum a = (2.6020852139652106e-18,-1.8431436932253575e-17,8.470329472543003e-21)
sum e = 0.05012939298905763
sum de = 1.5592695117770106e-05
Info: CFL hydro = 0.001833850680318303 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001833850680318303 cfl multiplier : 0.3371650836085407 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.3234e+05 | 99944 | 1 | 7.552e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.4932326847213 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4923588727175059, dt = 0.001833850680318303 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99944.0 min = 99944.0 factor = 1
- strategy "round robin" : max = 94946.8 min = 94946.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99944
max = 99944
avg = 99944
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.5%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 1011.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1193.00 ns (0.3%)
LB compute : 363.43 us (94.8%)
LB move op cnt : 0
LB apply : 3.60 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (69.8%)
Info: sink accretion : [sph::Sink][rank=0]
id 0 deltas : mass=1.9999999989472883e-07 r=(-1.265277427432761e-08,-2.314665982373509e-08,1.6016644139716982e-09) v=(2.1579157064819136e-07,-1.2450794552151284e-07,-1.19233631888409e-08) l=(-9.759940068932292e-09,2.5065287241923755e-08,1.1615703426194032e-06)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.984478784271455e-08,4.272601921242493e-07,6.832079766117253e-09)
sum a = (2.0057740190981832e-18,-5.041540102057596e-18,3.5405977195229754e-19)
sum e = 0.050125139092360424
sum de = 8.241543112453326e-06
Info: CFL hydro = 0.0030024720615994473 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0030024720615994473 cfl multiplier : 0.5581100557390272 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5913e+05 | 99942 | 1 | 6.281e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.511559572427993 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4941927233978242, dt = 0.0030024720615994473 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99942.0 min = 99942.0 factor = 1
- strategy "round robin" : max = 94944.9 min = 94944.9 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99942
max = 99942
avg = 99942
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.6%)
patch tree reduce : 1423.00 ns (0.4%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.3%)
LB compute : 328.25 us (94.4%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (69.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0902165323413242e-07,6.990106676459925e-07,1.1513457170999669e-08)
sum a = (-4.472333961502706e-19,2.0057740190981832e-18,-2.371692252312041e-20)
sum e = 0.050126868778164045
sum de = -3.6010486086989755e-06
Info: CFL hydro = 0.00373052734279047 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00373052734279047 cfl multiplier : 0.7054067038260182 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5790e+05 | 99942 | 1 | 6.330e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.07663323154525 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.49719519545942364, dt = 0.0028048045405763555 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99942.0 min = 99942.0 factor = 1
- strategy "round robin" : max = 94944.9 min = 94944.9 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99942
max = 99942
avg = 99942
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.3%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.2%)
LB compute : 418.02 us (95.6%)
LB move op cnt : 0
LB apply : 3.46 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.30 us (76.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1881090671642385e-07,6.513320769782044e-07,1.1082085010809739e-08)
sum a = (1.395910297075087e-18,7.15573433840433e-18,-4.573977915173222e-20)
sum e = 0.05012649352385944
sum de = -1.6520447699261833e-05
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.027338278823966482
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.432313854045586e-07,6.502582330644744e-07,1.1328623189311404e-08)
sum a = (1.81603863891322e-18,-3.74049749507499e-18,-4.912791094074942e-20)
sum e = 0.05012408959720223
sum de = -1.6432399127305223e-05
Info: CFL hydro = 0.002300478101287945 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002300478101287945 cfl multiplier : 0.40180223460867276 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.3060e+05 | 99942 | 1 | 7.652e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.19519580128161 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 155 [SPH][rank=0]
Info: time since start : 552.76607707 (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_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.08 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 678.30 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 677.82 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 673.88 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 679.33 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.054742654 s
Info: compute_slice took 1226.72 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1195.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.020299566 s
Info: compute_slice took 1190.16 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1184.07 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 1188.73 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1184.27 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.06 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
sph::RenderFieldGetter compute custom field took : 0.015008205 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000025.npy
---------------- t = 0.5, dt = 0.002300478101287945 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99942.0 min = 99942.0 factor = 1
- strategy "round robin" : max = 94944.9 min = 94944.9 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99942
max = 99942
avg = 99942
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.74 us (2.6%)
patch tree reduce : 1883.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 421.00 us (94.2%)
LB move op cnt : 0
LB apply : 3.94 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1963.00 ns (65.8%)
Info: sink accretion : [sph::Sink][rank=0]
id 0 deltas : mass=1.0000000005838672e-07 r=(-7.954799592746166e-08,8.096304023092778e-09,-5.236411644642911e-10) v=(-5.025743005721212e-08,-7.346955680061926e-07,1.739248426176567e-09) l=(-3.703519736789988e-09,1.6595094869975385e-09,5.882720595325918e-07)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1807786820902015e-07,5.330967247613619e-07,9.271620535727193e-09)
sum a = (-1.9786689647860456e-18,1.5829351718288365e-17,-1.6940658945086007e-20)
sum e = 0.050122946206231575
sum de = -2.5315167079880344e-05
Info: CFL hydro = 0.0033619389599340256 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0033619389599340256 cfl multiplier : 0.6012014897391151 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5777e+05 | 99941 | 1 | 6.335e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.073680277114843 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.502300478101288, dt = 0.0033619389599340256 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99941.0 min = 99941.0 factor = 1
- strategy "round robin" : max = 94943.9 min = 94943.9 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99941
max = 99941
avg = 99941
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.03 us (1.8%)
patch tree reduce : 1603.00 ns (0.4%)
gen split merge : 1172.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 374.59 us (94.5%)
LB move op cnt : 0
LB apply : 3.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8721344829236968e-07,7.769431726749273e-07,1.3875685521795781e-08)
sum a = (-2.439454888092385e-18,-1.5829351718288365e-17,8.809142651444724e-20)
sum e = 0.050124671921917906
sum de = -3.812647673715292e-05
Info: CFL hydro = 0.004095366344961451 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004095366344961451 cfl multiplier : 0.7341343264927435 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5665e+05 | 99941 | 1 | 6.380e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.97035137201772 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.505662417061222, dt = 0.004095366344961451 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99941.0 min = 99941.0 factor = 1
- strategy "round robin" : max = 94943.9 min = 94943.9 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99941
max = 99941
avg = 99941
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.88 us (1.7%)
patch tree reduce : 1823.00 ns (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 377.15 us (94.7%)
LB move op cnt : 0
LB apply : 3.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.555896279536027e-07,9.413427015759252e-07,1.7427815038613512e-08)
sum a = (-4.336808689942018e-19,-2.0328790734103208e-17,-9.147955830346444e-20)
sum e = 0.05012615379403478
sum de = -5.418574735660962e-05
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.03998011341722208
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.776102668183459e-07,9.396927271359234e-07,1.76778615540018e-08)
sum a = (-3.0899761915836876e-18,-1.3227266504323154e-17,-8.470329472543003e-20)
sum e = 0.05012103658615874
sum de = -5.393965351775922e-05
Info: CFL hydro = 0.0023056499283048335 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0023056499283048335 cfl multiplier : 0.4113781088309145 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.3097e+05 | 99941 | 1 | 7.631e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.32025012128882 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5097577834061834, dt = 0.0023056499283048335 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99941.0 min = 99941.0 factor = 1
- strategy "round robin" : max = 94943.9 min = 94943.9 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99941
max = 99941
avg = 99941
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (1.9%)
patch tree reduce : 1573.00 ns (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 328.66 us (94.2%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (69.0%)
Info: sink accretion : [sph::Sink][rank=0]
id 0 deltas : mass=1.0000000005838672e-07 r=(7.15285324567564e-08,3.570521999277165e-08,-2.4304954919941623e-09) v=(-3.2080318437984184e-07,6.513113550476751e-07,2.15066317696469e-08) l=(2.3381780891245288e-08,-7.345453391973595e-09,5.802082121584973e-07)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.55936614737402e-07,5.29516272920798e-07,1.0277187308038007e-08)
sum a = (-4.0657581468206416e-19,-1.6263032587282567e-19,-2.761327408049019e-19)
sum e = 0.050119868139836245
sum de = -6.243027284024784e-05
Info: CFL hydro = 0.0034559793567427196 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0034559793567427196 cfl multiplier : 0.6075854058872764 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5552e+05 | 99940 | 1 | 6.426e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.916049548266196 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5120634333344882, dt = 0.0034559793567427196 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99940.0 min = 99940.0 factor = 1
- strategy "round robin" : max = 94943.0 min = 94943.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99940
max = 99940
avg = 99940
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.21 us (1.9%)
patch tree reduce : 1843.00 ns (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.3%)
LB compute : 363.44 us (94.5%)
LB move op cnt : 0
LB apply : 3.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.500935841654746e-07,7.892834959095264e-07,1.5223125674608598e-08)
sum a = (3.06287113727155e-18,4.7704895589362195e-18,-1.6940658945086007e-20)
sum e = 0.050121650067315136
sum de = -8.05362140841234e-05
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.03364870611303108
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.728337818405402e-07,7.902393756710634e-07,1.5667715137704267e-08)
sum a = (-1.6534083130403943e-18,2.6020852139652106e-18,0)
sum e = 0.05011800033005257
sum de = -8.040493619010745e-05
Info: CFL hydro = 0.002050097238708317 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002050097238708317 cfl multiplier : 0.3691951352957588 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.2981e+05 | 99940 | 1 | 7.699e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.1596109281749 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5155194126912309, dt = 0.002050097238708317 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99940.0 min = 99940.0 factor = 1
- strategy "round robin" : max = 94943.0 min = 94943.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99940
max = 99940
avg = 99940
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.04 us (1.9%)
patch tree reduce : 1783.00 ns (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1443.00 ns (0.4%)
LB compute : 344.70 us (94.0%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1954.00 ns (67.0%)
Info: sink accretion : [sph::Sink][rank=0]
id 0 deltas : mass=1.9999999989472883e-07 r=(6.176259683897368e-09,5.3116159426532154e-08,-7.606825614171967e-11) v=(-4.793624169184633e-07,3.664048159891708e-08,-9.949368158178364e-09) l=(-2.109430294043666e-08,2.5497427123550734e-08,1.1609782725489556e-06)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6192473020914156e-07,4.6908832467950157e-07,9.256783039260502e-09)
sum a = (-1.9786689647860456e-18,1.6642503347652493e-17,1.6940658945086007e-20)
sum e = 0.050113792578714934
sum de = -8.769397726590393e-05
Info: CFL hydro = 0.0031733765994235996 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0031733765994235996 cfl multiplier : 0.5794634235305058 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5773e+05 | 99938 | 1 | 6.336e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.648449675381691 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5175695099299392, dt = 0.002430490070060798 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99938.0 min = 99938.0 factor = 1
- strategy "round robin" : max = 94941.1 min = 94941.1 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99938
max = 99938
avg = 99938
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.55 us (1.4%)
patch tree reduce : 1833.00 ns (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.2%)
LB compute : 442.90 us (95.6%)
LB move op cnt : 0
LB apply : 3.63 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0174089868522428e-07,5.52981903124788e-07,1.1205007788577561e-08)
sum a = (5.421010862427522e-20,1.680513367352532e-17,3.1848438816761693e-19)
sum e = 0.050114085615427996
sum de = -9.605444531962068e-05
Info: CFL hydro = 0.0038806363902600797 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0038806363902600797 cfl multiplier : 0.7196422823536706 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5563e+05 | 99938 | 1 | 6.422e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.625458916020367 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 162 [SPH][rank=0]
Info: time since start : 574.615241626 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000013.vtk [VTK Dump][rank=0]
- took 5.69 ms, bandwidth = 937.69 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 : 6.90 us (56.7%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000013.sham [Shamrock Dump][rank=0]
- took 5.22 ms, bandwidth = 2.28 GB/s
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_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.07 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 679.24 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 673.81 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 648.19 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 677.73 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.051474733 s
Info: compute_slice took 1218.06 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1173.11 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.023809508 s
Info: compute_slice took 1186.78 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1170.75 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 1181.18 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1181.48 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.08 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
sph::RenderFieldGetter compute custom field took : 0.015593328000000002 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000026.npy
---------------- t = 0.52, dt = 0.0038806363902600797 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99938.0 min = 99938.0 factor = 1
- strategy "round robin" : max = 94941.1 min = 94941.1 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99938
max = 99938
avg = 99938
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.81 us (2.6%)
patch tree reduce : 1773.00 ns (0.4%)
gen split merge : 992.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 425.28 us (94.0%)
LB move op cnt : 0
LB apply : 3.94 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.406785395646645e-07,8.773133846396042e-07,1.8241176479876737e-08)
sum a = (4.933119884809045e-18,-2.7647155398380363e-18,-3.7269449679189215e-20)
sum e = 0.05011647348416888
sum de = -0.00011162403273264093
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.03779818991177193
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.787482591092843e-07,8.592686453071681e-07,1.885641034655506e-08)
sum a = (5.149960319306146e-18,3.0899761915836876e-18,-3.7269449679189215e-20)
sum e = 0.05011188553558771
sum de = -0.0001114539293898107
Info: CFL hydro = 0.0021435927211287914 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021435927211287914 cfl multiplier : 0.4065474274512235 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.2639e+05 | 99938 | 1 | 7.907e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.66792520496742 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5238806363902601, dt = 0.0021435927211287914 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99938.0 min = 99938.0 factor = 1
- strategy "round robin" : max = 94941.1 min = 94941.1 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99938
max = 99938
avg = 99938
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.78 us (1.8%)
patch tree reduce : 1713.00 ns (0.5%)
gen split merge : 1032.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 352.78 us (94.3%)
LB move op cnt : 0
LB apply : 4.14 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1833.00 ns (5.2%)
Info: sink accretion : [sph::Sink][rank=0]
id 0 deltas : mass=1.0000000005838672e-07 r=(-5.774876309605042e-08,-5.521942242164226e-08,3.992837596863506e-10) v=(5.132135363358574e-07,-5.040390370174851e-07,3.136790907107769e-09) l=(2.646703931612514e-10,3.875673840901652e-09,5.742704361493637e-07)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.093422302894743e-07,4.7416358441540834e-07,1.0390870195469855e-08)
sum a = (-1.0842021724855044e-18,1.4799359654427136e-17,1.6940658945086007e-19)
sum e = 0.050110440055787096
sum de = -0.00011863697678395677
Info: CFL hydro = 0.003148212821947135 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.003148212821947135 cfl multiplier : 0.604364951634149 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5884e+05 | 99937 | 1 | 6.292e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.265604030270227 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5260242291113888, dt = 0.003148212821947135 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99937.0 min = 99937.0 factor = 1
- strategy "round robin" : max = 94940.1 min = 94940.1 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99937
max = 99937
avg = 99937
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.41 us (1.6%)
patch tree reduce : 1653.00 ns (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1333.00 ns (0.3%)
LB compute : 371.14 us (94.7%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.202015428275222e-07,6.922355498901766e-07,1.554517665224213e-08)
sum a = (-9.486769009248164e-19,6.451002926288751e-18,1.2536087619363645e-19)
sum e = 0.05011166599882366
sum de = -0.00012900452448006948
Info: CFL hydro = 0.003904146982214954 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.003904146982214954 cfl multiplier : 0.7362433010894328 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5470e+05 | 99937 | 1 | 6.460e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.543755123718217 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5291724419333359, dt = 0.003904146982214954 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99937.0 min = 99937.0 factor = 1
- strategy "round robin" : max = 94940.1 min = 94940.1 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99937
max = 99937
avg = 99937
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.85 us (1.8%)
patch tree reduce : 1703.00 ns (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 364.04 us (94.6%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1934.00 ns (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.2044470911520803e-07,8.490698229758091e-07,1.972542772069122e-08)
sum a = (2.981555974335137e-19,-1.1817803680091998e-17,1.4060746924421386e-19)
sum e = 0.050112759621179524
sum de = -0.0001432001232496005
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.03805380008858644
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.5237779973511505e-07,8.249690284128274e-07,2.0151478437992048e-08)
sum a = (2.439454888092385e-19,-1.6046192152785466e-17,1.3044307387716225e-19)
sum e = 0.05010812119269891
sum de = -0.00014304551937593295
Info: CFL hydro = 0.0022375606018013882 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022375606018013882 cfl multiplier : 0.4120811003631443 [sph::Model][rank=0]
Info: Timestep perf 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 | 99937 | 1 | 7.637e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.403446949569208 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5330765889155509, dt = 0.0022375606018013882 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99937.0 min = 99937.0 factor = 1
- strategy "round robin" : max = 94940.1 min = 94940.1 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99937
max = 99937
avg = 99937
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.73 us (1.6%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 1162.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.2%)
LB compute : 406.95 us (95.2%)
LB move op cnt : 0
LB apply : 3.59 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.9%)
Info: sink accretion : [sph::Sink][rank=0]
id 0 deltas : mass=1.0000000005838672e-07 r=(-2.2080040950125945e-08,-7.681393267078147e-08,-8.157201681257852e-10) v=(6.965467213585689e-07,-1.8743895612815647e-07,2.030638757689807e-08) l=(-1.7076535025418528e-08,-1.2102766671936557e-09,5.761984580500044e-07)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.59097007520952e-07,4.723178577559629e-07,1.1610201784551639e-08)
sum a = (2.710505431213761e-19,-2.0057740190981832e-18,-8.131516293641283e-20)
sum e = 0.05010670165961153
sum de = -0.00015007006174867443
Info: CFL hydro = 0.0034213405247809758 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0034213405247809758 cfl multiplier : 0.608054066908763 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5823e+05 | 99936 | 1 | 6.316e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.754152647522382 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5353141495173522, dt = 0.0034213405247809758 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99936.0 min = 99936.0 factor = 1
- strategy "round robin" : max = 94939.2 min = 94939.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99936
max = 99936
avg = 99936
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.89 us (1.7%)
patch tree reduce : 1653.00 ns (0.4%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 386.60 us (94.8%)
LB move op cnt : 0
LB apply : 3.66 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.104254698973148e-07,7.162222030279548e-07,1.7938373925882862e-08)
sum a = (-2.8189256484623115e-18,-1.2685165418080402e-17,2.541098841762901e-20)
sum e = 0.050108204357428895
sum de = -0.00016332047326388216
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.0333406658789052
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.442970499301429e-07,7.200347121151131e-07,1.801515208739473e-08)
sum a = (-7.047314121155779e-19,-4.607859233063394e-18,1.1858461261560205e-20)
sum e = 0.0501046435669565
sum de = -0.0001632327293168727
Info: CFL hydro = 0.0020092739567069244 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020092739567069244 cfl multiplier : 0.3693513556362544 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.3104e+05 | 99936 | 1 | 7.626e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.150252483482603 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5387354900421332, dt = 0.0012645099578668662 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99936.0 min = 99936.0 factor = 1
- strategy "round robin" : max = 94939.2 min = 94939.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99936
max = 99936
avg = 99936
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.61 us (2.1%)
patch tree reduce : 1944.00 ns (0.5%)
gen split merge : 1112.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 334.31 us (93.9%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (67.7%)
Info: sink accretion : [sph::Sink][rank=0]
id 0 deltas : mass=1.9999999989472883e-07 r=(-9.636520786628192e-08,1.1059874382417623e-07,-2.6179400419381346e-09) v=(-9.798480682821092e-07,-8.82193213520564e-07,1.5795762147453615e-08) l=(-2.3593205085967353e-09,1.5075574264769647e-08,1.1500199671193555e-06)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.647760152162183e-07,2.6620065951222713e-07,6.764300396950314e-09)
sum a = (-2.2768245622195593e-18,-1.1600963245594897e-17,2.964615315390051e-19)
sum e = 0.05009970421083493
sum de = -0.0001670234151488666
Info: CFL hydro = 0.003115040726005342 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.003115040726005342 cfl multiplier : 0.5795675704241696 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5941e+05 | 99934 | 1 | 6.269e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.261399196865964 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 169 [SPH][rank=0]
Info: time since start : 596.5998494190001 (s) [SPH][rank=0]
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.08 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.08 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 695.41 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 674.66 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 657.49 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 674.87 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.053319093000000005 s
Info: compute_slice took 1223.50 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1185.38 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.022916756 s
Info: compute_slice took 1201.76 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1175.88 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 1179.65 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1181.81 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.08 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
sph::RenderFieldGetter compute custom field took : 0.015655665000000003 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000027.npy
---------------- t = 0.54, dt = 0.003115040726005342 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99934.0 min = 99934.0 factor = 1
- strategy "round robin" : max = 94937.3 min = 94937.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99934
max = 99934
avg = 99934
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.73 us (2.7%)
patch tree reduce : 1753.00 ns (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.2%)
LB compute : 406.24 us (93.8%)
LB move op cnt : 0
LB apply : 4.12 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.1171602141111443e-07,6.51670470247746e-07,1.6545522647983945e-08)
sum a = (3.0357660829594124e-18,1.8431436932253575e-18,-1.3213713977167085e-19)
sum e = 0.05010162681643492
sum de = -0.0001761737409059952
Info: CFL hydro = 0.0038049883397942292 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0038049883397942292 cfl multiplier : 0.7197117136161131 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5826e+05 | 99934 | 1 | 6.315e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.75870888409134 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5431150407260054, dt = 0.0038049883397942292 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99934.0 min = 99934.0 factor = 1
- strategy "round robin" : max = 94937.3 min = 94937.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99934
max = 99934
avg = 99934
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.41 us (2.1%)
patch tree reduce : 1653.00 ns (0.5%)
gen split merge : 1393.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 323.56 us (93.7%)
LB move op cnt : 0
LB apply : 3.79 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.24337682508824e-07,7.838663349211419e-07,2.0638395645549967e-08)
sum a = (-1.5720931501039814e-18,-3.7947076036992655e-19,-2.862971361719535e-19)
sum e = 0.050102384451462735
sum de = -0.00018714179050614743
Info: CFL hydro = 0.004321899583335229 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004321899583335229 cfl multiplier : 0.8131411424107421 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5689e+05 | 99934 | 1 | 6.370e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.504245926932118 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5469200290657996, dt = 0.004321899583335229 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99934.0 min = 99934.0 factor = 1
- strategy "round robin" : max = 94937.3 min = 94937.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99934
max = 99934
avg = 99934
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.53 us (1.7%)
patch tree reduce : 1854.00 ns (0.5%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 375.25 us (94.8%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.247895400121313e-07,8.726362034941777e-07,2.4029610733916514e-08)
sum a = (5.421010862427522e-20,-7.37257477290143e-18,-2.710505431213761e-20)
sum e = 0.05010282415483482
sum de = -0.00020020936063881755
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.04218598484167049
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.439220637281866e-07,8.510524031783703e-07,2.4106674472410366e-08)
sum a = (-5.908901840045999e-18,8.673617379884035e-19,-3.3881317890172014e-20)
sum e = 0.050097156719021575
sum de = -0.00020003280597857088
Info: CFL hydro = 0.002263863729781087 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002263863729781087 cfl multiplier : 0.43771371413691407 [sph::Model][rank=0]
Info: Timestep perf 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 | 99934 | 1 | 7.634e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.38063915488324 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5512419286491348, dt = 0.002263863729781087 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99934.0 min = 99934.0 factor = 1
- strategy "round robin" : max = 94937.3 min = 94937.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99934
max = 99934
avg = 99934
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.92 us (2.0%)
patch tree reduce : 1502.00 ns (0.4%)
gen split merge : 1222.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 333.30 us (94.0%)
LB move op cnt : 0
LB apply : 3.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (67.7%)
Info: sink accretion : [sph::Sink][rank=0]
id 0 deltas : mass=1.0000000005838672e-07 r=(7.983621128848653e-08,-1.9087237729882074e-09,-3.4784818241429647e-09) v=(1.5390163616102004e-08,7.149311567435353e-07,1.2277238737134328e-08) l=(2.4629764332147235e-08,-1.0069466113406282e-08,5.708142226811973e-07)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.368195570314025e-07,4.461072969754652e-07,1.2941994797679715e-08)
sum a = (2.8189256484623115e-18,-1.2034644114589099e-17,3.7269449679189215e-20)
sum e = 0.0500956676124153
sum de = -0.0002060982306987088
Info: CFL hydro = 0.0031873054271509727 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0031873054271509727 cfl multiplier : 0.625142476091276 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5841e+05 | 99933 | 1 | 6.308e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.919199209441343 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5535057923789158, dt = 0.0031873054271509727 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99933.0 min = 99933.0 factor = 1
- strategy "round robin" : max = 94936.3 min = 94936.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99933
max = 99933
avg = 99933
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.65 us (2.1%)
patch tree reduce : 1513.00 ns (0.4%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1312.00 ns (0.4%)
LB compute : 344.83 us (94.0%)
LB move op cnt : 0
LB apply : 4.02 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.871727163006093e-07,6.192702142978929e-07,1.8032264600389464e-08)
sum a = (-1.4094628242311558e-18,2.168404344971009e-19,1.1350241493207625e-19)
sum e = 0.0500965208777819
sum de = -0.00021604450300780545
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.031068646561802127
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.011000632505872e-07,5.977647295140218e-07,1.830790947833824e-08)
sum a = (-3.2526065174565133e-18,5.421010862427522e-19,1.2366681029912785e-19)
sum e = 0.05009344017952943
sum de = -0.00021599752115269866
Info: CFL hydro = 0.00200719522353594 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00200719522353594 cfl multiplier : 0.37504749203042537 [sph::Model][rank=0]
Info: Timestep perf 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 | 99933 | 1 | 7.622e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.054304733555865 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5566930978060668, dt = 0.00200719522353594 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99933.0 min = 99933.0 factor = 1
- strategy "round robin" : max = 94936.3 min = 94936.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99933
max = 99933
avg = 99933
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (1.6%)
patch tree reduce : 1733.00 ns (0.4%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 376.73 us (94.8%)
LB move op cnt : 0
LB apply : 3.88 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (66.4%)
Info: sink accretion : [sph::Sink][rank=0]
id 0 deltas : mass=1.0000000005838672e-07 r=(2.5214301558311057e-08,-7.589099950226899e-08,-6.421915554290352e-10) v=(6.781359158018703e-07,2.4275297110209056e-07,3.31481505598601e-08) l=(-2.3556382822332975e-08,-1.2697640731360874e-08,5.756520826115272e-07)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.151830363168969e-07,3.761133711373794e-07,1.1581209035722708e-08)
sum a = (2.0057740190981832e-18,-9.215718466126788e-19,-8.809142651444724e-20)
sum e = 0.05009160776604349
sum de = -0.00022106992277926704
Info: CFL hydro = 0.003070599240591519 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.003070599240591519 cfl multiplier : 0.5833649946869502 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5813e+05 | 99932 | 1 | 6.319e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.434361964178304 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5587002930296028, dt = 0.0012997069703972741 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99932.0 min = 99932.0 factor = 1
- strategy "round robin" : max = 94935.4 min = 94935.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99932
max = 99932
avg = 99932
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.34 us (1.4%)
patch tree reduce : 1563.00 ns (0.4%)
gen split merge : 1132.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 418.70 us (95.3%)
LB move op cnt : 0
LB apply : 3.88 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (70.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.085689330932997e-07,2.405526059070018e-07,7.55904547302907e-09)
sum a = (3.7947076036992655e-19,-7.047314121155779e-19,-2.795208725939191e-19)
sum e = 0.05009060836704466
sum de = -0.00022422490450051084
Info: CFL hydro = 0.003763328255550222 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.003763328255550222 cfl multiplier : 0.7222433297913001 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5952e+05 | 99932 | 1 | 6.264e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.469076663536318 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 176 [SPH][rank=0]
Info: time since start : 618.458739873 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000014.vtk [VTK Dump][rank=0]
- took 6.26 ms, bandwidth = 852.18 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 : 5.90 us (54.4%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000014.sham [Shamrock Dump][rank=0]
- took 4.87 ms, bandwidth = 2.45 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.08 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.12 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 697.14 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 705.20 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 659.57 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 699.75 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.052234311000000005 s
Info: compute_slice took 1248.94 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1206.98 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.021968103000000003 s
Info: compute_slice took 1227.79 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1208.34 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 1196.44 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1239.40 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.08 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
sph::RenderFieldGetter compute custom field took : 0.015564534000000001 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000028.npy
---------------- t = 0.56, dt = 0.003763328255550222 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99932.0 min = 99932.0 factor = 1
- strategy "round robin" : max = 94935.4 min = 94935.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99932
max = 99932
avg = 99932
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.85 us (2.5%)
patch tree reduce : 1542.00 ns (0.3%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 447.59 us (94.5%)
LB move op cnt : 0
LB apply : 3.72 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.117648828693744e-07,6.904115491122823e-07,2.2061749408576737e-08)
sum a = (-4.2825985813177425e-18,-1.0842021724855044e-17,-2.185345003916095e-19)
sum e = 0.05009352345756424
sum de = -0.0002351399850090018
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.03671636122082496
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.362208264284308e-07,6.607944090178606e-07,2.2931480316472767e-08)
sum a = (-4.87890977618477e-18,-1.1817803680091998e-17,-1.9820570965750628e-19)
sum e = 0.050089233621584794
sum de = -0.00023505491822678763
Info: CFL hydro = 0.00206407256050245 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00206407256050245 cfl multiplier : 0.40741444326376675 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.2868e+05 | 99932 | 1 | 7.766e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.444769598842083 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5637633282555503, dt = 0.00206407256050245 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99932.0 min = 99932.0 factor = 1
- strategy "round robin" : max = 94935.4 min = 94935.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99932
max = 99932
avg = 99932
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.3%)
patch tree reduce : 1603.00 ns (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.2%)
LB compute : 425.29 us (95.7%)
LB move op cnt : 0
LB apply : 3.43 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (67.0%)
Info: sink accretion : [sph::Sink][rank=0]
id 0 deltas : mass=1.0000000005838672e-07 r=(-1.4528450265690625e-08,-7.853586978753371e-08,2.535869803871078e-09) v=(7.077643945582892e-07,-1.145557983612389e-07,2.4058285814437946e-08) l=(-1.6039616825469136e-08,2.144611234102542e-08,5.722921219056113e-07)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.4876881516366287e-07,3.6196415301541343e-07,1.2528473489476769e-08)
sum a = (1.1384122811097797e-18,-1.951563910473908e-18,-1.2705494208814505e-19)
sum e = 0.05008744326747728
sum de = -0.0002398857419604499
Info: CFL hydro = 0.003155107449726367 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.003155107449726367 cfl multiplier : 0.6049429621758445 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5710e+05 | 99931 | 1 | 6.361e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.681687436722402 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5658274008160528, dt = 0.003155107449726367 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99931.0 min = 99931.0 factor = 1
- strategy "round robin" : max = 94934.4 min = 94934.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99931
max = 99931
avg = 99931
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.4%)
patch tree reduce : 1633.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 362.71 us (94.9%)
LB move op cnt : 0
LB apply : 3.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (70.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.43282208430071e-07,5.453459697758473e-07,1.9459811541351455e-08)
sum a = (-1.0842021724855044e-18,5.421010862427522e-19,-4.912791094074942e-20)
sum e = 0.05008839560449065
sum de = -0.0002470671156585682
Info: CFL hydro = 0.0037482667893715374 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0037482667893715374 cfl multiplier : 0.7366286414505631 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5829e+05 | 99931 | 1 | 6.313e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.991935979425264 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5689825082657791, dt = 0.0037482667893715374 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99931.0 min = 99931.0 factor = 1
- strategy "round robin" : max = 94934.4 min = 94934.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99931
max = 99931
avg = 99931
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.6%)
patch tree reduce : 1623.00 ns (0.4%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 352.19 us (94.7%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (69.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.630178912083617e-07,6.317674583003959e-07,2.3539774027423894e-08)
sum a = (-9.215718466126788e-19,-1.8431436932253575e-18,-1.3552527156068805e-20)
sum e = 0.05008869200571674
sum de = -0.00025771571522796344
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.03649760835131013
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.745640342608667e-07,6.195880722979115e-07,2.3821736377194103e-08)
sum a = (-1.0842021724855044e-19,2.3310346708438345e-18,-5.929230630780102e-20)
sum e = 0.05008444029577829
sum de = -0.00025764532390883647
Info: CFL hydro = 0.002131418397361668 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002131418397361668 cfl multiplier : 0.41220954715018765 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.3053e+05 | 99931 | 1 | 7.656e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.625369157707855 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5727307750551507, dt = 0.002131418397361668 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99931.0 min = 99931.0 factor = 1
- strategy "round robin" : max = 94934.4 min = 94934.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99931
max = 99931
avg = 99931
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.5%)
patch tree reduce : 1593.00 ns (0.4%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1031.00 ns (0.3%)
LB compute : 359.04 us (94.9%)
LB move op cnt : 0
LB apply : 3.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1914.00 ns (67.7%)
Info: sink accretion : [sph::Sink][rank=0]
id 0 deltas : mass=1.0000000005838672e-07 r=(6.062183383935354e-08,5.204274240373648e-08,-1.4637120608313452e-09) v=(-4.894121278371349e-07,5.298291379870768e-07,1.9696414017224745e-08) l=(1.7930670850436727e-08,-4.694656066377922e-09,5.757056972723068e-07)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.8338147099694795e-07,3.528242922680409e-07,1.3676624702041536e-08)
sum a = (-1.951563910473908e-18,2.0599841277224584e-18,2.930733997499879e-19)
sum e = 0.05008263874133666
sum de = -0.0002621323719261581
Info: CFL hydro = 0.0033031651949668303 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0033031651949668303 cfl multiplier : 0.6081396981001251 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5832e+05 | 99930 | 1 | 6.312e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.156595573391565 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5748621934525123, dt = 0.0033031651949668303 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99930.0 min = 99930.0 factor = 1
- strategy "round robin" : max = 94933.5 min = 94933.5 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99930
max = 99930
avg = 99930
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.40 us (1.5%)
patch tree reduce : 1483.00 ns (0.3%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 417.45 us (95.4%)
LB move op cnt : 0
LB apply : 3.95 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (72.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.045155578114452e-07,5.36043659754485e-07,2.1242525808057042e-08)
sum a = (1.1384122811097797e-18,-8.61940727125976e-18,9.317362419797304e-20)
sum e = 0.05008368363759885
sum de = -0.00026919220665440704
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.03220369477824333
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.165629819878196e-07,5.299270016537034e-07,2.132559932824847e-08)
sum a = (8.673617379884035e-19,-1.1384122811097797e-18,7.284483346386983e-20)
sum e = 0.0500803882064386
sum de = -0.0002691596548356752
Info: CFL hydro = 0.0020336193278199365 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020336193278199365 cfl multiplier : 0.3693798993667084 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.3148e+05 | 99930 | 1 | 7.601e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.645475372438124 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5781653586474792, dt = 0.0018346413525207605 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99930.0 min = 99930.0 factor = 1
- strategy "round robin" : max = 94933.5 min = 94933.5 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99930
max = 99930
avg = 99930
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (1.8%)
patch tree reduce : 1753.00 ns (0.5%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 318.55 us (94.2%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (68.0%)
Info: sink accretion : [sph::Sink][rank=0]
id 0 deltas : mass=1.0000000005838672e-07 r=(2.4919837717518465e-08,7.596784677717584e-08,-2.3528277458851985e-09) v=(-6.750220180321893e-07,2.2615031514853308e-07,-1.2407456431566701e-08) l=(-4.204134703968803e-09,1.900144309493874e-08,5.689886840876484e-07)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.425502887270931e-07,2.9473223932860015e-07,1.1962987152948466e-08)
sum a = (-2.222614453595284e-18,8.673617379884035e-19,-1.9651164376299768e-19)
sum e = 0.05007836250038327
sum de = -0.00027274461198334795
Info: CFL hydro = 0.0031493462945183463 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0031493462945183463 cfl multiplier : 0.5795865995778056 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5866e+05 | 99929 | 1 | 6.298e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.48675062288644 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 183 [SPH][rank=0]
Info: time since start : 640.729076391 (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_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.08 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 690.02 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 691.43 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 670.37 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 697.01 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.05589697800000001 s
Info: compute_slice took 1263.45 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1200.57 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.025810578 s
Info: compute_slice took 1241.25 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1221.52 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 1209.13 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1220.39 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.07 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
sph::RenderFieldGetter compute custom field took : 0.025129083 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000029.npy
---------------- t = 0.58, dt = 0.0031493462945183463 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99929.0 min = 99929.0 factor = 1
- strategy "round robin" : max = 94932.5 min = 94932.5 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99929
max = 99929
avg = 99929
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.71 us (3.0%)
patch tree reduce : 1573.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1051.00 ns (0.3%)
LB compute : 368.24 us (93.4%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.958802788612279e-07,4.967652442370673e-07,2.0530341361417423e-08)
sum a = (-2.4936649967166602e-18,6.2341624917916505e-18,7.115076756936123e-20)
sum e = 0.050079469791837285
sum de = -0.0002787204148015874
Info: CFL hydro = 0.003823947490023944 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.003823947490023944 cfl multiplier : 0.7197243997185371 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5160e+05 | 99929 | 1 | 6.592e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.20024973251063 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5831493462945183, dt = 0.003823947490023944 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99929.0 min = 99929.0 factor = 1
- strategy "round robin" : max = 94932.5 min = 94932.5 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99929
max = 99929
avg = 99929
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.79 us (1.9%)
patch tree reduce : 1603.00 ns (0.4%)
gen split merge : 1052.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 339.24 us (94.2%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (62.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.398793577283787e-07,5.851499345102643e-07,2.5336451278450836e-08)
sum a = (3.7947076036992655e-19,4.553649124439119e-18,-1.0503208545953324e-19)
sum e = 0.05007980945308131
sum de = -0.0002866117836643015
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.037379389765649536
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.473007467139213e-07,5.624561722925118e-07,2.6212426536726907e-08)
sum a = (-1.951563910473908e-18,2.4936649967166602e-18,-8.809142651444724e-20)
sum e = 0.050075397534022646
sum de = -0.00028654610213632977
Info: CFL hydro = 0.0021364861225775704 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021364861225775704 cfl multiplier : 0.40657479990617906 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.2932e+05 | 99929 | 1 | 7.727e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.815040051314547 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5869732937845422, dt = 0.0021364861225775704 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99929.0 min = 99929.0 factor = 1
- strategy "round robin" : max = 94932.5 min = 94932.5 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99929
max = 99929
avg = 99929
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (1.4%)
patch tree reduce : 1562.00 ns (0.3%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1053.00 ns (0.2%)
LB compute : 443.66 us (95.4%)
LB move op cnt : 0
LB apply : 4.12 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1983.00 ns (64.5%)
Info: sink accretion : [sph::Sink][rank=0]
id 0 deltas : mass=1.0000000005838672e-07 r=(7.991258772948923e-08,-1.6596127612691127e-09,2.6226312786668727e-09) v=(1.2890391919590525e-08,7.099343473034758e-07,-1.705160081249051e-08) l=(-1.8332187683867685e-08,1.377566398557711e-08,5.673061388416972e-07)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.168967383005019e-07,3.145419066664221e-07,1.4429375676288641e-08)
sum a = (2.9815559743351372e-18,-6.179952383167375e-18,-8.470329472543003e-21)
sum e = 0.05007358871235242
sum de = -0.0002902694147644183
Info: CFL hydro = 0.003145695644750746 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.003145695644750746 cfl multiplier : 0.6043831999374527 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5826e+05 | 99928 | 1 | 6.314e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.180834345883582 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5891097799071198, dt = 0.003145695644750746 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99928.0 min = 99928.0 factor = 1
- strategy "round robin" : max = 94931.6 min = 94931.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99928
max = 99928
avg = 99928
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.36 us (1.6%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 1022.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 378.66 us (94.9%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1954.00 ns (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.233143341164113e-07,4.5234699368751504e-07,2.1780986282140114e-08)
sum a = (-2.0057740190981832e-18,6.2341624917916505e-18,1.3552527156068805e-19)
sum e = 0.05007427173612432
sum de = -0.00029549174239787673
Info: CFL hydro = 0.003871300790107187 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.003871300790107187 cfl multiplier : 0.7362554666249684 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5654e+05 | 99928 | 1 | 6.384e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.73986029574007 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5922554755518705, dt = 0.003871300790107187 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99928.0 min = 99928.0 factor = 1
- strategy "round robin" : max = 94931.6 min = 94931.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99928
max = 99928
avg = 99928
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.90 us (1.8%)
patch tree reduce : 1923.00 ns (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 371.10 us (94.4%)
LB move op cnt : 0
LB apply : 3.99 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.821858113197136e-07,5.376072692152113e-07,2.7194935395939492e-08)
sum a = (-2.3310346708438345e-18,-9.215718466126788e-19,-2.541098841762901e-19)
sum e = 0.0500746494274448
sum de = -0.0003017085961027836
Info: CFL hydro = 0.004168996332920803 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004168996332920803 cfl multiplier : 0.8241703110833122 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5617e+05 | 99928 | 1 | 6.399e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.780643806326268 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5961267763419777, dt = 0.003873223658022229 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99928.0 min = 99928.0 factor = 1
- strategy "round robin" : max = 94931.6 min = 94931.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99928
max = 99928
avg = 99928
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.96 us (1.7%)
patch tree reduce : 1804.00 ns (0.4%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 385.86 us (94.8%)
LB move op cnt : 0
LB apply : 3.90 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.004632856824874e-07,5.138551064417436e-07,2.7680510522792114e-08)
sum a = (-3.3068166260807885e-18,-6.830473686658678e-18,-1.2027867851011065e-19)
sum e = 0.050073473450684094
sum de = -0.0003116355007664178
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.03772733042428364
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.390597903806034e-07,4.797427166648016e-07,2.837135184194351e-08)
sum a = (-2.7647155398380363e-18,7.047314121155779e-19,-1.3213713977167085e-19)
sum e = 0.05006894892381878
sum de = -0.000311577729954093
Info: CFL hydro = 0.002156239628127765 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002156239628127765 cfl multiplier : 0.4413901036944374 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.2986e+05 | 99928 | 1 | 7.695e-01 | 0.0% | 0.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.12089960005432 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 189 [SPH][rank=0]
Info: time since start : 662.2430880740001 (s) [SPH][rank=0]
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000015.vtk [VTK Dump][rank=0]
- took 5.45 ms, bandwidth = 979.06 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.32 us (54.1%)
Info: dump to _to_trash/circular_disc_sink_100000/dump/dump_0000015.sham [Shamrock Dump][rank=0]
- took 6.07 ms, bandwidth = 1.96 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 2.13 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.07 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 688.56 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 705.81 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.32 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 732.40 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.046235063 s
Info: compute_slice took 1244.48 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1233.65 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.020980056 s
Info: compute_slice took 1218.52 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1230.30 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 1197.59 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 1233.86 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.08 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
sph::RenderFieldGetter compute custom field took : 0.020496844 s
Field_f64(label=rho, tex_symbol={rho}, nvar=1) Field_f64(label=custom, tex_symbol={custom}, nvar=1)
Saving data to _to_trash/circular_disc_sink_100000/analysis/plots/density_profile_0000030.npy
Plot generation#
Load the on-the-fly analysis after the run to make the plots (everything in this section can be in another file)
619 import matplotlib
620 import matplotlib.pyplot as plt
621
622 face_on_render_kwargs = {
623 "x_unit": "au",
624 "y_unit": "au",
625 "time_unit": "year",
626 "x_label": "x",
627 "y_label": "y",
628 }
629
630 sink_params = {
631 "sink_scale_factor": 1,
632 "sink_color": "green",
633 "sink_linewidth": 1,
634 "sink_fill": False,
635 }
636
637 column_density_plot.render_all(
638 **face_on_render_kwargs,
639 field_unit="kg.m^-2",
640 field_label="$\\int \\rho \\, \\mathrm{{d}} z$",
641 vmin=1,
642 vmax=1e4,
643 norm="log",
644 **sink_params,
645 )
646
647 column_density_plot_hollywood.render_all(
648 **face_on_render_kwargs,
649 field_unit="kg.m^-2",
650 field_label="$\\int \\rho \\, \\mathrm{{d}} z$",
651 vmin=1,
652 vmax=1e4,
653 norm="log",
654 holywood_mode=True,
655 **sink_params,
656 )
657
658 vertical_density_plot.render_all(
659 **face_on_render_kwargs,
660 field_unit="kg.m^-3",
661 field_label="$\\rho$",
662 vmin=1e-10,
663 vmax=1e-6,
664 norm="log",
665 **sink_params,
666 )
667
668 v_z_slice_plot.render_all(
669 **face_on_render_kwargs,
670 field_unit="m.s^-1",
671 field_label="$\\mathrm{v}_z$",
672 cmap="seismic",
673 cmap_bad_color="white",
674 vmin=-300,
675 vmax=300,
676 **sink_params,
677 )
678
679 relative_azy_velocity_slice_plot.render_all(
680 **face_on_render_kwargs,
681 field_unit="m.s^-1",
682 field_label="$\\mathrm{v}_{\\theta} - v_k$",
683 cmap="seismic",
684 cmap_bad_color="white",
685 vmin=-300,
686 vmax=300,
687 **sink_params,
688 )
689
690 vertical_shear_gradient_slice_plot.render_all(
691 **face_on_render_kwargs,
692 field_unit="yr^-1",
693 field_label="${{\\partial R \\Omega}}/{{\\partial z}}$",
694 cmap="seismic",
695 cmap_bad_color="white",
696 vmin=-1,
697 vmax=1,
698 **sink_params,
699 )
700
701 dt_part_slice_plot.render_all(
702 **face_on_render_kwargs,
703 field_unit="year",
704 field_label="$\\Delta t$",
705 vmin=1e-4,
706 vmax=1,
707 norm="log",
708 contour_list=[1e-4, 1e-3, 1e-2, 1e-1, 1],
709 **sink_params,
710 )
711
712 column_particle_count_plot.render_all(
713 **face_on_render_kwargs,
714 field_unit=None,
715 field_label="$\\int \\frac{1}{h_\\mathrm{part}} \\, \\mathrm{{d}} z$",
716 vmin=1,
717 vmax=1e2,
718 norm="log",
719 contour_list=[1, 10, 100, 1000],
720 **sink_params,
721 )
722
723
724 def profile_plot_func(iplot, data):
725
726 data = data.item()
727
728 bin_edges_x1d = data["bin_edges_x1d"]
729 bin_edges_x = data["bin_edges_x"]
730 bin_edges_y = data["bin_edges_y"]
731 histo = data["histo"]
732 histo_convolve = data["histo_convolve"]
733 histo_2d = data["histo_2d"]
734 time = data["time"]
735
736 bin_center = (bin_edges_x1d[:-1] + bin_edges_x1d[1:]) / 2
737
738 plt.figure(dpi=150)
739
740 plt.pcolormesh(
741 bin_edges_x, bin_edges_y, histo_2d, norm="log", cmap="Greys", vmin=1, vmax=2, shading="auto"
742 )
743
744 plt.plot(bin_center, histo)
745 plt.plot(bin_center, histo_convolve)
746 plt.xlabel("r")
747 plt.ylabel("density")
748
749 plt.xscale("log")
750 plt.yscale("log")
751
752 text = f"t = {time:0.3f}"
753 from matplotlib.offsetbox import AnchoredText
754
755 anchored_text = AnchoredText(text, loc=2)
756 plt.gca().add_artist(anchored_text)
757
758 plt.savefig(profile_plot.analysis_prefix + f"{iplot:07}.png")
759 plt.close()
760
761
762 profile_plot.render_all(profile_plot_func)
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
771 render_gif = True
Do it for rho integ
776 if render_gif:
777 ani = column_density_plot.render_gif(gif_filename="rho_integ.gif", save_animation=True)
778 if ani is not None:
779 plt.show()
Same but in hollywood
784 if render_gif:
785 ani = column_density_plot_hollywood.render_gif(
786 gif_filename="rho_integ_hollywood.gif", save_animation=True
787 )
788 if ani is not None:
789 plt.show()
For the vertical density plot
793 if render_gif and shamrock.sys.world_rank() == 0:
794 ani = vertical_density_plot.render_gif(gif_filename="rho_slice.gif", save_animation=True)
795 if ani is not None:
796 plt.show()
Make a gif from the plots
801 if render_gif and shamrock.sys.world_rank() == 0:
802 ani = v_z_slice_plot.render_gif(gif_filename="v_z_slice.gif", save_animation=True)
803 if ani is not None:
804 plt.show()
Make a gif from the plots
809 if render_gif and shamrock.sys.world_rank() == 0:
810 ani = relative_azy_velocity_slice_plot.render_gif(
811 gif_filename="relative_azy_velocity_slice.gif", save_animation=True
812 )
813 if ani is not None:
814 plt.show()
Make a gif from the plots
818 if render_gif and shamrock.sys.world_rank() == 0:
819 ani = vertical_shear_gradient_slice_plot.render_gif(
820 gif_filename="vertical_shear_gradient_slice.gif", save_animation=True
821 )
822 if ani is not None:
823 plt.show()
Make a gif from the plots
827 if render_gif and shamrock.sys.world_rank() == 0:
828 ani = dt_part_slice_plot.render_gif(gif_filename="dt_part_slice.gif", save_animation=True)
829 if ani is not None:
830 plt.show()
Make a gif from the plots
834 if render_gif and shamrock.sys.world_rank() == 0:
835 ani = column_particle_count_plot.render_gif(
836 gif_filename="particle_count.gif", save_animation=True
837 )
838 if ani is not None:
839 plt.show()
Make a gif from the plots
843 if render_gif and shamrock.sys.world_rank() == 0:
844 ani = profile_plot.render_gif(
845 profile_plot.analysis_prefix + "*.png",
846 gif_filename="density_profile.gif",
847 save_animation=True,
848 )
849 if ani is not None:
850 plt.show()
helper function to load data from JSON files
855 def load_data_from_json(filename, key):
856 filepath = os.path.join(analysis_folder, filename)
857 with open(filepath, "r") as fp:
858 data = json.load(fp)[key]
859 t = [d["t"] for d in data]
860 values = [d[key] for d in data]
861 return t, values
load the json file for barycenter
866 t, barycenter = load_data_from_json("barycenter.json", "barycenter")
867 barycenter_x = [d[0] for d in barycenter]
868 barycenter_y = [d[1] for d in barycenter]
869 barycenter_z = [d[2] for d in barycenter]
870
871 plt.figure(figsize=(8, 5), dpi=200)
872
873 plt.plot(t, barycenter_x)
874 plt.plot(t, barycenter_y)
875 plt.plot(t, barycenter_z)
876 plt.xlabel("t")
877 plt.ylabel("barycenter")
878 plt.legend(["x", "y", "z"])
879 plt.savefig(analysis_folder + "barycenter.png")
880 plt.show()

load the json file for disc_mass
884 t, disc_mass = load_data_from_json("disc_mass.json", "disc_mass")
885
886 plt.figure(figsize=(8, 5), dpi=200)
887
888 plt.plot(t, disc_mass)
889 plt.xlabel("t")
890 plt.ylabel("disc_mass")
891 plt.savefig(analysis_folder + "disc_mass.png")
892 plt.show()

load the json file for total_momentum
896 t, total_momentum = load_data_from_json("total_momentum.json", "total_momentum")
897 total_momentum_x = [d[0] for d in total_momentum]
898 total_momentum_y = [d[1] for d in total_momentum]
899 total_momentum_z = [d[2] for d in total_momentum]
900
901 plt.figure(figsize=(8, 5), dpi=200)
902
903 plt.plot(t, total_momentum_x)
904 plt.plot(t, total_momentum_y)
905 plt.plot(t, total_momentum_z)
906 plt.xlabel("t")
907 plt.ylabel("total_momentum")
908 plt.legend(["x", "y", "z"])
909 plt.savefig(analysis_folder + "total_momentum.png")
910 plt.show()

load the json file for total_momentum
915 t, angular_momentum = load_data_from_json("angular_momentum.json", "angular_momentum")
916 angular_momentum_x = [d[0] - angular_momentum[0][0] for d in angular_momentum]
917 angular_momentum_y = [d[1] - angular_momentum[0][1] for d in angular_momentum]
918 angular_momentum_z = [d[2] - angular_momentum[0][2] for d in angular_momentum]
919
920
921 plt.figure(figsize=(8, 5), dpi=200)
922
923 plt.plot(t, angular_momentum_x)
924 plt.plot(t, angular_momentum_y)
925 plt.plot(t, angular_momentum_z)
926 plt.xlabel("t")
927 plt.ylabel(r"$\mathrm{L} - \mathrm{L}(t=0)$")
928 plt.legend(["x", "y", "z"])
929 plt.savefig(analysis_folder + "angular_momentum.png")

load the json file for energies
933 t, potential_energy = load_data_from_json("potential_energy.json", "potential_energy")
934 _, kinetic_energy = load_data_from_json("kinetic_energy.json", "kinetic_energy")
935
936 total_energy = [p + k for p, k in zip(potential_energy, kinetic_energy)]
937
938 plt.figure(figsize=(8, 5), dpi=200)
939 plt.plot(t, potential_energy)
940 plt.plot(t, kinetic_energy)
941 plt.plot(t, total_energy)
942 plt.xlabel("t")
943 plt.ylabel("energy")
944 plt.legend(["potential_energy", "kinetic_energy", "total_energy"])
945 plt.savefig(analysis_folder + "energies.png")
946 plt.show()

load the json file for sinks
950 t, sinks = load_data_from_json("sinks.json", "sinks")
951
952 sinks_x = [d[0]["pos"][0] for d in sinks]
953 sinks_y = [d[0]["pos"][1] for d in sinks]
954 sinks_z = [d[0]["pos"][2] for d in sinks]
955
956 plt.figure(figsize=(8, 5), dpi=200)
957 plt.plot(t, sinks_x, label="sink 0 (x)")
958 plt.plot(t, sinks_y, label="sink 0 (y)")
959 plt.plot(t, sinks_z, label="sink 0 (z)")
960 plt.xlabel("t")
961 plt.ylabel("sink position")
962 plt.legend()
963 plt.savefig(analysis_folder + "sinks.png")
964 plt.show()

Sink angular momentum
968 t, sinks = load_data_from_json("sinks.json", "sinks")
969
970 sinks_lx = np.array([d[0]["angular_momentum"][0] for d in sinks])
971 sinks_ly = np.array([d[0]["angular_momentum"][1] for d in sinks])
972 sinks_lz = np.array([d[0]["angular_momentum"][2] for d in sinks])
973
974
975 plt.figure(figsize=(8, 5), dpi=200)
976 plt.plot(t, sinks_lx, label="sink 0 (l_x)")
977 plt.plot(t, sinks_ly, label="sink 0 (l_y)")
978 plt.plot(t, sinks_lz, label="sink 0 (l_z)")
979 plt.xlabel("t")
980 plt.ylabel("sink spin")
981 plt.legend()
982 plt.savefig(analysis_folder + "sink_angular_momentum.png")
983 plt.show()

Sink to barycenter distance
987 t, sinks = load_data_from_json("sinks.json", "sinks")
988 _, barycenter = load_data_from_json("barycenter.json", "barycenter")
989
990 barycenter_x = np.array([d[0] for d in barycenter])
991 barycenter_y = np.array([d[1] for d in barycenter])
992 barycenter_z = np.array([d[2] for d in barycenter])
993
994 sinks_x = np.array([d[0]["pos"][0] for d in sinks])
995 sinks_y = np.array([d[0]["pos"][1] for d in sinks])
996 sinks_z = np.array([d[0]["pos"][2] for d in sinks])
997
998
999 plt.figure(figsize=(8, 5), dpi=200)
1000 plt.plot(t, sinks_x - barycenter_x, label="sink 0 (x)")
1001 plt.plot(t, sinks_y - barycenter_y, label="sink 0 (y)")
1002 plt.plot(t, sinks_z - barycenter_z, label="sink 0 (z)")
1003 plt.xlabel("t")
1004 plt.ylabel("sink pos - barycenter pos")
1005 plt.legend()
1006 plt.savefig(analysis_folder + "sink_to_barycenter_distance.png")
1007 plt.show()

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







