Note
Go to the end to download the full example code.
Production run: Black hole disc & lense thirring effect#
This example demonstrates how to run a smoothed particle hydrodynamics (SPH) simulation of a circular disc orbiting around a central point mass potential.
The simulation models:
A central star with a given mass and accretion radius
A gaseous disc with specified mass, inner/outer radii, and vertical structure
Artificial viscosity for angular momentum transport
Locally isothermal equation of state
Also this simulation feature rolling dumps (see purge_old_dumps function) to save disk space.
This example is the accumulation of 3 files in a single one to showcase the complete workflow.
The actual run script (runscript.py)
Plot generation (make_plots.py)
Animation from the plots (plot_to_gif.py)
On a cluster or laptop, one can run the code as follows:
mpirun <your parameters> ./shamrock --sycl-cfg 0:0 --loglevel 1 --rscript runscript.py
then after the run is done (or while it is running), one can run the following to generate the plots:
python make_plots.py
Runscript (runscript.py)#
The runscript is the actual simulation with on the fly analysis & rolling dumps
44 import glob
45 import json
46 import os # for makedirs
47
48 import numpy as np
49
50 import shamrock
51 from shamrock import NeighCacheStrategy
52
53 # If we use the shamrock executable to run this script instead of the python interpreter,
54 # we should not initialize the system as the shamrock executable needs to handle specific MPI logic
55 if not shamrock.sys.is_initialized():
56 shamrock.change_loglevel(1)
57 shamrock.sys.init("0:0")
-> modified loglevel to 0 enabled log types :
log status :
- Loglevel: 1, enabled log types :
[xxx] Info: xxx ( logger::info )
[xxx] : xxx ( logger::normal )
[xxx] Warning: xxx ( logger::warn )
[xxx] Error: xxx ( logger::err )
Use shamrock documentation style for matplotlib
61 shamrock.matplotlib.set_shamrock_mpl_style()
Setup units
67 si = shamrock.UnitSystem()
68 sicte = shamrock.Constants(si)
69 codeu = shamrock.UnitSystem(
70 unit_time=sicte.second(),
71 unit_length=sicte.au(),
72 unit_mass=sicte.sol_mass(),
73 )
74 ucte = shamrock.Constants(codeu)
75 G = ucte.G()
76 c = ucte.c()
List parameters
81 # Resolution
82 Npart = 100000
83
84 # Domain decomposition parameters
85 scheduler_split_val = int(1.0e7) # split patches with more than 1e7 particles
86 scheduler_merge_val = scheduler_split_val // 16
87
88 # Disc parameter
89 center_mass = 1e6 # [sol mass]
90 disc_mass = 0.001 # [sol mass]
91 Rg = G * center_mass / (c * c) # [au]
92 rin = 4.0 * Rg # [au]
93 rout = 10 * rin # [au]
94 r0 = rin # [au]
95
96 H_r_0 = 0.01
97 q = 0.75
98 p = 3.0 / 2.0
99
100 Tin = 2 * np.pi * np.sqrt(rin * rin * rin / (G * center_mass))
101 if shamrock.sys.world_rank() == 0:
102 print(" Orbital period : ", Tin, " [seconds]")
103
104 # Sink parameters
105 center_racc = rin / 2.0 # [au]
106 inclination = 30.0 * np.pi / 180.0
107
108
109 # Viscosity parameter
110 alpha_AV = 1.0e-3 / 0.08
111 alpha_u = 1.0
112 beta_AV = 2.0
113
114 # Integrator parameters
115 C_cour = 0.3
116 C_force = 0.25
117
118
119 # Dump and plot frequency and duration of the simulation
120 dump_freq_stop = 1
121 plot_freq_stop = 1
122
123 dt_stop = Tin / 10.0
124 nstop = 10
125
126 # The list of times at which the simulation will pause for analysis / dumping
127 t_stop = [i * dt_stop for i in range(nstop + 1)]
128
129
130 sim_folder = f"_to_trash/black_hole_disc_lense_thirring_{Npart}/"
131
132 dump_folder = sim_folder + "dump/"
133 analysis_folder = sim_folder + "analysis/"
134 plot_folder = analysis_folder + "plots/"
135
136 dump_prefix = dump_folder + "dump_"
137
138
139 # Disc profiles
140 def sigma_profile(r):
141 sigma_0 = 1.0 # We do not care as it will be renormalized
142 return sigma_0 * (r / r0) ** (-p)
143
144
145 def kep_profile(r):
146 return (G * center_mass / r) ** 0.5
147
148
149 def omega_k(r):
150 return kep_profile(r) / r
151
152
153 def cs_profile(r):
154 cs_in = (H_r_0 * r0) * omega_k(r0)
155 return ((r / r0) ** (-q)) * cs_in
Orbital period : 247.58972132551145 [seconds]
Create the dump directory if it does not exist
160 if shamrock.sys.world_rank() == 0:
161 os.makedirs(sim_folder, exist_ok=True)
162 os.makedirs(dump_folder, exist_ok=True)
163 os.makedirs(analysis_folder, exist_ok=True)
164 os.makedirs(plot_folder, exist_ok=True)
Utility functions and quantities deduced from the base one
169 # Deduced quantities
170 pmass = disc_mass / Npart
171
172 bsize = rout * 2
173 bmin = (-bsize, -bsize, -bsize)
174 bmax = (bsize, bsize, bsize)
175
176 cs0 = cs_profile(r0)
177
178
179 def rot_profile(r):
180 return ((kep_profile(r) ** 2) - (2 * p + q) * cs_profile(r) ** 2) ** 0.5
181
182
183 def H_profile(r):
184 H = cs_profile(r) / omega_k(r)
185 # fact = (2.**0.5) * 3. # factor taken from phantom, to fasten thermalizing
186 fact = 1.0
187 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)
195 ctx = shamrock.Context()
196 ctx.pdata_layout_new()
Attach a SPH model to the context
201 model = shamrock.get_Model_SPH(context=ctx, vector_type="f64_3", sph_kernel="M4")
Dump handling
208 def get_vtk_dump_name(idump):
209 return dump_prefix + f"{idump:07}" + ".vtk"
210
211
212 def get_ph_dump_name(idump):
213 return dump_prefix + f"{idump:07}" + ".phdump"
214
215
216 dump_helper = shamrock.utils.dump.ShamrockDumpHandleHelper(model, dump_prefix)
Load the last dump if it exists, setup otherwise
222 def setup_model():
223 global disc_mass
224
225 # Generate the default config
226 cfg = model.gen_default_config()
227 cfg.set_artif_viscosity_ConstantDisc(alpha_u=alpha_u, alpha_AV=alpha_AV, beta_AV=beta_AV)
228 cfg.set_eos_locally_isothermalLP07(cs0=cs0, q=q, r0=r0)
229
230 # cfg.add_ext_force_point_mass(center_mass, center_racc)
231
232 cfg.add_kill_sphere(center=(0, 0, 0), radius=bsize) # kill particles outside the simulation box
233 cfg.add_ext_force_lense_thirring(
234 central_mass=center_mass,
235 Racc=rin,
236 a_spin=0.9,
237 dir_spin=(np.sin(inclination), np.cos(inclination), 0.0),
238 )
239
240 cfg.set_units(codeu)
241 cfg.set_particle_mass(pmass)
242 # Set the CFL
243 cfg.set_cfl_cour(C_cour)
244 cfg.set_cfl_force(C_force)
245
246 # On a chaotic disc, we disable to two stage search to avoid giant leaves
247 cfg.set_tree_reduction_level(6)
248 cfg.set_neigh_cache_strategy(NeighCacheStrategy.SingleStage)
249
250 # Enable this to debug the neighbor counts
251 # cfg.set_show_neigh_stats(True)
252
253 # Standard way to set the smoothing length (e.g. Price et al. 2018)
254 cfg.set_smoothing_length_density_based()
255
256 # Standard density based smoothing length but with a neighbor count limit
257 # Use it if you have large slowdowns due to giant particles
258 # I recommend to use it if you have a circumbinary discs as the issue is very likely to happen
259 # cfg.set_smoothing_length_density_based_neigh_lim(500)
260
261 cfg.set_save_dt_to_fields(True)
262
263 # Set the solver config to be the one stored in cfg
264 model.set_solver_config(cfg)
265
266 # Print the solver config
267 model.get_current_config().print_status()
268
269 # Init the scheduler & fields
270 model.init_scheduler(scheduler_split_val, scheduler_merge_val)
271
272 # Set the simulation box size
273 model.resize_simulation_box(bmin, bmax)
274
275 # Create the setup
276
277 setup = model.get_setup()
278 gen_disc = setup.make_generator_disc_mc(
279 part_mass=pmass,
280 disc_mass=disc_mass,
281 r_in=rin,
282 r_out=rout,
283 sigma_profile=sigma_profile,
284 H_profile=H_profile,
285 rot_profile=rot_profile,
286 cs_profile=cs_profile,
287 random_seed=666,
288 init_h_factor=0.03,
289 )
290
291 # Print the dot graph of the setup
292 print(gen_disc.get_dot())
293
294 # Apply the setup
295 setup.apply_setup(gen_disc)
296
297 # correct the momentum and barycenter of the disc to 0
298 analysis_momentum = shamrock.model_sph.analysisTotalMomentum(model=model)
299 total_momentum = analysis_momentum.get_total_momentum()
300
301 if shamrock.sys.world_rank() == 0:
302 print(f"disc momentum = {total_momentum}")
303
304 model.apply_momentum_offset((-total_momentum[0], -total_momentum[1], -total_momentum[2]))
305
306 # Correct the barycenter
307 analysis_barycenter = shamrock.model_sph.analysisBarycenter(model=model)
308 barycenter, disc_mass = analysis_barycenter.get_barycenter()
309
310 if shamrock.sys.world_rank() == 0:
311 print(f"disc barycenter = {barycenter}")
312
313 model.apply_position_offset((-barycenter[0], -barycenter[1], -barycenter[2]))
314
315 total_momentum = shamrock.model_sph.analysisTotalMomentum(model=model).get_total_momentum()
316
317 if shamrock.sys.world_rank() == 0:
318 print(f"disc momentum after correction = {total_momentum}")
319
320 barycenter, disc_mass = shamrock.model_sph.analysisBarycenter(model=model).get_barycenter()
321
322 if shamrock.sys.world_rank() == 0:
323 print(f"disc barycenter after correction = {barycenter}")
324
325 if not np.allclose(total_momentum, 0.0):
326 raise RuntimeError("disc momentum is not 0")
327 if not np.allclose(barycenter, 0.0):
328 raise RuntimeError("disc barycenter is not 0")
329
330 # Run a single step to init the integrator and smoothing length of the particles
331 # Here the htolerance is the maximum factor of evolution of the smoothing length in each
332 # Smoothing length iterations, increasing it affect the performance negatively but increase the
333 # convergence rate of the smoothing length
334 # this is why we increase it temporely to 1.3 before lowering it back to 1.1 (default value)
335 # Note that both ``change_htolerances`` can be removed and it will work the same but would converge
336 # more slowly at the first timestep
337
338 model.change_htolerances(coarse=1.3, fine=1.1)
339 model.timestep()
340 model.change_htolerances(coarse=1.1, fine=1.1)
341
342
343 dump_helper.load_last_dump_or(setup_model)
----- SPH Solver configuration -----
[
{
"artif_viscosity": {
"alpha_AV": 0.0125,
"alpha_u": 1.0,
"beta_AV": 2.0,
"type": "constant_disc"
},
"boundary_config": {
"bc_type": "free"
},
"cfl_config": {
"cfl_cour": 0.3,
"cfl_force": 0.25,
"cfl_multiplier_stiffness": 2.0,
"eta_sink": 0.05
},
"combined_dtdiv_divcurlv_compute": false,
"debug_dump_filename": "",
"do_debug_dump": false,
"dust_config": {
"ballabio_ts_limiter": false,
"drag_mode": {
"type": "none"
},
"evol_mode": {
"type": "none"
},
"mode": {
"type": "none"
}
},
"enable_particle_reordering": false,
"eos_config": {
"Tvec": "f64_3",
"cs0": 1.0019944020500018e-05,
"eos_type": "locally_isothermal_lp07",
"q": 0.75,
"r0": 0.03948371767577914
},
"epsilon_h": 1e-06,
"ext_force_config": {
"force_list": [
{
"Racc": 0.03948371767577914,
"a_spin": 0.9,
"central_mass": 1000000.0,
"central_pos": [
0.0,
0.0,
0.0
],
"central_vel": [
0.0,
0.0,
0.0
],
"dir_spin": [
0.49999999999999994,
0.8660254037844387,
0.0
],
"force_type": "lense_thirring"
}
]
},
"gpart_mass": 1e-08,
"h_iter_per_subcycles": 50,
"h_max_subcycles_count": 100,
"htol_up_coarse_cycle": 1.1,
"htol_up_fine_cycle": 1.1,
"kernel_id": "M4<f64>",
"mhd_config": {
"mhd_type": "none"
},
"neigh_cache_strategy": "single_stage",
"particle_killing": [
{
"center": [
0.0,
0.0,
0.0
],
"radius": 0.7896743535155828,
"type": "sphere"
}
],
"particle_reordering_step_freq": 1000,
"save_dt_to_fields": true,
"scheduler_config": {
"merge_load_value": 0,
"split_load_value": 0
},
"self_grav_config": {
"softening_length": 1e-09,
"softening_mode": "plummer",
"type": "none"
},
"show_cfl_detail": false,
"show_ghost_zone_graph": false,
"show_neigh_stats": false,
"smoothing_length_config": {
"type": "density_based"
},
"tree_reduction_level": 6,
"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": 1.0
}
}
]
------------------------------------
Warning: make_generator_disc_mc: with the current EOS, cs_profile is ignored [SPHSetup][rank=0]
digraph G {
rankdir=LR;
node_0 [label="GeneratorMCDisc"];
node_2 [label="Simulation"];
node_0 -> node_2;
}
SPH setup: generating particles ...
SPH setup: Nstep = 100000 ( 1.0e+05 ) Ntotal = 100000 ( 1.0e+05 rank min = 3.3e+05 max = 1.0e+05) rate = 1.000000e+05 N.s^-1
SPH setup: the generation step took : 0.30511703 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 : 17.78 us (78.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 : 1.45 us (0.2%)
patch tree reduce : 1.16 us (0.1%)
gen split merge : 5.05 us (0.6%)
split / merge op : 0/0
apply split merge : 711.00 ns (0.1%)
LB compute : 816.47 us (97.9%)
LB move op cnt : 0
LB apply : 4.74 us (0.6%)
Info: patch count stable after 1 runs npatch = 1 [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
SPH setup: injected 100000 / 100000 => 100.0% | ranks with patchs = 1 / 1 <- global loop -> (msg count : 0)
SPH setup: the injection step took : 0.011018545000000001 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.6% 0.0% | 2.15 GB | 2.15 GB |
+------+--------------------+-------+-------------+-------------+-------------+
SPH setup: the setup took : 0.343365256 s
Info: defaulting reduction implementation to impl : {"implementation":"group_reduction","parameters":{"group_size":128}} [algs][rank=0]
disc momentum = (-9.307153362617869e-10, 3.304700140606411e-11, 0.0)
disc barycenter = (-0.0006004574646296655, 0.0006182195209169494, -1.1798577415312227e-06)
disc momentum after correction = (-8.52771512753887e-23, 1.1954052321098364e-22, 0.0)
disc barycenter after correction = (-1.1372740805869067e-16, 4.552802091491864e-18, 4.570172884355478e-20)
---------------- 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.39 us (1.9%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 322.20 us (94.3%)
LB move op cnt : 0
LB apply : 3.21 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: defaulting sort by key (pow2 len) implementation to impl : {"implementation":"bitonic_sort","parameters":{"stencil_size":16}} [algs][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.0065693011294521006 unconverged cnt = 99936
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.008540091468287731 unconverged cnt = 99933
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.008554580517302433 unconverged cnt = 99926
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.008554580517302431 unconverged cnt = 99915
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.008554580517302431 unconverged cnt = 99889
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.008801544387443572 unconverged cnt = 99824
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.008801544387443573 unconverged cnt = 99591
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.009558608691801695 unconverged cnt = 98964
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010612616124646162 unconverged cnt = 96922
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010612616124661666 unconverged cnt = 87049
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010612616124661666 unconverged cnt = 45089
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010612616124661666 unconverged cnt = 3023
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010612616124661666 unconverged cnt = 14
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.48037453836685e-10,3.4164855531118977e-10,0)
sum a = (-1.2215184055212008e-11,1.2738524452908477e-12,2.987363203572052e-13)
sum e = 1.2794654215224175e-10
sum de = 9.773894829384809e-17
Info: cfl dt = 0.015168073714520974 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.8748e+04 | 99937 | 1 | 3.476e+00 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [sph::Model][rank=0]
On the fly analysis
348 def save_rho_integ(ext, arr_rho, iplot):
349 if shamrock.sys.world_rank() == 0:
350 metadata = {"extent": [-ext, ext, -ext, ext], "time": model.get_time()}
351 np.save(plot_folder + f"rho_integ_{iplot:07}.npy", arr_rho)
352
353 with open(plot_folder + f"rho_integ_{iplot:07}.json", "w") as fp:
354 json.dump(metadata, fp)
355
356
357 def save_vxyz_integ(ext, arr_vxyz, iplot):
358 if shamrock.sys.world_rank() == 0:
359 metadata = {"extent": [-ext, ext, -ext, ext], "time": model.get_time()}
360 np.save(plot_folder + f"vxyz_integ_{iplot:07}.npy", arr_vxyz)
361
362 with open(plot_folder + f"vxyz_integ_{iplot:07}.json", "w") as fp:
363 json.dump(metadata, fp)
364
365
366 def save_analysis_data(filename, key, value, ianalysis):
367 """Helper to save analysis data to a JSON file."""
368 if shamrock.sys.world_rank() == 0:
369 filepath = os.path.join(analysis_folder, filename)
370 try:
371 with open(filepath, "r") as fp:
372 data = json.load(fp)
373 except (FileNotFoundError, json.JSONDecodeError):
374 data = {key: []}
375 data[key] = data[key][:ianalysis]
376 data[key].append({"t": model.get_time(), key: value})
377 with open(filepath, "w") as fp:
378 json.dump(data, fp, indent=4)
379
380
381 from shamrock.utils.analysis import (
382 ColumnAverageVzPlot,
383 ColumnDensityPlot,
384 PerfHistory,
385 SliceDensityPlot,
386 SliceDtPart,
387 )
388
389 perf_analysis = PerfHistory(model, analysis_folder, "perf_history")
390
391 column_density_plot = ColumnDensityPlot(
392 model,
393 ext_r=rout * 1.5,
394 nx=1024,
395 ny=1024,
396 ex=(1, 0, 0),
397 ey=(0, 1, 0),
398 center=(0, 0, 0),
399 analysis_folder=analysis_folder,
400 analysis_prefix="rho_integ_normal",
401 )
402
403 column_density_plot_hollywood = ColumnDensityPlot(
404 model,
405 ext_r=rout * 1.5,
406 nx=1024,
407 ny=1024,
408 ex=(1, 0, 0),
409 ey=(0, 1, 0),
410 center=(0, 0, 0),
411 analysis_folder=analysis_folder,
412 analysis_prefix="rho_integ_hollywood",
413 )
414
415 vertical_density_plot = SliceDensityPlot(
416 model,
417 ext_r=rout * 1.1 / (16.0 / 9.0), # aspect ratio of 16:9
418 nx=1920,
419 ny=1080,
420 ex=(1, 0, 0),
421 ey=(0, 0, 1),
422 center=(0, 0, 0),
423 analysis_folder=analysis_folder,
424 analysis_prefix="rho_slice",
425 )
426
427
428 dt_part_slice_plot = SliceDtPart(
429 model,
430 ext_r=rout * 0.5 / (16.0 / 9.0), # aspect ratio of 16:9
431 nx=1920,
432 ny=1080,
433 ex=(1, 0, 0),
434 ey=(0, 0, 1),
435 center=((rin + rout) / 2, 0, 0),
436 analysis_folder=analysis_folder,
437 analysis_prefix="dt_part_slice",
438 )
439
440
441 column_average_vz_plot = ColumnAverageVzPlot(
442 model,
443 ext_r=rout * 1.5,
444 nx=1024,
445 ny=1024,
446 ex=(1, 0, 0),
447 ey=(0, 1, 0),
448 center=(0, 0, 0),
449 analysis_folder=analysis_folder,
450 analysis_prefix="column_average_vz",
451 )
452
453
454 def analysis(ianalysis):
455 ext = rout * 1.5
456 nx = 1024
457 ny = 1024
458
459 column_density_plot.analysis_save(ianalysis)
460 column_density_plot_hollywood.analysis_save(ianalysis)
461 vertical_density_plot.analysis_save(ianalysis)
462 dt_part_slice_plot.analysis_save(ianalysis)
463 column_average_vz_plot.analysis_save(ianalysis)
464
465 barycenter, disc_mass = shamrock.model_sph.analysisBarycenter(model=model).get_barycenter()
466
467 total_momentum = shamrock.model_sph.analysisTotalMomentum(model=model).get_total_momentum()
468
469 potential_energy = shamrock.model_sph.analysisEnergyPotential(
470 model=model
471 ).get_potential_energy()
472
473 kinetic_energy = shamrock.model_sph.analysisEnergyKinetic(model=model).get_kinetic_energy()
474
475 save_analysis_data("barycenter.json", "barycenter", barycenter, ianalysis)
476 save_analysis_data("disc_mass.json", "disc_mass", disc_mass, ianalysis)
477 save_analysis_data("total_momentum.json", "total_momentum", total_momentum, ianalysis)
478 save_analysis_data("potential_energy.json", "potential_energy", potential_energy, ianalysis)
479 save_analysis_data("kinetic_energy.json", "kinetic_energy", kinetic_energy, ianalysis)
480
481 perf_analysis.analysis_save(ianalysis)
Evolve the simulation
486 model.solver_logs_reset_cumulated_step_time()
487 model.solver_logs_reset_step_count()
488
489 t_start = model.get_time()
490
491 idump = 0
492 iplot = 0
493 istop = 0
494 for ttarg in t_stop:
495 if ttarg >= t_start:
496 model.evolve_until(ttarg)
497
498 if istop % dump_freq_stop == 0:
499 model.do_vtk_dump(get_vtk_dump_name(idump), True)
500 dump_helper.write_dump(idump, purge_old_dumps=True, keep_first=1, keep_last=3)
501
502 # dump = model.make_phantom_dump()
503 # dump.save_dump(get_ph_dump_name(idump))
504
505 if istop % plot_freq_stop == 0:
506 analysis(iplot)
507
508 if istop % dump_freq_stop == 0:
509 idump += 1
510
511 if istop % plot_freq_stop == 0:
512 iplot += 1
513
514 istop += 1
Info: evolve_until (target_time = 0.00s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
Info: iteration since start : 1 [SPH][rank=0]
Info: time since start : 15.008297952000001 (s) [SPH][rank=0]
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000000.vtk [VTK Dump][rank=0]
- took 24.27 ms, bandwidth = 230.60 MB/s
Info: Dumping state to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000000.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (32.5%)
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000000.sham [Shamrock Dump][rank=0]
- took 8.45 ms, bandwidth = 1.52 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 957.33 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_normal_0000000.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_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 957.54 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_hollywood_0000000.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_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 195.39 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 194.85 ms [sph::CartesianRender][rank=0]
/usr/local/lib/python3.10/dist-packages/shamrock/utils/analysis/StandardPlotHelper.py:59: RuntimeWarning: invalid value encountered in divide
ret = field / normalization
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_slice_0000000.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_slice_0000000.json
Info: compute_slice field_name: dt_part, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 330.32 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 331.07 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/dt_part_slice_0000000.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/dt_part_slice_0000000.json
Info: compute_column_integ field_name: custom, rays count: 1048576 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.016381841 s
Info: compute_column_integ took 962.85 ms [sph::CartesianRender][rank=0]
Info: compute_column_integ field_name: unity, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 959.89 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/column_average_vz_0000000.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/column_average_vz_0000000.json
Warning: step count is 0, skipping save of perf history
Info: evolve_until (target_time = 24.76s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0, dt = 0.015168073714520974 ----------------
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 : 7.17 us (1.6%)
patch tree reduce : 1.20 us (0.3%)
gen split merge : 893.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 438.64 us (95.5%)
LB move op cnt : 0
LB apply : 3.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (71.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.478521730244561e-10,3.41667877199299e-10,4.531254528384217e-15)
sum a = (-1.2220481889570355e-11,1.2658497411658693e-12,3.0470649101029276e-13)
sum e = 1.2794654644004925e-10
sum de = 9.803644478106684e-17
Info: cfl dt = 0.5157187331159753 cfl multiplier : 0.34 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.0551e+05 | 99937 | 1 | 4.863e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.29210964293237 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.015168073714520974, dt = 0.5157187331159753 ----------------
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.16 us (1.7%)
patch tree reduce : 957.00 ns (0.3%)
gen split merge : 1.18 us (0.3%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.2%)
LB compute : 340.61 us (94.6%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (69.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.4154980140723405e-10,3.423206389310801e-10,1.617193780387299e-13)
sum a = (-1.2396913900990976e-11,9.90450841480306e-13,5.084886241385408e-13)
sum e = 1.2794983717466656e-10
sum de = 1.07744762806745e-16
Info: cfl dt = 0.8496983445513998 cfl multiplier : 0.56 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.2582e+05 | 99937 | 1 | 4.425e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4195.276807681581 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5308868068304963, dt = 0.8496983445513998 ----------------
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 : 5.08 us (1.5%)
patch tree reduce : 1.17 us (0.3%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 928.00 ns (0.3%)
LB compute : 321.74 us (94.8%)
LB move op cnt : 0
LB apply : 2.91 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.397776438385988e-10,3.3838887997362093e-10,4.908859063543521e-13)
sum a = (-1.2546444515712495e-11,7.478768075589297e-13,7.371097880653602e-13)
sum e = 1.2795050719555384e-10
sum de = 1.1750090085628137e-16
Info: cfl dt = 1.0730433663314185 cfl multiplier : 0.7066666666666667 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.2554e+05 | 99936 | 1 | 4.431e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6903.587226809126 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.380585151381896, dt = 1.0730433663314185 ----------------
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.54 us (2.0%)
patch tree reduce : 961.00 ns (0.3%)
gen split merge : 778.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 948.00 ns (0.3%)
LB compute : 304.20 us (94.1%)
LB move op cnt : 0
LB apply : 3.83 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2619664396704665e-10,3.389913799817497e-10,1.426797650895223e-12)
sum a = (-1.2869345151308501e-11,1.3692231015683682e-13,1.1672042914892002e-12)
sum e = 1.2795587578055205e-10
sum de = 1.3662387564433038e-16
Info: cfl dt = 1.223043205925452 cfl multiplier : 0.8044444444444444 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.2236e+05 | 99936 | 1 | 4.494e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8595.272744748714 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4536285177133146, dt = 1.223043205925452 ----------------
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.37 us (2.0%)
patch tree reduce : 982.00 ns (0.3%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 870.00 ns (0.3%)
LB compute : 297.41 us (93.8%)
LB move op cnt : 0
LB apply : 4.17 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.1966473579559065e-10,3.354682680593522e-10,2.666217137953847e-12)
sum a = (-1.3108114429775684e-11,-3.531814248092375e-13,1.5442356138574116e-12)
sum e = 1.2795528268751318e-10
sum de = 1.5301843573802785e-16
Info: cfl dt = 1.3245092407491843 cfl multiplier : 0.8696296296296296 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.2456e+05 | 99935 | 1 | 4.450e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9893.70134396656 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.6766717236387665, dt = 1.3245092407491843 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99935.0 min = 99935.0 factor = 1
- strategy "round robin" : max = 94938.2 min = 94938.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99935
max = 99935
avg = 99935
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.6%)
patch tree reduce : 981.00 ns (0.3%)
gen split merge : 1.17 us (0.3%)
split / merge op : 0/0
apply split merge : 833.00 ns (0.2%)
LB compute : 343.02 us (94.8%)
LB move op cnt : 0
LB apply : 3.26 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (71.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.010611665656914734 unconverged cnt = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.1171735475326825e-10,3.3698328978691004e-10,4.563519739642104e-12)
sum a = (-1.34765547670887e-11,-9.272313138546062e-13,1.993415211423627e-12)
sum e = 1.2795372507569817e-10
sum de = 1.7319563101828037e-16
Info: cfl dt = 1.3939537488109208 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.3692e+05 | 99934 | 1 | 7.299e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6532.807996356942 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.001180964387951, dt = 1.3939537488109208 ----------------
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.15 us (1.7%)
patch tree reduce : 1.02 us (0.3%)
gen split merge : 820.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 880.00 ns (0.2%)
LB compute : 341.32 us (95.0%)
LB move op cnt : 0
LB apply : 2.97 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.01061139788544668 unconverged cnt = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.1097886077808805e-10,3.299567507898672e-10,6.32701139500826e-12)
sum a = (-1.3615722361658975e-11,-1.3597280820425897e-12,2.3436200683680856e-12)
sum e = 1.2794634322945336e-10
sum de = 1.8839869761717558e-16
Info: cfl dt = 1.442347038717024 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.3686e+05 | 99932 | 1 | 7.302e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6872.808921717089 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.395134713198871, dt = 1.442347038717024 ----------------
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.65 us (1.8%)
patch tree reduce : 1.07 us (0.3%)
gen split merge : 811.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 880.00 ns (0.3%)
LB compute : 303.47 us (94.3%)
LB move op cnt : 0
LB apply : 3.20 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010611119510465127 unconverged cnt = 4
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.1549398919783095e-10,3.332728887231634e-10,8.311529010812668e-12)
sum a = (-1.4001985435411848e-11,-1.6930303038072087e-12,2.7073715986180855e-12)
sum e = 1.2793347609225978e-10
sum de = 2.0338183056351273e-16
Info: cfl dt = 1.4769780485630863 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.3638e+05 | 99929 | 1 | 7.327e-01 | 0.0% | 0.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7086.596586811874 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.837481751915895, dt = 1.4769780485630863 ----------------
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.11 us (1.8%)
patch tree reduce : 957.00 ns (0.3%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 869.00 ns (0.3%)
LB compute : 324.72 us (94.5%)
LB move op cnt : 0
LB apply : 3.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.0339401849113146e-10,3.3466663660719947e-10,1.2042801252487501e-11)
sum a = (-1.4303328136039167e-11,-2.489390292785152e-12,3.2288309078373717e-12)
sum e = 1.2793012111333e-10
sum de = 2.2963225746299294e-16
Info: cfl dt = 1.5026775208521521 cfl multiplier : 0.9742478280749886 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.2348e+05 | 99928 | 1 | 4.471e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11891.450552283832 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.314459800478982, dt = 1.5026775208521521 ----------------
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 : 5.53 us (1.6%)
patch tree reduce : 1.36 us (0.4%)
gen split merge : 760.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 927.00 ns (0.3%)
LB compute : 335.92 us (94.7%)
LB move op cnt : 0
LB apply : 3.10 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (72.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.0125000743567864e-10,3.2648760806240255e-10,1.495304425192895e-11)
sum a = (-1.4334896196094242e-11,-3.0555427680612824e-12,3.6006877234121618e-12)
sum e = 1.2792145295548736e-10
sum de = 2.483842954325362e-16
Info: cfl dt = 1.522635993303095 cfl multiplier : 0.9828318853833258 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.2235e+05 | 99926 | 1 | 4.494e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12037.388886665007 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.817137321331135, dt = 1.522635993303095 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99926.0 min = 99926.0 factor = 1
- strategy "round robin" : max = 94929.7 min = 94929.7 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99926
max = 99926
avg = 99926
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (2.0%)
patch tree reduce : 1.18 us (0.4%)
gen split merge : 837.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 273.13 us (93.2%)
LB move op cnt : 0
LB apply : 3.71 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.01061024201962138 unconverged cnt = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.0670903321485217e-10,3.1599747064933693e-10,1.708197136040551e-11)
sum a = (-1.4271822182841472e-11,-3.4464942945887567e-12,3.882565935217032e-12)
sum e = 1.279075942281386e-10
sum de = 2.627590386227751e-16
Info: cfl dt = 1.538966252020931 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.3680e+05 | 99923 | 1 | 7.304e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7504.323500537264 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.339773314634229, dt = 1.538966252020931 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99923.0 min = 99923.0 factor = 1
- strategy "round robin" : max = 94926.8 min = 94926.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99923
max = 99923
avg = 99923
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.5%)
patch tree reduce : 965.00 ns (0.3%)
gen split merge : 737.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 838.00 ns (0.2%)
LB compute : 358.51 us (94.9%)
LB move op cnt : 0
LB apply : 4.18 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (71.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.0106099391140963 unconverged cnt = 9
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.550508194157094e-10,3.3584480601157323e-10,1.4467991494612817e-11)
sum a = (-1.495369805587031e-11,-2.76740838929004e-12,3.908486550393647e-12)
sum e = 1.2786908093742386e-10
sum de = 2.492229332974799e-16
Info: cfl dt = 1.5530429962979755 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.3682e+05 | 99915 | 1 | 7.302e-01 | 0.0% | 0.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7586.922347642817 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.87873956665516, dt = 1.5530429962979755 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99915.0 min = 99915.0 factor = 1
- strategy "round robin" : max = 94919.2 min = 94919.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99915
max = 99915
avg = 99915
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.15 us (1.6%)
patch tree reduce : 1.04 us (0.3%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 854.00 ns (0.3%)
LB compute : 298.71 us (94.5%)
LB move op cnt : 0
LB apply : 2.84 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (70.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.514032370240272e-10,3.453641401522158e-10,1.863221744867116e-11)
sum a = (-1.532493090890589e-11,-3.4392694531938136e-12,4.3731381914722815e-12)
sum e = 1.2785515939768162e-10
sum de = 2.7133035995912034e-16
Info: cfl dt = 1.565715642805069 cfl multiplier : 0.9949131512246892 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.2315e+05 | 99912 | 1 | 4.477e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12487.311739321802 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.431782562953135, dt = 1.565715642805069 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99912.0 min = 99912.0 factor = 1
- strategy "round robin" : max = 94916.4 min = 94916.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99912
max = 99912
avg = 99912
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (1.6%)
patch tree reduce : 1.95 us (0.5%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 875.00 ns (0.2%)
LB compute : 359.22 us (94.6%)
LB move op cnt : 0
LB apply : 3.30 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (68.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.010609320647426526 unconverged cnt = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.639151600681925e-10,3.386235687805353e-10,1.938735279395557e-11)
sum a = (-1.5240166816727456e-11,-3.695675486995056e-12,4.5825391247272056e-12)
sum e = 1.2783611331344856e-10
sum de = 2.816064182647522e-16
Info: cfl dt = 1.5775230867361443 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.3595e+05 | 99908 | 1 | 7.349e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7670.24250589997 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.997498205758205, dt = 1.5775230867361443 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99908.0 min = 99908.0 factor = 1
- strategy "round robin" : max = 94912.6 min = 94912.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99908
max = 99908
avg = 99908
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.7%)
patch tree reduce : 1.44 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 297.10 us (94.2%)
LB move op cnt : 0
LB apply : 3.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (69.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.7497527704849017e-10,3.281192135843208e-10,2.0065420249961878e-11)
sum a = (-1.5013670241093568e-11,-3.9869647351044794e-12,4.778013442099614e-12)
sum e = 1.2781698944663394e-10
sum de = 2.922351720604745e-16
Info: cfl dt = 1.5888092026933969 cfl multiplier : 0.997739178322084 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.2389e+05 | 99904 | 1 | 4.462e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12727.161092935854 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.57502129249435, dt = 1.5888092026933969 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99904.0 min = 99904.0 factor = 1
- strategy "round robin" : max = 94908.8 min = 94908.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99904
max = 99904
avg = 99904
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (1.8%)
patch tree reduce : 1.09 us (0.3%)
gen split merge : 926.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 907.00 ns (0.3%)
LB compute : 309.82 us (94.2%)
LB move op cnt : 0
LB apply : 2.88 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.512125864947771e-10,3.2081857314944466e-10,2.8081283451667057e-11)
sum a = (-1.480742660365663e-11,-5.207833347740494e-12,5.273899688827625e-12)
sum e = 1.2781793042093798e-10
sum de = 3.330387307233543e-16
Info: cfl dt = 1.5997980125097766 cfl multiplier : 0.998492785548056 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.2317e+05 | 99904 | 1 | 4.477e-01 | 0.0% | 0.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12776.700798355396 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.163830495187746, dt = 1.5997980125097766 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99904.0 min = 99904.0 factor = 1
- strategy "round robin" : max = 94908.8 min = 94908.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99904
max = 99904
avg = 99904
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.8%)
patch tree reduce : 1.53 us (0.5%)
gen split merge : 969.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.3%)
LB compute : 302.24 us (94.1%)
LB move op cnt : 0
LB apply : 2.94 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.4745969178552206e-10,3.201899559327194e-10,3.290417146868507e-11)
sum a = (-1.472903445887893e-11,-5.895915164352568e-12,5.603750644712129e-12)
sum e = 1.278039950036537e-10
sum de = 3.539844656950946e-16
Info: cfl dt = 1.6105779517886643 cfl multiplier : 0.9989951903653708 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.2359e+05 | 99901 | 1 | 4.468e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12889.95228737973 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.763628507697522, dt = 1.6105779517886643 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99901.0 min = 99901.0 factor = 1
- strategy "round robin" : max = 94905.9 min = 94905.9 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99901
max = 99901
avg = 99901
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (2.0%)
patch tree reduce : 1.07 us (0.3%)
gen split merge : 801.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 291.27 us (94.1%)
LB move op cnt : 0
LB apply : 3.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.53 us (71.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010608036907960739 unconverged cnt = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.436057609916349e-10,3.4114194939575e-10,3.9168179998781435e-11)
sum a = (-1.5148847996470548e-11,-6.593981203348365e-12,6.017291810449905e-12)
sum e = 1.2778533911396156e-10
sum de = 3.712770334979891e-16
Info: cfl dt = 1.6211317392980413 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.3390e+05 | 99897 | 1 | 7.460e-01 | 0.0% | 0.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7771.825489668584 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.374206459486185, dt = 1.3847656730649582 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99897.0 min = 99897.0 factor = 1
- strategy "round robin" : max = 94902.1 min = 94902.1 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99897
max = 99897
avg = 99897
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (2.1%)
patch tree reduce : 970.00 ns (0.3%)
gen split merge : 817.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 927.00 ns (0.3%)
LB compute : 271.59 us (93.8%)
LB move op cnt : 0
LB apply : 3.08 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]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010607754731889607 unconverged cnt = 6
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.4420417681516477e-10,3.4714541341651593e-10,4.341060726595557e-11)
sum a = (-1.5182045490213194e-11,-7.052006597037829e-12,6.260239091954812e-12)
sum e = 1.2775293302721254e-10
sum de = 3.7500879238214016e-16
Info: cfl dt = 1.6300056949728796 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.3560e+05 | 99892 | 1 | 7.367e-01 | 0.0% | 0.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6767.063447577246 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 20 [SPH][rank=0]
Info: time since start : 30.977955425 (s) [SPH][rank=0]
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000001.vtk [VTK Dump][rank=0]
- took 5.96 ms, bandwidth = 938.31 MB/s
Info: Dumping state to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000001.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.16 us (50.9%)
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000001.sham [Shamrock Dump][rank=0]
- took 5.79 ms, bandwidth = 2.21 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 960.04 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_normal_0000001.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_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 961.94 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_hollywood_0000001.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_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 196.36 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 196.44 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_slice_0000001.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_slice_0000001.json
Info: compute_slice field_name: dt_part, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 333.85 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 333.83 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/dt_part_slice_0000001.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/dt_part_slice_0000001.json
Info: compute_column_integ field_name: custom, rays count: 1048576 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.015562007000000001 s
Info: compute_column_integ took 967.58 ms [sph::CartesianRender][rank=0]
Info: compute_column_integ field_name: unity, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 960.36 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/column_average_vz_0000001.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/column_average_vz_0000001.json
Saving perf history to _to_trash/black_hole_disc_lense_thirring_100000/analysis/perf_history.json
Info: evolve_until (target_time = 49.52s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 24.758972132551143, dt = 1.6300056949728796 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99892.0 min = 99892.0 factor = 1
- strategy "round robin" : max = 94897.4 min = 94897.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99892
max = 99892
avg = 99892
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.00 us (2.2%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 303.90 us (93.3%)
LB move op cnt : 0
LB apply : 3.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010607421029968471 unconverged cnt = 3
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.453486593294558e-10,3.4739276870615956e-10,4.7541406134334224e-11)
sum a = (-1.5029976380007628e-11,-7.560282687630226e-12,6.4698670567272286e-12)
sum e = 1.2773752477746857e-10
sum de = 3.7671557704483075e-16
Info: cfl dt = 1.6400474445508377 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.3120e+05 | 99887 | 1 | 7.613e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7707.54591774779 (tsim/hr) [sph::Model][rank=0]
---------------- t = 26.388977827524023, dt = 1.6400474445508377 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99887.0 min = 99887.0 factor = 1
- strategy "round robin" : max = 94892.6 min = 94892.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99887
max = 99887
avg = 99887
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.7%)
patch tree reduce : 1.01 us (0.3%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 320.61 us (94.3%)
LB move op cnt : 0
LB apply : 3.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (69.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.477973058354211e-10,3.3491109388868507e-10,5.088902963185392e-11)
sum a = (-1.45017782376268e-11,-8.045017110675633e-12,6.575448433090198e-12)
sum e = 1.2772345056566277e-10
sum de = 3.973308664103453e-16
Info: cfl dt = 1.6498433618725794 cfl multiplier : 0.9998015190845176 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.2279e+05 | 99884 | 1 | 4.483e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13168.914850451014 (tsim/hr) [sph::Model][rank=0]
---------------- t = 28.02902527207486, dt = 1.6498433618725794 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99884.0 min = 99884.0 factor = 1
- strategy "round robin" : max = 94889.8 min = 94889.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99884
max = 99884
avg = 99884
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (2.0%)
patch tree reduce : 992.00 ns (0.3%)
gen split merge : 744.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 843.00 ns (0.3%)
LB compute : 286.26 us (94.2%)
LB move op cnt : 0
LB apply : 2.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (69.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.01060674239211529 unconverged cnt = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.1361233279520325e-10,3.6026328533078447e-10,6.668532314248761e-11)
sum a = (-1.490129477564892e-11,-9.548798466989386e-12,7.098372788030583e-12)
sum e = 1.277000024945574e-10
sum de = 4.0629067410242575e-16
Info: cfl dt = 1.6546564921125826 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.3613e+05 | 99879 | 1 | 7.337e-01 | 0.0% | 0.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8094.9358431186565 (tsim/hr) [sph::Model][rank=0]
---------------- t = 29.67886863394744, dt = 1.6546564921125826 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99879.0 min = 99879.0 factor = 1
- strategy "round robin" : max = 94885.0 min = 94885.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99879
max = 99879
avg = 99879
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.9%)
patch tree reduce : 1.05 us (0.3%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.3%)
LB compute : 298.31 us (94.1%)
LB move op cnt : 0
LB apply : 3.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.01060639848236238 unconverged cnt = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.9385883321917174e-10,3.641737032045497e-10,7.811209625137582e-11)
sum a = (-1.4707585901124648e-11,-1.0593077284584284e-11,7.371481753743425e-12)
sum e = 1.2768106513582691e-10
sum de = 4.1646461242126535e-16
Info: cfl dt = 1.6472343206170608 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.3708e+05 | 99875 | 1 | 7.286e-01 | 0.0% | 0.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8175.755979553118 (tsim/hr) [sph::Model][rank=0]
---------------- t = 31.333525126060024, dt = 1.6472343206170608 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99875.0 min = 99875.0 factor = 1
- strategy "round robin" : max = 94881.2 min = 94881.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99875
max = 99875
avg = 99875
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.7%)
patch tree reduce : 950.00 ns (0.3%)
gen split merge : 833.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 295.67 us (90.8%)
LB move op cnt : 0
LB apply : 15.13 us (4.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010606054393847925 unconverged cnt = 3
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010606054393847925 unconverged cnt = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.9534263372480036e-10,3.804386865490224e-10,8.328901432196346e-11)
sum a = (-1.4828824298704404e-11,-1.1088718295521902e-11,7.517040425920817e-12)
sum e = 1.2764656327061972e-10
sum de = 4.084808321643137e-16
Info: cfl dt = 1.598818912951925 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 | 9.8038e+04 | 99868 | 1 | 1.019e+00 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5821.359511455207 (tsim/hr) [sph::Model][rank=0]
---------------- t = 32.980759446677084, dt = 1.598818912951925 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99868.0 min = 99868.0 factor = 1
- strategy "round robin" : max = 94874.6 min = 94874.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99868
max = 99868
avg = 99868
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.7%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 814.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 839.00 ns (0.2%)
LB compute : 332.15 us (94.6%)
LB move op cnt : 0
LB apply : 3.11 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010605718774228794 unconverged cnt = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7133447912326825e-10,3.713103736044831e-10,9.63528156262813e-11)
sum a = (-1.4251107101409993e-11,-1.2196849320528255e-11,7.665639653964385e-12)
sum e = 1.2762036518009438e-10
sum de = 4.0523064660197747e-16
Info: cfl dt = 1.5709754897161181 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.3648e+05 | 99863 | 1 | 7.317e-01 | 0.0% | 0.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7865.987529580355 (tsim/hr) [sph::Model][rank=0]
---------------- t = 34.57957835962901, dt = 1.5709754897161181 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99863.0 min = 99863.0 factor = 1
- strategy "round robin" : max = 94869.8 min = 94869.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99863
max = 99863
avg = 99863
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.7%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 795.00 ns (0.2%)
LB compute : 310.64 us (94.1%)
LB move op cnt : 0
LB apply : 2.84 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.01060538741951527 unconverged cnt = 3
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.721844825379193e-10,3.525398948522238e-10,1.0102250027700277e-10)
sum a = (-1.341823027746693e-11,-1.2549089817779492e-11,7.5694906883335e-12)
sum e = 1.2759975893831572e-10
sum de = 4.0686449483897865e-16
Info: cfl dt = 1.5331830555669363 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.3493e+05 | 99859 | 1 | 7.401e-01 | 0.0% | 0.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7641.581311400673 (tsim/hr) [sph::Model][rank=0]
---------------- t = 36.15055384934513, dt = 1.5331830555669363 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99859.0 min = 99859.0 factor = 1
- strategy "round robin" : max = 94866.0 min = 94866.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99859
max = 99859
avg = 99859
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.53 us (2.2%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 809.00 ns (0.3%)
LB compute : 275.14 us (93.5%)
LB move op cnt : 0
LB apply : 2.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.01060506252431719 unconverged cnt = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6595650249247143e-10,3.480059875735094e-10,1.0801886531655517e-10)
sum a = (-1.2943739935253953e-11,-1.3091238424882718e-11,7.551397141503943e-12)
sum e = 1.275838977143664e-10
sum de = 4.211744346663828e-16
Info: cfl dt = 1.6805217671025203 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.3623e+05 | 99856 | 1 | 7.330e-01 | 0.0% | 0.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7530.27671240579 (tsim/hr) [sph::Model][rank=0]
---------------- t = 37.68373690491207, dt = 1.6805217671025203 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99856.0 min = 99856.0 factor = 1
- strategy "round robin" : max = 94863.2 min = 94863.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99856
max = 99856
avg = 99856
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.4%)
patch tree reduce : 1.39 us (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 777.00 ns (0.2%)
LB compute : 346.54 us (95.1%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010604704689100629 unconverged cnt = 6
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1740313767605318e-10,3.6069292031315435e-10,1.3063471347780487e-10)
sum a = (-1.2892545260141248e-11,-1.4873521972439573e-11,7.798836754624569e-12)
sum e = 1.2756051428640942e-10
sum de = 3.987385045452241e-16
Info: cfl dt = 1.6861958353792796 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.3742e+05 | 99850 | 1 | 7.266e-01 | 0.0% | 0.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8325.984018249712 (tsim/hr) [sph::Model][rank=0]
---------------- t = 39.364258672014586, dt = 1.6861958353792796 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99850.0 min = 99850.0 factor = 1
- strategy "round robin" : max = 94857.5 min = 94857.5 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99850
max = 99850
avg = 99850
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.8%)
patch tree reduce : 996.00 ns (0.3%)
gen split merge : 787.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 877.00 ns (0.3%)
LB compute : 272.99 us (90.3%)
LB move op cnt : 0
LB apply : 15.11 us (5.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010604343838109036 unconverged cnt = 6
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.871895034461767e-10,3.7224529269166633e-10,1.4737133033226962e-10)
sum a = (-1.2727566595694338e-11,-1.6069190310841123e-11,7.894355762817156e-12)
sum e = 1.2752652447388997e-10
sum de = 3.7550065073582216e-16
Info: cfl dt = 1.669015825506748 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.3777e+05 | 99843 | 1 | 7.247e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8376.245554283234 (tsim/hr) [sph::Model][rank=0]
---------------- t = 41.050454507393866, dt = 1.669015825506748 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99843.0 min = 99843.0 factor = 1
- strategy "round robin" : max = 94850.8 min = 94850.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99843
max = 99843
avg = 99843
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.35 us (2.1%)
patch tree reduce : 1.12 us (0.3%)
gen split merge : 829.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.36 us (0.4%)
LB compute : 324.52 us (94.2%)
LB move op cnt : 0
LB apply : 3.16 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.01060398487850819 unconverged cnt = 3
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.826371557692979e-10,3.7419934284329224e-10,1.5470263133354204e-10)
sum a = (-1.2318011314907543e-11,-1.648500970999268e-11,7.781887961305002e-12)
sum e = 1.274913623829917e-10
sum de = 3.5198020709415356e-16
Info: cfl dt = 1.6585880589874946 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.3715e+05 | 99836 | 1 | 7.279e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8254.394515081165 (tsim/hr) [sph::Model][rank=0]
---------------- t = 42.71947033290061, dt = 1.6585880589874946 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99836.0 min = 99836.0 factor = 1
- strategy "round robin" : max = 94844.2 min = 94844.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99836
max = 99836
avg = 99836
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (2.0%)
patch tree reduce : 1.63 us (0.6%)
gen split merge : 815.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 770.00 ns (0.3%)
LB compute : 274.57 us (93.6%)
LB move op cnt : 0
LB apply : 2.87 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010603626400156713 unconverged cnt = 3
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5701677282453225e-10,3.819884732979686e-10,1.69537890668481e-10)
sum a = (-1.2061695821131663e-11,-1.7427417067818383e-11,7.763952493956888e-12)
sum e = 1.2745143133913295e-10
sum de = 3.055096574607779e-16
Info: cfl dt = 1.6538931532280092 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.3957e+05 | 99828 | 1 | 7.153e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8347.79406714237 (tsim/hr) [sph::Model][rank=0]
---------------- t = 44.37805839188811, dt = 1.6538931532280092 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99828.0 min = 99828.0 factor = 1
- strategy "round robin" : max = 94836.6 min = 94836.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99828
max = 99828
avg = 99828
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.8%)
patch tree reduce : 1.08 us (0.3%)
gen split merge : 977.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 887.00 ns (0.3%)
LB compute : 297.14 us (94.5%)
LB move op cnt : 0
LB apply : 2.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010603267186255257 unconverged cnt = 17
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3078277574708445e-10,3.9638525248077525e-10,1.842024256706539e-10)
sum a = (-1.1996321355491508e-11,-1.8377952947312298e-11,7.741974165261918e-12)
sum e = 1.27376354373024e-10
sum de = 1.9544090726349298e-16
Info: cfl dt = 1.6542767468802662 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.4144e+05 | 99813 | 1 | 7.057e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8437.059958731425 (tsim/hr) [sph::Model][rank=0]
---------------- t = 46.03195154511612, dt = 1.6542767468802662 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99813.0 min = 99813.0 factor = 1
- strategy "round robin" : max = 94822.3 min = 94822.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99813
max = 99813
avg = 99813
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.9%)
patch tree reduce : 1.01 us (0.3%)
gen split merge : 820.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 843.00 ns (0.3%)
LB compute : 271.71 us (93.8%)
LB move op cnt : 0
LB apply : 3.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.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.010602906140125939 unconverged cnt = 3
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.966077401392759e-11,3.789220313077898e-10,2.0512686224236242e-10)
sum a = (-1.112110361864246e-11,-1.9707361829816705e-11,7.536319578271157e-12)
sum e = 1.2734151680368472e-10
sum de = 1.380405328732882e-16
Info: cfl dt = 1.6592659299552968 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.3469e+05 | 99806 | 1 | 7.410e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8036.7043221629765 (tsim/hr) [sph::Model][rank=0]
---------------- t = 47.686228291996386, dt = 1.6592659299552968 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99806.0 min = 99806.0 factor = 1
- strategy "round robin" : max = 94815.7 min = 94815.7 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99806
max = 99806
avg = 99806
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.6%)
patch tree reduce : 983.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.3%)
LB compute : 312.92 us (94.5%)
LB move op cnt : 0
LB apply : 4.16 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010602542248087592 unconverged cnt = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.167710424467724e-11,3.550098356078264e-10,2.134390652713702e-10)
sum a = (-1.0041626498802162e-11,-2.0038699529720643e-11,7.12240186694462e-12)
sum e = 1.2732667334779354e-10
sum de = 1.3191827165896699e-16
Info: cfl dt = 1.7540053481494964 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.4386e+05 | 99803 | 1 | 6.937e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8610.479539629034 (tsim/hr) [sph::Model][rank=0]
---------------- t = 49.34549422195168, dt = 0.17245004315060442 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99803.0 min = 99803.0 factor = 1
- strategy "round robin" : max = 94812.8 min = 94812.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99803
max = 99803
avg = 99803
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.6%)
patch tree reduce : 969.00 ns (0.3%)
gen split merge : 1.26 us (0.3%)
split / merge op : 0/0
apply split merge : 879.00 ns (0.2%)
LB compute : 350.17 us (94.9%)
LB move op cnt : 0
LB apply : 3.07 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.87971457310755e-11,3.6569659390472376e-10,2.1860666501829523e-10)
sum a = (-1.0311107259460552e-11,-2.0443158099907304e-11,7.214727403583052e-12)
sum e = 1.272847995488821e-10
sum de = 1.1642216174957374e-16
Info: cfl dt = 1.755446243489958 cfl multiplier : 0.9999993201061267 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.3352e+05 | 99801 | 1 | 4.274e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1452.6446612781551 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 36 [SPH][rank=0]
Info: time since start : 47.471447051000006 (s) [SPH][rank=0]
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000002.vtk [VTK Dump][rank=0]
- took 6.52 ms, bandwidth = 857.46 MB/s
Info: Dumping state to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000002.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (54.7%)
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000002.sham [Shamrock Dump][rank=0]
- took 6.19 ms, bandwidth = 2.06 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 902.14 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_normal_0000002.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_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 899.62 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_hollywood_0000002.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_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 178.36 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 180.37 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_slice_0000002.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_slice_0000002.json
Info: compute_slice field_name: dt_part, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 308.48 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 310.04 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/dt_part_slice_0000002.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/dt_part_slice_0000002.json
Info: compute_column_integ field_name: custom, rays count: 1048576 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.016484664 s
Info: compute_column_integ took 912.46 ms [sph::CartesianRender][rank=0]
Info: compute_column_integ field_name: unity, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 938.25 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/column_average_vz_0000002.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/column_average_vz_0000002.json
Saving perf history to _to_trash/black_hole_disc_lense_thirring_100000/analysis/perf_history.json
Info: evolve_until (target_time = 74.28s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 49.51794426510229, dt = 1.755446243489958 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99801.0 min = 99801.0 factor = 1
- strategy "round robin" : max = 94810.9 min = 94810.9 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99801
max = 99801
avg = 99801
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.50 us (2.1%)
patch tree reduce : 1.22 us (0.4%)
gen split merge : 836.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 856.00 ns (0.3%)
LB compute : 296.64 us (94.0%)
LB move op cnt : 0
LB apply : 3.66 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (70.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.070864309282348e-11,3.2980570175365205e-10,2.3126736615005605e-10)
sum a = (-8.883067542997862e-12,-2.0972998248774606e-11,6.68054663539467e-12)
sum e = 1.273208074227358e-10
sum de = 1.2535582633347767e-16
Info: cfl dt = 1.7268140887492558 cfl multiplier : 0.9999995467374179 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.3616e+05 | 99801 | 1 | 4.226e-01 | 0.0% | 0.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14954.12721955807 (tsim/hr) [sph::Model][rank=0]
---------------- t = 51.27339050859224, dt = 1.7268140887492558 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99801.0 min = 99801.0 factor = 1
- strategy "round robin" : max = 94810.9 min = 94810.9 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99801
max = 99801
avg = 99801
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.7%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 776.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 299.77 us (94.4%)
LB move op cnt : 0
LB apply : 2.86 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010601734531104946 unconverged cnt = 8
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.490205595882896e-11,3.067711271429182e-10,2.383791554452069e-10)
sum a = (-7.838433742973591e-12,-2.118047259222191e-11,6.172357074126968e-12)
sum e = 1.2728418569446716e-10
sum de = 8.36734822409057e-17
Info: cfl dt = 1.7338846344853054 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.4606e+05 | 99794 | 1 | 6.832e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9098.483489854485 (tsim/hr) [sph::Model][rank=0]
---------------- t = 53.0002045973415, dt = 1.7338846344853054 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99794.0 min = 99794.0 factor = 1
- strategy "round robin" : max = 94804.3 min = 94804.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99794
max = 99794
avg = 99794
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (1.8%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 959.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 894.00 ns (0.3%)
LB compute : 313.55 us (94.3%)
LB move op cnt : 0
LB apply : 2.90 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.0106013483451682 unconverged cnt = 3
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0253485458464676e-11,2.892597359233751e-10,2.5665888599227477e-10)
sum a = (-6.924542967839931e-12,-2.213128912476424e-11,5.732851959103455e-12)
sum e = 1.2725442080305803e-10
sum de = 4.423706559071046e-17
Info: cfl dt = 1.6737594246559546 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.4838e+05 | 99788 | 1 | 6.725e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9281.803846047387 (tsim/hr) [sph::Model][rank=0]
---------------- t = 54.73408923182681, dt = 1.6737594246559546 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99788.0 min = 99788.0 factor = 1
- strategy "round robin" : max = 94798.6 min = 94798.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99788
max = 99788
avg = 99788
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.8%)
patch tree reduce : 942.00 ns (0.3%)
gen split merge : 823.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 311.95 us (94.5%)
LB move op cnt : 0
LB apply : 3.21 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (71.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.01060097372902593 unconverged cnt = 5
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2193851799687177e-11,2.6517736874208315e-10,2.743876756309565e-10)
sum a = (-5.899464140538811e-12,-2.2991251147584978e-11,5.224505859409489e-12)
sum e = 1.272267938909739e-10
sum de = 8.200124069554554e-18
Info: cfl dt = 1.6220994124312387 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.4953e+05 | 99783 | 1 | 6.673e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9029.7229949116 (tsim/hr) [sph::Model][rank=0]
---------------- t = 56.40784865648276, dt = 1.6220994124312387 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99783.0 min = 99783.0 factor = 1
- strategy "round robin" : max = 94793.8 min = 94793.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99783
max = 99783
avg = 99783
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (2.0%)
patch tree reduce : 1.05 us (0.3%)
gen split merge : 734.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 897.00 ns (0.3%)
LB compute : 286.05 us (94.0%)
LB move op cnt : 0
LB apply : 3.67 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010600608967979583 unconverged cnt = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.37623736120804e-11,2.4118215925669937e-10,2.830822158483716e-10)
sum a = (-4.906891744049702e-12,-2.3164382064674577e-11,4.656335667389709e-12)
sum e = 1.2719933894502467e-10
sum de = -3.827141060567041e-17
Info: cfl dt = 1.6457489243166654 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.5097e+05 | 99778 | 1 | 6.609e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8835.342725981129 (tsim/hr) [sph::Model][rank=0]
---------------- t = 58.029948068914, dt = 1.6457489243166654 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99778.0 min = 99778.0 factor = 1
- strategy "round robin" : max = 94789.1 min = 94789.1 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99778
max = 99778
avg = 99778
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (1.8%)
patch tree reduce : 1.02 us (0.3%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 880.00 ns (0.3%)
LB compute : 328.39 us (94.8%)
LB move op cnt : 0
LB apply : 3.01 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010600237171810923 unconverged cnt = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.051698778472514e-11,2.0561874399698643e-10,2.8607727301022667e-10)
sum a = (-3.6063667581469106e-12,-2.2866746906074146e-11,3.925225296439908e-12)
sum e = 1.2717459881816886e-10
sum de = -8.648730837574838e-17
Info: cfl dt = 1.5939164529002 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.5086e+05 | 99773 | 1 | 6.614e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8958.371533798794 (tsim/hr) [sph::Model][rank=0]
---------------- t = 59.675696993230666, dt = 1.5939164529002 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99773.0 min = 99773.0 factor = 1
- strategy "round robin" : max = 94784.3 min = 94784.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99773
max = 99773
avg = 99773
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.7%)
patch tree reduce : 971.00 ns (0.3%)
gen split merge : 908.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 914.00 ns (0.3%)
LB compute : 314.84 us (94.3%)
LB move op cnt : 0
LB apply : 2.98 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (71.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010599875437122852 unconverged cnt = 3
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.2367357329466214e-11,1.738154043244371e-10,2.98165778960255e-10)
sum a = (-2.462393351477087e-12,-2.3286921966686617e-11,3.2458122839050835e-12)
sum e = 1.2714215668412008e-10
sum de = -1.405126664195297e-16
Info: cfl dt = 1.677723851936652 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.4758e+05 | 99767 | 1 | 6.760e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8488.269540010595 (tsim/hr) [sph::Model][rank=0]
---------------- t = 61.26961344613087, dt = 1.677723851936652 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99767.0 min = 99767.0 factor = 1
- strategy "round robin" : max = 94778.6 min = 94778.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99767
max = 99767
avg = 99767
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.6%)
patch tree reduce : 1.15 us (0.3%)
gen split merge : 1.19 us (0.3%)
split / merge op : 0/0
apply split merge : 889.00 ns (0.3%)
LB compute : 322.80 us (94.8%)
LB move op cnt : 0
LB apply : 3.12 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010599492931192398 unconverged cnt = 5
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.7882904031606785e-11,1.6442939714394577e-10,3.0233030266793135e-10)
sum a = (-1.8860206812732227e-12,-2.3166270892997317e-11,2.733144709295121e-12)
sum e = 1.271093008491085e-10
sum de = -2.028276927037361e-16
Info: cfl dt = 1.6127666975910004 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.5392e+05 | 99760 | 1 | 6.481e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9318.994209686647 (tsim/hr) [sph::Model][rank=0]
---------------- t = 62.947337298067524, dt = 1.6127666975910004 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99760.0 min = 99760.0 factor = 1
- strategy "round robin" : max = 94772.0 min = 94772.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99760
max = 99760
avg = 99760
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.16 us (1.5%)
patch tree reduce : 1.04 us (0.3%)
gen split merge : 684.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 817.00 ns (0.2%)
LB compute : 329.13 us (95.0%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (71.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.601659644487909e-11,1.3541465540006278e-10,3.155199844482624e-10)
sum a = (-8.635623528003241e-13,-2.3678838268687586e-11,2.0436447611347484e-12)
sum e = 1.2709116234651191e-10
sum de = -2.388978885224737e-16
Info: cfl dt = 1.5576092246017976 cfl multiplier : 0.9999999823144 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.4737e+05 | 99757 | 1 | 4.033e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14397.457196501131 (tsim/hr) [sph::Model][rank=0]
---------------- t = 64.56010399565852, dt = 1.5576092246017976 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99757.0 min = 99757.0 factor = 1
- strategy "round robin" : max = 94769.1 min = 94769.1 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99757
max = 99757
avg = 99757
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.6%)
patch tree reduce : 1.01 us (0.3%)
gen split merge : 769.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 903.00 ns (0.3%)
LB compute : 318.62 us (94.7%)
LB move op cnt : 0
LB apply : 3.13 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (70.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.01059876521221734 unconverged cnt = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1809623152892458e-10,1.0642708129616131e-10,3.302039981887956e-10)
sum a = (1.1354532615486762e-13,-2.4272023389235662e-11,1.3548735457032393e-12)
sum e = 1.270685691000927e-10
sum de = -2.831002087991967e-16
Info: cfl dt = 1.509634501946505 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.5549e+05 | 99753 | 1 | 6.415e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8740.712677283474 (tsim/hr) [sph::Model][rank=0]
---------------- t = 66.11771322026031, dt = 1.509634501946505 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99753.0 min = 99753.0 factor = 1
- strategy "round robin" : max = 94765.3 min = 94765.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99753
max = 99753
avg = 99753
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.8%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 859.00 ns (0.3%)
LB compute : 290.89 us (94.3%)
LB move op cnt : 0
LB apply : 3.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.01059841644311827 unconverged cnt = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2731803869133258e-10,8.39646141438726e-11,3.3512067893146924e-10)
sum a = (9.469802944996874e-13,-2.416345060362733e-11,7.197360110682577e-13)
sum e = 1.2705637818031226e-10
sum de = -2.907064886344288e-16
Info: cfl dt = 1.4673317140921458 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.5610e+05 | 99751 | 1 | 6.390e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8504.871028933465 (tsim/hr) [sph::Model][rank=0]
---------------- t = 67.62734772220682, dt = 1.4673317140921458 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99751.0 min = 99751.0 factor = 1
- strategy "round robin" : max = 94763.4 min = 94763.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99751
max = 99751
avg = 99751
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.9%)
patch tree reduce : 1.07 us (0.3%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 869.00 ns (0.3%)
LB compute : 290.69 us (94.2%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3416000419042345e-10,5.123975272954801e-11,3.3899820182291955e-10)
sum a = (1.9911796486942984e-12,-2.3973888452059912e-11,-3.0414807519045774e-14)
sum e = 1.270494539573502e-10
sum de = -2.977138906840708e-16
Info: cfl dt = 1.4565392835549336 cfl multiplier : 0.9999999947598223 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.4995e+05 | 99750 | 1 | 3.991e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13236.281455091315 (tsim/hr) [sph::Model][rank=0]
---------------- t = 69.09467943629896, dt = 1.4565392835549336 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99750.0 min = 99750.0 factor = 1
- strategy "round robin" : max = 94762.5 min = 94762.5 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99750
max = 99750
avg = 99750
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.8%)
patch tree reduce : 1.35 us (0.5%)
gen split merge : 749.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 895.00 ns (0.3%)
LB compute : 270.85 us (93.8%)
LB move op cnt : 0
LB apply : 3.11 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]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010597736815838704 unconverged cnt = 3
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3127063985334585e-10,3.877861184912461e-11,3.3833880480327256e-10)
sum a = (2.506501744385539e-12,-2.344578579223478e-11,-5.397174542166742e-13)
sum e = 1.270129322991812e-10
sum de = -3.6914542793399895e-16
Info: cfl dt = 1.4134768548802696 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.5596e+05 | 99743 | 1 | 6.395e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8198.886539800424 (tsim/hr) [sph::Model][rank=0]
---------------- t = 70.55121871985389, dt = 1.4134768548802696 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99743.0 min = 99743.0 factor = 1
- strategy "round robin" : max = 94755.8 min = 94755.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99743
max = 99743
avg = 99743
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (1.5%)
patch tree reduce : 1.09 us (0.3%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 905.00 ns (0.2%)
LB compute : 368.80 us (95.3%)
LB move op cnt : 0
LB apply : 3.02 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010597406314493792 unconverged cnt = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.403312016310822e-10,1.3904200129235589e-11,3.422098501216167e-10)
sum a = (3.2880922874036158e-12,-2.3269785591958463e-11,-1.1849129266100557e-12)
sum e = 1.2698038553858336e-10
sum de = -4.1948542182521634e-16
Info: cfl dt = 1.5378701725366966 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.5691e+05 | 99737 | 1 | 6.356e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8005.556496516862 (tsim/hr) [sph::Model][rank=0]
---------------- t = 71.96469557473417, dt = 1.5378701725366966 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99737.0 min = 99737.0 factor = 1
- strategy "round robin" : max = 94750.1 min = 94750.1 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99737
max = 99737
avg = 99737
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.41 us (2.0%)
patch tree reduce : 1.20 us (0.4%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 959.00 ns (0.3%)
LB compute : 296.56 us (93.9%)
LB move op cnt : 0
LB apply : 2.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010597045282245856 unconverged cnt = 4
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6876238795438373e-10,-8.669186082300856e-12,3.523042784276406e-10)
sum a = (3.957173671524877e-12,-2.3602594842836155e-11,-1.8274639822640677e-12)
sum e = 1.2696355876055074e-10
sum de = -4.791436972902485e-16
Info: cfl dt = 1.6806971842628888 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.5390e+05 | 99733 | 1 | 6.480e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8543.250441050992 (tsim/hr) [sph::Model][rank=0]
---------------- t = 73.50256574727086, dt = 0.7743506503825586 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99733.0 min = 99733.0 factor = 1
- strategy "round robin" : max = 94746.3 min = 94746.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99733
max = 99733
avg = 99733
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.6%)
patch tree reduce : 1.00 us (0.3%)
gen split merge : 713.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 867.00 ns (0.3%)
LB compute : 303.92 us (94.7%)
LB move op cnt : 0
LB apply : 3.24 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (69.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010596862924306194 unconverged cnt = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6510883649784983e-10,-1.973164169037203e-11,3.506585090201346e-10)
sum a = (4.322213056295505e-12,-2.3224917318285816e-11,-2.140028576333338e-12)
sum e = 1.2691755080394083e-10
sum de = -5.139823435885561e-16
Info: cfl dt = 1.64675192223796 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.5767e+05 | 99728 | 1 | 6.325e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4407.27198947682 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 52 [SPH][rank=0]
Info: time since start : 62.056574563000005 (s) [SPH][rank=0]
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000003.vtk [VTK Dump][rank=0]
- took 5.90 ms, bandwidth = 946.61 MB/s
Info: Dumping state to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000003.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (58.8%)
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000003.sham [Shamrock Dump][rank=0]
- took 5.70 ms, bandwidth = 2.24 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 823.40 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_normal_0000003.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_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 822.41 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_hollywood_0000003.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_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 166.88 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 166.30 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_slice_0000003.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_slice_0000003.json
Info: compute_slice field_name: dt_part, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 291.05 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 292.10 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/dt_part_slice_0000003.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/dt_part_slice_0000003.json
Info: compute_column_integ field_name: custom, rays count: 1048576 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.016175749 s
Info: compute_column_integ took 828.84 ms [sph::CartesianRender][rank=0]
Info: compute_column_integ field_name: unity, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 822.62 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/column_average_vz_0000003.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/column_average_vz_0000003.json
Saving perf history to _to_trash/black_hole_disc_lense_thirring_100000/analysis/perf_history.json
Info: evolve_until (target_time = 99.04s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 74.27691639765342, dt = 1.64675192223796 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99728.0 min = 99728.0 factor = 1
- strategy "round robin" : max = 94741.6 min = 94741.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99728
max = 99728
avg = 99728
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.38 us (1.9%)
patch tree reduce : 1.05 us (0.3%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.57 us (0.5%)
LB compute : 306.79 us (93.7%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (70.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010596473845971897 unconverged cnt = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6724981621757274e-10,-5.625922110169308e-11,3.5035037274995014e-10)
sum a = (5.34607136147085e-12,-2.2682590867738462e-11,-2.991421726781866e-12)
sum e = 1.2693570317981726e-10
sum de = -5.303399602203832e-16
Info: cfl dt = 1.5748936129684035 cfl multiplier : 0.9999999993099354 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5706e+05 | 99727 | 1 | 6.349e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9336.716338224127 (tsim/hr) [sph::Model][rank=0]
---------------- t = 75.92366831989138, dt = 1.5748936129684035 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99727.0 min = 99727.0 factor = 1
- strategy "round robin" : max = 94740.6 min = 94740.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99727
max = 99727
avg = 99727
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.5%)
patch tree reduce : 1.32 us (0.4%)
gen split merge : 833.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 344.13 us (94.9%)
LB move op cnt : 0
LB apply : 3.33 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7367820475041423e-10,-8.680827360045608e-11,3.504747995569614e-10)
sum a = (6.176148310920467e-12,-2.2275835668235925e-11,-3.74064710587707e-12)
sum e = 1.2691167381234935e-10
sum de = -5.786886227570901e-16
Info: cfl dt = 1.6291353447362524 cfl multiplier : 0.999999999539957 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.5133e+05 | 99723 | 1 | 3.968e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14288.88744914388 (tsim/hr) [sph::Model][rank=0]
---------------- t = 77.49856193285979, dt = 1.6291353447362524 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99723.0 min = 99723.0 factor = 1
- strategy "round robin" : max = 94736.8 min = 94736.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99723
max = 99723
avg = 99723
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.7%)
patch tree reduce : 1.00 us (0.3%)
gen split merge : 769.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 834.00 ns (0.3%)
LB compute : 297.53 us (94.1%)
LB move op cnt : 0
LB apply : 4.19 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.745579710587459e-10,-1.1587295749732827e-10,3.4771230987865026e-10)
sum a = (6.9651930137226705e-12,-2.1688964499950283e-11,-4.483082764110597e-12)
sum e = 1.2689717584676414e-10
sum de = -6.078839841149589e-16
Info: cfl dt = 1.6033967439450632 cfl multiplier : 0.9999999996933046 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.5322e+05 | 99720 | 1 | 3.938e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14892.793733851488 (tsim/hr) [sph::Model][rank=0]
---------------- t = 79.12769727759604, dt = 1.6033967439450632 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99720.0 min = 99720.0 factor = 1
- strategy "round robin" : max = 94734.0 min = 94734.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99720
max = 99720
avg = 99720
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.6%)
patch tree reduce : 983.00 ns (0.3%)
gen split merge : 726.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 328.44 us (94.8%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010595328083619748 unconverged cnt = 8
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0375765009941344e-10,-1.7118117976547724e-10,3.5519594760697825e-10)
sum a = (8.281117556216146e-12,-2.1868749894486324e-11,-5.54351643058204e-12)
sum e = 1.2685932071157844e-10
sum de = -6.954213832250551e-16
Info: cfl dt = 1.549819219815666 cfl multiplier : 0.9999999997955363 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5891e+05 | 99713 | 1 | 6.275e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9198.90366951067 (tsim/hr) [sph::Model][rank=0]
---------------- t = 80.73109402154111, dt = 1.549819219815666 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99713.0 min = 99713.0 factor = 1
- strategy "round robin" : max = 94727.3 min = 94727.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99713
max = 99713
avg = 99713
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.8%)
patch tree reduce : 1.24 us (0.4%)
gen split merge : 807.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 909.00 ns (0.3%)
LB compute : 299.94 us (94.2%)
LB move op cnt : 0
LB apply : 2.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010594955560103517 unconverged cnt = 3
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2486102740616646e-10,-1.926330545483808e-10,3.5873927442447376e-10)
sum a = (8.760787808372764e-12,-2.1848241295315835e-11,-6.135291152780742e-12)
sum e = 1.2682565823873113e-10
sum de = -7.794497689163682e-16
Info: cfl dt = 1.4824550276172979 cfl multiplier : 0.9999999998636909 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5538e+05 | 99707 | 1 | 6.417e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8694.615202880226 (tsim/hr) [sph::Model][rank=0]
---------------- t = 82.28091324135677, dt = 1.4824550276172979 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99707.0 min = 99707.0 factor = 1
- strategy "round robin" : max = 94721.6 min = 94721.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99707
max = 99707
avg = 99707
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.6%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 733.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 828.00 ns (0.3%)
LB compute : 298.89 us (94.3%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.01059459778821614 unconverged cnt = 4
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0924430899164844e-10,-2.304781801423398e-10,3.481987499946355e-10)
sum a = (9.659952116168976e-12,-2.0750167528387132e-11,-6.941660476334255e-12)
sum e = 1.2679115773790753e-10
sum de = -8.402530524110398e-16
Info: cfl dt = 1.5707368963032247 cfl multiplier : 0.9999999999091272 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5917e+05 | 99701 | 1 | 6.264e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8520.003526788632 (tsim/hr) [sph::Model][rank=0]
---------------- t = 83.76336826897406, dt = 1.5707368963032247 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99701.0 min = 99701.0 factor = 1
- strategy "round robin" : max = 94715.9 min = 94715.9 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99701
max = 99701
avg = 99701
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.98 us (1.6%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 778.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 838.00 ns (0.3%)
LB compute : 296.44 us (94.6%)
LB move op cnt : 0
LB apply : 2.88 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010594217172554848 unconverged cnt = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0188140736729843e-10,-2.578364475048911e-10,3.4011547869533247e-10)
sum a = (1.0277887506290797e-11,-1.9843289415861717e-11,-7.613817660939404e-12)
sum e = 1.2678782742138212e-10
sum de = -8.454551138211234e-16
Info: cfl dt = 1.5262314534285806 cfl multiplier : 0.9999999999394182 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.6042e+05 | 99700 | 1 | 6.215e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9098.207381226288 (tsim/hr) [sph::Model][rank=0]
---------------- t = 85.3341051652773, dt = 1.5262314534285806 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99700.0 min = 99700.0 factor = 1
- strategy "round robin" : max = 94715.0 min = 94715.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99700
max = 99700
avg = 99700
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.87 us (1.7%)
patch tree reduce : 1.13 us (0.4%)
gen split merge : 791.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 823.00 ns (0.3%)
LB compute : 265.01 us (93.9%)
LB move op cnt : 0
LB apply : 3.67 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010593845824219584 unconverged cnt = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.89862688022906e-10,-2.9494334220311683e-10,3.29055528580289e-10)
sum a = (1.1076082973272784e-11,-1.8780830575981987e-11,-8.39709957827046e-12)
sum e = 1.2674892474032295e-10
sum de = -9.24856021697577e-16
Info: cfl dt = 1.4867171064210876 cfl multiplier : 0.9999999999596122 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.4703e+05 | 99693 | 1 | 6.780e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8103.287012840567 (tsim/hr) [sph::Model][rank=0]
---------------- t = 86.86033661870587, dt = 1.4867171064210876 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99693.0 min = 99693.0 factor = 1
- strategy "round robin" : max = 94708.3 min = 94708.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99693
max = 99693
avg = 99693
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.7%)
patch tree reduce : 1.19 us (0.4%)
gen split merge : 763.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 899.00 ns (0.3%)
LB compute : 303.00 us (94.4%)
LB move op cnt : 0
LB apply : 3.70 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.721728088084572e-10,-3.237190830552912e-10,3.1559605017052655e-10)
sum a = (1.1683846339288774e-11,-1.7577565231960025e-11,-9.047659055948196e-12)
sum e = 1.267255303134165e-10
sum de = -9.697215731798782e-16
Info: cfl dt = 1.6396238583892226 cfl multiplier : 0.9999999999730749 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.5478e+05 | 99689 | 1 | 3.913e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13678.865522165906 (tsim/hr) [sph::Model][rank=0]
---------------- t = 88.34705372512695, dt = 1.6396238583892226 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99689.0 min = 99689.0 factor = 1
- strategy "round robin" : max = 94704.5 min = 94704.5 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99689
max = 99689
avg = 99689
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.6%)
patch tree reduce : 1.03 us (0.3%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 308.13 us (94.3%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (70.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8413808980034842e-10,-3.6464251520841067e-10,3.1129476226909996e-10)
sum a = (1.2457083706257986e-11,-1.714627580849231e-11,-9.870258323942044e-12)
sum e = 1.2670877520643186e-10
sum de = -1.0121623489433183e-15
Info: cfl dt = 1.5639991107478406 cfl multiplier : 0.9999999999820499 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.5516e+05 | 99685 | 1 | 3.907e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15108.877215710269 (tsim/hr) [sph::Model][rank=0]
---------------- t = 89.98667758351618, dt = 1.5639991107478406 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99685.0 min = 99685.0 factor = 1
- strategy "round robin" : max = 94700.8 min = 94700.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99685
max = 99685
avg = 99685
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.8%)
patch tree reduce : 1.53 us (0.5%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 845.00 ns (0.3%)
LB compute : 293.63 us (94.3%)
LB move op cnt : 0
LB apply : 2.67 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010592695244077797 unconverged cnt = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4735847404422204e-10,-3.804983396851556e-10,2.8952471281865045e-10)
sum a = (1.273176667503684e-11,-1.5362709078922116e-11,-1.0321517235384445e-11)
sum e = 1.2669406550309607e-10
sum de = -1.0144716912228458e-15
Info: cfl dt = 1.4997368113115959 cfl multiplier : 0.9999999999880332 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.6053e+05 | 99683 | 1 | 6.210e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9066.981498645331 (tsim/hr) [sph::Model][rank=0]
---------------- t = 91.55067669426403, dt = 1.4997368113115959 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99683.0 min = 99683.0 factor = 1
- strategy "round robin" : max = 94698.8 min = 94698.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99683
max = 99683
avg = 99683
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.9%)
patch tree reduce : 1.05 us (0.4%)
gen split merge : 834.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 940.00 ns (0.3%)
LB compute : 280.21 us (94.0%)
LB move op cnt : 0
LB apply : 2.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (69.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010592324359000394 unconverged cnt = 4
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5542408497948234e-10,-4.046263955014427e-10,2.8359820006763735e-10)
sum a = (1.3112540229216252e-11,-1.49080759492435e-11,-1.0829042745588119e-11)
sum e = 1.2666441587391477e-10
sum de = -1.0762586942676926e-15
Info: cfl dt = 1.6982273928155636 cfl multiplier : 0.999999999992022 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5870e+05 | 99678 | 1 | 6.281e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8595.964267823289 (tsim/hr) [sph::Model][rank=0]
---------------- t = 93.05041350557562, dt = 1.6982273928155636 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99678.0 min = 99678.0 factor = 1
- strategy "round robin" : max = 94694.1 min = 94694.1 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99678
max = 99678
avg = 99678
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.8%)
patch tree reduce : 1.26 us (0.4%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.3%)
LB compute : 303.99 us (94.4%)
LB move op cnt : 0
LB apply : 2.87 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6652387316143383e-10,-4.222058901085448e-10,2.7797372073824313e-10)
sum a = (1.3277779686477777e-11,-1.4463995249828956e-11,-1.1209891781193971e-11)
sum e = 1.2662875639480218e-10
sum de = -1.1614154417950767e-15
Info: cfl dt = 1.6540185261596299 cfl multiplier : 0.9999999999946813 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.5171e+05 | 99670 | 1 | 3.960e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15439.665120239244 (tsim/hr) [sph::Model][rank=0]
---------------- t = 94.74864089839119, dt = 1.6540185261596299 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99670.0 min = 99670.0 factor = 1
- strategy "round robin" : max = 94686.5 min = 94686.5 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99670
max = 99670
avg = 99670
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.8%)
patch tree reduce : 950.00 ns (0.3%)
gen split merge : 799.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 844.00 ns (0.3%)
LB compute : 291.41 us (94.4%)
LB move op cnt : 0
LB apply : 2.81 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7091387220171052e-10,-4.5382760045738164e-10,2.6839141146328195e-10)
sum a = (1.376936513286468e-11,-1.3830218118162945e-11,-1.179053087178854e-11)
sum e = 1.2660956709679815e-10
sum de = -1.1900901919318712e-15
Info: cfl dt = 1.5861746973386872 cfl multiplier : 0.9999999999964541 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.4923e+05 | 99667 | 1 | 3.999e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14890.124009243986 (tsim/hr) [sph::Model][rank=0]
---------------- t = 96.40265942455082, dt = 1.5861746973386872 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99667.0 min = 99667.0 factor = 1
- strategy "round robin" : max = 94683.6 min = 94683.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99667
max = 99667
avg = 99667
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.8%)
patch tree reduce : 1.34 us (0.4%)
gen split merge : 975.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 296.67 us (94.3%)
LB move op cnt : 0
LB apply : 2.83 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.01059109284164189 unconverged cnt = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5171759971131955e-10,-4.854673692100616e-10,2.4924421269795203e-10)
sum a = (1.424379667977662e-11,-1.2528557652826648e-11,-1.2366916300345925e-11)
sum e = 1.265793145736254e-10
sum de = -1.2147890595979126e-15
Info: cfl dt = 1.6081832279681625 cfl multiplier : 0.999999999997636 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5977e+05 | 99662 | 1 | 6.238e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9154.308613672274 (tsim/hr) [sph::Model][rank=0]
---------------- t = 97.98883412188951, dt = 1.0470544083150628 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99662.0 min = 99662.0 factor = 1
- strategy "round robin" : max = 94678.9 min = 94678.9 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99662
max = 99662
avg = 99662
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.6%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 847.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 884.00 ns (0.3%)
LB compute : 322.38 us (94.5%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010590829711508879 unconverged cnt = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7690033465859247e-10,-5.090161668065975e-10,2.507894680057509e-10)
sum a = (1.45733184325346e-11,-1.2783619474898778e-11,-1.273353848712255e-11)
sum e = 1.2653642830600954e-10
sum de = -1.255263972558372e-15
Info: cfl dt = 1.5773516300000345 cfl multiplier : 0.999999999998424 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.6073e+05 | 99657 | 1 | 6.200e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6079.588369730231 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 68 [SPH][rank=0]
Info: time since start : 75.18292618400001 (s) [SPH][rank=0]
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000004.vtk [VTK Dump][rank=0]
- took 5.77 ms, bandwidth = 968.08 MB/s
Info: Dumping state to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000004.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (53.5%)
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000004.sham [Shamrock Dump][rank=0]
- took 5.49 ms, bandwidth = 2.33 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 817.15 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_normal_0000004.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_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 795.24 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_hollywood_0000004.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_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 163.74 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 168.83 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_slice_0000004.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_slice_0000004.json
Info: compute_slice field_name: dt_part, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 291.97 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 290.31 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/dt_part_slice_0000004.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/dt_part_slice_0000004.json
Info: compute_column_integ field_name: custom, rays count: 1048576 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.015478413000000002 s
Info: compute_column_integ took 799.64 ms [sph::CartesianRender][rank=0]
Info: compute_column_integ field_name: unity, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 796.30 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/column_average_vz_0000004.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/column_average_vz_0000004.json
Saving perf history to _to_trash/black_hole_disc_lense_thirring_100000/analysis/perf_history.json
Info: evolve_until (target_time = 123.79s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 99.03588853020457, dt = 1.5773516300000345 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99657.0 min = 99657.0 factor = 1
- strategy "round robin" : max = 94674.1 min = 94674.1 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99657
max = 99657
avg = 99657
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.70 us (1.8%)
patch tree reduce : 1.27 us (0.3%)
gen split merge : 938.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 939.00 ns (0.3%)
LB compute : 343.63 us (94.6%)
LB move op cnt : 0
LB apply : 3.39 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010590431978623971 unconverged cnt = 5
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9974292332724748e-10,-5.337966850621286e-10,2.482015187873529e-10)
sum a = (1.482140825718999e-11,-1.2769883116046718e-11,-1.3098272374773437e-11)
sum e = 1.265240905396867e-10
sum de = -1.3118522126207728e-15
Info: cfl dt = 1.612631565684645 cfl multiplier : 0.9999999999989493 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5765e+05 | 99652 | 1 | 6.321e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8983.340685711184 (tsim/hr) [sph::Model][rank=0]
---------------- t = 100.61324016020461, dt = 1.612631565684645 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99652.0 min = 99652.0 factor = 1
- strategy "round robin" : max = 94669.4 min = 94669.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99652
max = 99652
avg = 99652
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.27 us (2.1%)
patch tree reduce : 1.14 us (0.4%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 909.00 ns (0.3%)
LB compute : 275.03 us (93.8%)
LB move op cnt : 0
LB apply : 3.06 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6682446727191567e-10,-5.491620797838398e-10,2.2387096929602277e-10)
sum a = (1.4913642304100133e-11,-1.1115965051521571e-11,-1.3365484656197876e-11)
sum e = 1.2651806725454573e-10
sum de = -1.2991085238609379e-15
Info: cfl dt = 1.570420897955503 cfl multiplier : 0.9999999999992996 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.5359e+05 | 99651 | 1 | 3.930e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14773.778831291302 (tsim/hr) [sph::Model][rank=0]
---------------- t = 102.22587172588926, dt = 1.570420897955503 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99651.0 min = 99651.0 factor = 1
- strategy "round robin" : max = 94668.4 min = 94668.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99651
max = 99651
avg = 99651
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.6%)
patch tree reduce : 983.00 ns (0.3%)
gen split merge : 866.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.36 us (0.4%)
LB compute : 315.64 us (94.5%)
LB move op cnt : 0
LB apply : 2.91 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010589624469125756 unconverged cnt = 3
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6237974214409112e-10,-5.801677119907292e-10,2.0873401146911417e-10)
sum a = (1.5293033763233395e-11,-1.0288580348331322e-11,-1.3802097445203836e-11)
sum e = 1.2648864775116837e-10
sum de = -1.3233194209637767e-15
Info: cfl dt = 1.521858003474701 cfl multiplier : 0.9999999999995332 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.6140e+05 | 99646 | 1 | 6.174e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9157.262552623055 (tsim/hr) [sph::Model][rank=0]
---------------- t = 103.79629262384476, dt = 1.521858003474701 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99646.0 min = 99646.0 factor = 1
- strategy "round robin" : max = 94663.7 min = 94663.7 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99646
max = 99646
avg = 99646
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (2.1%)
patch tree reduce : 1.65 us (0.6%)
gen split merge : 732.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 847.00 ns (0.3%)
LB compute : 272.91 us (93.4%)
LB move op cnt : 0
LB apply : 3.53 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (69.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010589236069490523 unconverged cnt = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.465359768942561e-10,-6.039541186589642e-10,1.8897671369468462e-10)
sum a = (1.5537806683845317e-11,-9.17568804434267e-12,-1.4137324097834731e-11)
sum e = 1.2646952178870925e-10
sum de = -1.3354708589328645e-15
Info: cfl dt = 1.5034828390958863 cfl multiplier : 0.9999999999996888 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.6203e+05 | 99643 | 1 | 6.150e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8908.791677905065 (tsim/hr) [sph::Model][rank=0]
---------------- t = 105.31815062731947, dt = 1.5034828390958863 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99643.0 min = 99643.0 factor = 1
- strategy "round robin" : max = 94660.8 min = 94660.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99643
max = 99643
avg = 99643
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.6%)
patch tree reduce : 1.22 us (0.4%)
gen split merge : 804.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 846.00 ns (0.3%)
LB compute : 315.96 us (94.4%)
LB move op cnt : 0
LB apply : 2.96 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5725978662857204e-10,-6.342801106562317e-10,1.789111644596209e-10)
sum a = (1.5884393429172706e-11,-8.864409284811473e-12,-1.4496702058936374e-11)
sum e = 1.2644571805317865e-10
sum de = -1.3643046683472905e-15
Info: cfl dt = 1.4546192249998038 cfl multiplier : 0.9999999999997925 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.4822e+05 | 99639 | 1 | 4.014e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13483.536504554999 (tsim/hr) [sph::Model][rank=0]
---------------- t = 106.82163346641535, dt = 1.4546192249998038 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99639.0 min = 99639.0 factor = 1
- strategy "round robin" : max = 94657.0 min = 94657.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99639
max = 99639
avg = 99639
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.8%)
patch tree reduce : 1.17 us (0.4%)
gen split merge : 775.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 825.00 ns (0.3%)
LB compute : 295.46 us (94.1%)
LB move op cnt : 0
LB apply : 3.18 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.37682745987975e-10,-6.356122007939906e-10,1.6185528937968822e-10)
sum a = (1.5645177516699817e-11,-7.798679618941764e-12,-1.4408164166727012e-11)
sum e = 1.264319357846698e-10
sum de = -1.3403408911274351e-15
Info: cfl dt = 1.4909858793899469 cfl multiplier : 0.9999999999998618 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.5666e+05 | 99637 | 1 | 3.882e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13489.053132635428 (tsim/hr) [sph::Model][rank=0]
---------------- t = 108.27625269141515, dt = 1.4909858793899469 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99637.0 min = 99637.0 factor = 1
- strategy "round robin" : max = 94655.1 min = 94655.1 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99637
max = 99637
avg = 99637
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (2.1%)
patch tree reduce : 946.00 ns (0.3%)
gen split merge : 857.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 277.48 us (93.9%)
LB move op cnt : 0
LB apply : 3.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.01058809195454044 unconverged cnt = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2884733854983572e-10,-6.585449480469902e-10,1.445626917372807e-10)
sum a = (1.582223756937658e-11,-6.977094636745545e-12,-1.463667096736624e-11)
sum e = 1.264102301053862e-10
sum de = -1.339211120997438e-15
Info: cfl dt = 1.447689238668952 cfl multiplier : 0.999999999999908 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.6116e+05 | 99633 | 1 | 6.182e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8682.226155780436 (tsim/hr) [sph::Model][rank=0]
---------------- t = 109.7672385708051, dt = 1.447689238668952 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99633.0 min = 99633.0 factor = 1
- strategy "round robin" : max = 94651.3 min = 94651.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99633
max = 99633
avg = 99633
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (2.0%)
patch tree reduce : 1.06 us (0.3%)
gen split merge : 812.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 869.00 ns (0.3%)
LB compute : 290.05 us (93.8%)
LB move op cnt : 0
LB apply : 2.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010587716882286847 unconverged cnt = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1400393636464952e-10,-6.883361278742373e-10,1.2277144362934397e-10)
sum a = (1.6129763501542103e-11,-5.9629272838783964e-12,-1.499496874304866e-11)
sum e = 1.263861886464483e-10
sum de = -1.3409912078517394e-15
Info: cfl dt = 1.5298560345340342 cfl multiplier : 0.9999999999999387 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.6115e+05 | 99629 | 1 | 6.182e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8429.855953043805 (tsim/hr) [sph::Model][rank=0]
---------------- t = 111.21492780947406, dt = 1.5298560345340342 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99629.0 min = 99629.0 factor = 1
- strategy "round robin" : max = 94647.5 min = 94647.5 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99629
max = 99629
avg = 99629
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.00 us (1.7%)
patch tree reduce : 1.17 us (0.4%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 888.00 ns (0.3%)
LB compute : 277.13 us (94.0%)
LB move op cnt : 0
LB apply : 3.08 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010587319028440045 unconverged cnt = 3
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2525802396739017e-10,-7.232855557625333e-10,1.1088095881827035e-10)
sum a = (1.6504852548637316e-11,-5.722522654470503e-12,-1.5341420717486567e-11)
sum e = 1.2635029616857062e-10
sum de = -1.3733847613262166e-15
Info: cfl dt = 1.506212664515963 cfl multiplier : 0.9999999999999591 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.6165e+05 | 99622 | 1 | 6.163e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8936.827794892228 (tsim/hr) [sph::Model][rank=0]
---------------- t = 112.7447838440081, dt = 1.506212664515963 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99622.0 min = 99622.0 factor = 1
- strategy "round robin" : max = 94640.9 min = 94640.9 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99622
max = 99622
avg = 99622
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.5%)
patch tree reduce : 1.27 us (0.4%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 839.00 ns (0.2%)
LB compute : 334.01 us (94.7%)
LB move op cnt : 0
LB apply : 3.23 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (71.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2849933524576359e-10,-7.471731897386569e-10,9.824290562247353e-11)
sum a = (1.666045154704352e-11,-5.322372388573069e-12,-1.5498676564822894e-11)
sum e = 1.263268136746563e-10
sum de = -1.36058989877943e-15
Info: cfl dt = 1.4758600292146675 cfl multiplier : 0.9999999999999728 [sph::Model][rank=0]
Info: Timestep 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.5642e+05 | 99618 | 1 | 3.885e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13957.181087585248 (tsim/hr) [sph::Model][rank=0]
---------------- t = 114.25099650852405, dt = 1.4758600292146675 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99618.0 min = 99618.0 factor = 1
- strategy "round robin" : max = 94637.1 min = 94637.1 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99618
max = 99618
avg = 99618
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.6%)
patch tree reduce : 1.27 us (0.4%)
gen split merge : 813.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 329.85 us (94.3%)
LB move op cnt : 0
LB apply : 3.74 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (71.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.0105865390873344 unconverged cnt = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1566529275220109e-10,-7.510979593221716e-10,8.141021232482221e-11)
sum a = (1.642161765414999e-11,-4.552811034869735e-12,-1.532941600493867e-11)
sum e = 1.2630821514922634e-10
sum de = -1.3491995196027882e-15
Info: cfl dt = 1.4586783034649138 cfl multiplier : 0.9999999999999819 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5475e+05 | 99615 | 1 | 6.437e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8253.942328268406 (tsim/hr) [sph::Model][rank=0]
---------------- t = 115.72685653773873, dt = 1.4586783034649138 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99615.0 min = 99615.0 factor = 1
- strategy "round robin" : max = 94634.2 min = 94634.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99615
max = 99615
avg = 99615
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (2.1%)
patch tree reduce : 985.00 ns (0.3%)
gen split merge : 718.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 897.00 ns (0.3%)
LB compute : 272.73 us (93.5%)
LB move op cnt : 0
LB apply : 3.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0047533203351805e-10,-7.606569204367316e-10,6.276734026790742e-11)
sum a = (1.6306452443633135e-11,-3.720661269157544e-12,-1.5250027252445573e-11)
sum e = 1.2630061275011202e-10
sum de = -1.307139072140072e-15
Info: cfl dt = 1.4297304863275282 cfl multiplier : 0.9999999999999879 [sph::Model][rank=0]
Info: Timestep 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.5662e+05 | 99614 | 1 | 3.882e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13528.175564005778 (tsim/hr) [sph::Model][rank=0]
---------------- t = 117.18553484120363, dt = 1.4297304863275282 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99614.0 min = 99614.0 factor = 1
- strategy "round robin" : max = 94633.3 min = 94633.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99614
max = 99614
avg = 99614
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.8%)
patch tree reduce : 1.15 us (0.4%)
gen split merge : 723.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.3%)
LB compute : 301.91 us (94.3%)
LB move op cnt : 0
LB apply : 3.02 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.01058577804800599 unconverged cnt = 3
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.846290146223475e-11,-7.873179547386442e-10,4.620731746939559e-11)
sum a = (1.6538699519367562e-11,-3.2404800639328194e-12,-1.5418229425126247e-11)
sum e = 1.262715922616913e-10
sum de = -1.315068839951147e-15
Info: cfl dt = 1.3933573025401729 cfl multiplier : 0.999999999999992 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.6108e+05 | 99609 | 1 | 6.184e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8323.585252183053 (tsim/hr) [sph::Model][rank=0]
---------------- t = 118.61526532753116, dt = 1.3933573025401729 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99609.0 min = 99609.0 factor = 1
- strategy "round robin" : max = 94628.5 min = 94628.5 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99609
max = 99609
avg = 99609
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.94 us (1.6%)
patch tree reduce : 1.06 us (0.3%)
gen split merge : 1.11 us (0.3%)
split / merge op : 0/0
apply split merge : 900.00 ns (0.3%)
LB compute : 300.60 us (94.5%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010585408949541089 unconverged cnt = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0970560672376336e-10,-8.0565423699066e-10,3.909660551598639e-11)
sum a = (1.6596794280649225e-11,-3.256160227437498e-12,-1.5407476686556456e-11)
sum e = 1.262433124503809e-10
sum de = -1.3081591883552734e-15
Info: cfl dt = 1.4254533798410793 cfl multiplier : 0.9999999999999947 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.6166e+05 | 99604 | 1 | 6.161e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8141.173560111337 (tsim/hr) [sph::Model][rank=0]
---------------- t = 120.00862263007133, dt = 1.4254533798410793 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99604.0 min = 99604.0 factor = 1
- strategy "round robin" : max = 94623.8 min = 94623.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99604
max = 99604
avg = 99604
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.9%)
patch tree reduce : 932.00 ns (0.3%)
gen split merge : 787.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 845.00 ns (0.3%)
LB compute : 288.17 us (94.1%)
LB move op cnt : 0
LB apply : 3.87 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.76993776523808e-11,-8.075918565993631e-10,6.6597140272032796e-12)
sum a = (1.6312219005413947e-11,-1.6856699253339727e-12,-1.5241809639029753e-11)
sum e = 1.2622741234391132e-10
sum de = -1.2769189280901842e-15
Info: cfl dt = 1.3910696064208092 cfl multiplier : 0.9999999999999964 [sph::Model][rank=0]
Info: Timestep 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.5403e+05 | 99601 | 1 | 3.921e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13088.225082934106 (tsim/hr) [sph::Model][rank=0]
---------------- t = 121.4340760099124, dt = 1.3910696064208092 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99601.0 min = 99601.0 factor = 1
- strategy "round robin" : max = 94620.9 min = 94620.9 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99601
max = 99601
avg = 99601
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (2.0%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 673.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 879.00 ns (0.3%)
LB compute : 286.07 us (93.7%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010584658907292295 unconverged cnt = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.3980435795544505e-11,-8.0900685579535e-10,-8.958688556356913e-12)
sum a = (1.6047642088871107e-11,-1.057611921615206e-12,-1.4963749671306845e-11)
sum e = 1.2620928208526822e-10
sum de = -1.2510550324761107e-15
Info: cfl dt = 1.3509556455881204 cfl multiplier : 0.9999999999999977 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.6212e+05 | 99598 | 1 | 6.144e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8151.323070606197 (tsim/hr) [sph::Model][rank=0]
---------------- t = 122.82514561633322, dt = 0.9697150464225075 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99598.0 min = 99598.0 factor = 1
- strategy "round robin" : max = 94618.1 min = 94618.1 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99598
max = 99598
avg = 99598
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.5%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.3%)
LB compute : 318.20 us (94.8%)
LB move op cnt : 0
LB apply : 2.96 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.859804778272276e-11,-8.093953724221317e-10,-2.3298505953254376e-11)
sum a = (1.585645780837458e-11,-4.500472870601782e-13,-1.47725872212192e-11)
sum e = 1.2619719545874706e-10
sum de = -1.2021737306687049e-15
Info: cfl dt = 1.3270654575553775 cfl multiplier : 0.9999999999999986 [sph::Model][rank=0]
Info: Timestep 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.5867e+05 | 99598 | 1 | 3.850e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9066.646097584253 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 85 [SPH][rank=0]
Info: time since start : 88.47514310400001 (s) [SPH][rank=0]
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000005.vtk [VTK Dump][rank=0]
- took 5.79 ms, bandwidth = 963.59 MB/s
Info: Dumping state to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000005.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (57.8%)
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000005.sham [Shamrock Dump][rank=0]
- took 5.48 ms, bandwidth = 2.33 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 787.52 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_normal_0000005.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_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 787.96 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_hollywood_0000005.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_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 162.33 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 162.91 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_slice_0000005.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_slice_0000005.json
Info: compute_slice field_name: dt_part, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 287.36 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 289.31 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/dt_part_slice_0000005.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/dt_part_slice_0000005.json
Info: compute_column_integ field_name: custom, rays count: 1048576 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.016171769000000003 s
Info: compute_column_integ took 794.64 ms [sph::CartesianRender][rank=0]
Info: compute_column_integ field_name: unity, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 789.65 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/column_average_vz_0000005.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/column_average_vz_0000005.json
Saving perf history to _to_trash/black_hole_disc_lense_thirring_100000/analysis/perf_history.json
Info: evolve_until (target_time = 148.55s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 123.79486066275572, dt = 1.3270654575553775 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99598.0 min = 99598.0 factor = 1
- strategy "round robin" : max = 94618.1 min = 94618.1 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99598
max = 99598
avg = 99598
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.52 us (1.1%)
patch tree reduce : 1.61 us (0.3%)
gen split merge : 1.05 us (0.2%)
split / merge op : 0/0
apply split merge : 938.00 ns (0.2%)
LB compute : 593.58 us (96.7%)
LB move op cnt : 0
LB apply : 3.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (75.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.439394809028743e-11,-8.156873749494169e-10,-3.442261495976073e-11)
sum a = (1.570275686629724e-11,-1.643180426157861e-13,-1.454325696463786e-11)
sum e = 1.2619438808011193e-10
sum de = -1.165300904020404e-15
Info: cfl dt = 1.2969472015049268 cfl multiplier : 0.9999999999999991 [sph::Model][rank=0]
Info: Timestep 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.5528e+05 | 99596 | 1 | 3.902e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12245.113936237345 (tsim/hr) [sph::Model][rank=0]
---------------- t = 125.1219261203111, dt = 1.2969472015049268 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99596.0 min = 99596.0 factor = 1
- strategy "round robin" : max = 94616.2 min = 94616.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99596
max = 99596
avg = 99596
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.9%)
patch tree reduce : 1.09 us (0.4%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 837.00 ns (0.3%)
LB compute : 291.04 us (94.2%)
LB move op cnt : 0
LB apply : 2.85 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.646853616553315e-12,-8.195746093918835e-10,-5.929289890217068e-11)
sum a = (1.5501491444344454e-11,8.546816404778663e-13,-1.4355709609521024e-11)
sum e = 1.2618190773225987e-10
sum de = -1.1203820878248568e-15
Info: cfl dt = 1.4152710195824778 cfl multiplier : 0.9999999999999994 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.5661e+05 | 99594 | 1 | 3.881e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12029.778653851505 (tsim/hr) [sph::Model][rank=0]
---------------- t = 126.41887332181602, dt = 1.4152710195824778 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99594.0 min = 99594.0 factor = 1
- strategy "round robin" : max = 94614.3 min = 94614.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99594
max = 99594
avg = 99594
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (2.0%)
patch tree reduce : 985.00 ns (0.3%)
gen split merge : 734.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 878.00 ns (0.3%)
LB compute : 270.27 us (93.9%)
LB move op cnt : 0
LB apply : 2.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010583311850004346 unconverged cnt = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6676463701463345e-11,-8.161007483904731e-10,-7.953719771867915e-11)
sum a = (1.51441875561296e-11,1.658194040893837e-12,-1.3967181310347785e-11)
sum e = 1.2616351372029193e-10
sum de = -1.0902972007751196e-15
Info: cfl dt = 1.4248251419502302 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.6313e+05 | 99590 | 1 | 6.105e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8345.587119676318 (tsim/hr) [sph::Model][rank=0]
---------------- t = 127.8341443413985, dt = 1.4248251419502302 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99590.0 min = 99590.0 factor = 1
- strategy "round robin" : max = 94610.5 min = 94610.5 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99590
max = 99590
avg = 99590
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.8%)
patch tree reduce : 1.02 us (0.4%)
gen split merge : 989.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.3%)
LB compute : 271.71 us (94.0%)
LB move op cnt : 0
LB apply : 2.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010582925574878763 unconverged cnt = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.546092950218794e-11,-8.280816959897871e-10,-9.716865526995634e-11)
sum a = (1.509728915060555e-11,2.0774888152682245e-12,-1.3814371475192904e-11)
sum e = 1.261471504176056e-10
sum de = -1.0461399491497757e-15
Info: cfl dt = 1.371365917409319 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.6226e+05 | 99587 | 1 | 6.137e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8357.46413205978 (tsim/hr) [sph::Model][rank=0]
---------------- t = 129.25896948334872, dt = 1.371365917409319 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99587.0 min = 99587.0 factor = 1
- strategy "round robin" : max = 94607.6 min = 94607.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99587
max = 99587
avg = 99587
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.6%)
patch tree reduce : 1.25 us (0.4%)
gen split merge : 689.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 835.00 ns (0.3%)
LB compute : 296.92 us (94.4%)
LB move op cnt : 0
LB apply : 3.20 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.01058255248768361 unconverged cnt = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2237027868415953e-11,-8.370433697182713e-10,-1.1134996153521043e-10)
sum a = (1.501395945012718e-11,2.3662377588269216e-12,-1.3591130293109774e-11)
sum e = 1.2613368000067784e-10
sum de = -9.917695526735514e-16
Info: cfl dt = 1.3806104673634396 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.6268e+05 | 99585 | 1 | 6.122e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8064.760037366075 (tsim/hr) [sph::Model][rank=0]
---------------- t = 130.63033540075804, dt = 1.3806104673634396 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99585.0 min = 99585.0 factor = 1
- strategy "round robin" : max = 94605.8 min = 94605.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99585
max = 99585
avg = 99585
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (0.9%)
patch tree reduce : 1.68 us (0.2%)
gen split merge : 1.12 us (0.2%)
split / merge op : 0/0
apply split merge : 906.00 ns (0.1%)
LB compute : 670.30 us (96.9%)
LB move op cnt : 0
LB apply : 3.79 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.07 us (81.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.01058217558813887 unconverged cnt = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.501711460183029e-11,-8.392109218774194e-10,-1.267744195421946e-10)
sum a = (1.4799132162280108e-11,2.7788307665549042e-12,-1.324720345644777e-11)
sum e = 1.2611690255066443e-10
sum de = -9.365808349026768e-16
Info: cfl dt = 1.4059261914856849 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5021e+05 | 99582 | 1 | 6.630e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7496.980500034778 (tsim/hr) [sph::Model][rank=0]
---------------- t = 132.0109458681215, dt = 1.4059261914856849 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99582.0 min = 99582.0 factor = 1
- strategy "round robin" : max = 94602.9 min = 94602.9 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99582
max = 99582
avg = 99582
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (1.9%)
patch tree reduce : 1.04 us (0.3%)
gen split merge : 815.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 305.13 us (94.2%)
LB move op cnt : 0
LB apply : 3.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.096187950116698e-11,-8.275010207303074e-10,-1.4629867376816627e-10)
sum a = (1.4312012743508901e-11,3.5158091210544422e-12,-1.2686190181277776e-11)
sum e = 1.2610079575344034e-10
sum de = -8.812996902372088e-16
Info: cfl dt = 1.3695910693532403 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.5819e+05 | 99579 | 1 | 3.857e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13123.234866728066 (tsim/hr) [sph::Model][rank=0]
---------------- t = 133.4168720596072, dt = 1.3695910693532403 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99579.0 min = 99579.0 factor = 1
- strategy "round robin" : max = 94600.0 min = 94600.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99579
max = 99579
avg = 99579
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.8%)
patch tree reduce : 975.00 ns (0.3%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 879.00 ns (0.3%)
LB compute : 306.44 us (94.4%)
LB move op cnt : 0
LB apply : 2.72 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.032210060954973e-11,-8.222694469512018e-10,-1.6336117853602274e-10)
sum a = (1.3968074152858621e-11,4.043507503280562e-12,-1.2232148393913932e-11)
sum e = 1.260985541631008e-10
sum de = -7.966154152735462e-16
Info: cfl dt = 1.3717295065773145 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.5829e+05 | 99579 | 1 | 3.855e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12788.676212583345 (tsim/hr) [sph::Model][rank=0]
---------------- t = 134.78646312896043, dt = 1.3717295065773145 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99579.0 min = 99579.0 factor = 1
- strategy "round robin" : max = 94600.0 min = 94600.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99579
max = 99579
avg = 99579
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.16 us (1.7%)
patch tree reduce : 1.16 us (0.4%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 869.00 ns (0.3%)
LB compute : 288.37 us (94.3%)
LB move op cnt : 0
LB apply : 2.85 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010581035541716395 unconverged cnt = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.830393876660001e-11,-8.37577256703432e-10,-1.8009494353785645e-10)
sum a = (1.4040203513990647e-11,4.309654552618534e-12,-1.2126288221520067e-11)
sum e = 1.2607768953689587e-10
sum de = -7.482606267276468e-16
Info: cfl dt = 1.3937226456492702 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf 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 | 99575 | 1 | 6.149e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8030.8293736664045 (tsim/hr) [sph::Model][rank=0]
---------------- t = 136.15819263553774, dt = 1.3937226456492702 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99575.0 min = 99575.0 factor = 1
- strategy "round robin" : max = 94596.2 min = 94596.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99575
max = 99575
avg = 99575
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.7%)
patch tree reduce : 995.00 ns (0.3%)
gen split merge : 755.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.3%)
LB compute : 316.58 us (94.6%)
LB move op cnt : 0
LB apply : 2.96 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.176290690852412e-10,-8.312328999093548e-10,-1.9668021891115394e-10)
sum a = (1.3690555671136416e-11,4.773037175226078e-12,-1.163776603947233e-11)
sum e = 1.260773761321409e-10
sum de = -6.586765927695708e-16
Info: cfl dt = 1.32808851812707 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.5769e+05 | 99575 | 1 | 3.864e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12984.499281451712 (tsim/hr) [sph::Model][rank=0]
---------------- t = 137.551915281187, dt = 1.32808851812707 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99575.0 min = 99575.0 factor = 1
- strategy "round robin" : max = 94596.2 min = 94596.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99575
max = 99575
avg = 99575
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.7%)
patch tree reduce : 1.02 us (0.3%)
gen split merge : 730.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 854.00 ns (0.3%)
LB compute : 290.00 us (94.4%)
LB move op cnt : 0
LB apply : 3.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010580280878548258 unconverged cnt = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3647901253290155e-10,-8.266124993363486e-10,-2.134600336768696e-10)
sum a = (1.339937671272354e-11,5.223941944494441e-12,-1.1197110179296832e-11)
sum e = 1.2606430828717408e-10
sum de = -5.945110282792477e-16
Info: cfl dt = 1.3767360660219248 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.6225e+05 | 99573 | 1 | 6.137e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7790.419373851601 (tsim/hr) [sph::Model][rank=0]
---------------- t = 138.88000379931407, dt = 1.3767360660219248 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99573.0 min = 99573.0 factor = 1
- strategy "round robin" : max = 94594.3 min = 94594.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99573
max = 99573
avg = 99573
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.7%)
patch tree reduce : 1.25 us (0.4%)
gen split merge : 774.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 983.00 ns (0.3%)
LB compute : 320.43 us (94.6%)
LB move op cnt : 0
LB apply : 3.08 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010579897195431611 unconverged cnt = 3
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4245756708190224e-10,-8.349602989314045e-10,-2.2542223526940072e-10)
sum a = (1.3364015543251281e-11,5.2905379676396385e-12,-1.09321516214136e-11)
sum e = 1.2604383123941518e-10
sum de = -5.271243363086955e-16
Info: cfl dt = 1.2725385196128949 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.6168e+05 | 99569 | 1 | 6.158e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8047.96104894696 (tsim/hr) [sph::Model][rank=0]
---------------- t = 140.256739865336, dt = 1.2725385196128949 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99569.0 min = 99569.0 factor = 1
- strategy "round robin" : max = 94590.5 min = 94590.5 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99569
max = 99569
avg = 99569
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (2.0%)
patch tree reduce : 1.02 us (0.3%)
gen split merge : 793.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.57 us (0.5%)
LB compute : 295.32 us (93.9%)
LB move op cnt : 0
LB apply : 3.76 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6429413822752578e-10,-8.324784566279442e-10,-2.460681770852841e-10)
sum a = (1.314424310914828e-11,5.846586111295322e-12,-1.056719196352448e-11)
sum e = 1.2603539799439343e-10
sum de = -4.476440957505509e-16
Info: cfl dt = 1.1169066299886938 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.5732e+05 | 99568 | 1 | 3.869e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11839.103403812662 (tsim/hr) [sph::Model][rank=0]
---------------- t = 141.5292783849489, dt = 1.1169066299886938 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99568.0 min = 99568.0 factor = 1
- strategy "round robin" : max = 94589.6 min = 94589.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99568
max = 99568
avg = 99568
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.00 us (1.5%)
patch tree reduce : 981.00 ns (0.3%)
gen split merge : 896.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 850.00 ns (0.3%)
LB compute : 311.88 us (94.8%)
LB move op cnt : 0
LB apply : 3.18 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010579228133224223 unconverged cnt = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7296713896312926e-10,-8.419679609875196e-10,-2.602909585289787e-10)
sum a = (1.3186353115832602e-11,6.0407996394123665e-12,-1.0427853551089486e-11)
sum e = 1.2601581793782398e-10
sum de = -3.918483652100493e-16
Info: cfl dt = 1.143652801398539 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.6173e+05 | 99565 | 1 | 6.156e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6531.441085978067 (tsim/hr) [sph::Model][rank=0]
---------------- t = 142.6461850149376, dt = 1.143652801398539 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99565.0 min = 99565.0 factor = 1
- strategy "round robin" : max = 94586.8 min = 94586.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99565
max = 99565
avg = 99565
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.7%)
patch tree reduce : 1.00 us (0.3%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 813.00 ns (0.2%)
LB compute : 312.29 us (94.4%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (71.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8025596667166961e-10,-8.385593890451873e-10,-2.6687445854219306e-10)
sum a = (1.2981422113335338e-11,6.027491368974383e-12,-1.0031000598762059e-11)
sum e = 1.2601117275419466e-10
sum de = -3.248729743088753e-16
Info: cfl dt = 1.1795271220136359 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.5844e+05 | 99564 | 1 | 3.852e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10687.108400925032 (tsim/hr) [sph::Model][rank=0]
---------------- t = 143.78983781633613, dt = 1.1795271220136359 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99564.0 min = 99564.0 factor = 1
- strategy "round robin" : max = 94585.8 min = 94585.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99564
max = 99564
avg = 99564
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.8%)
patch tree reduce : 1.33 us (0.4%)
gen split merge : 840.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 844.00 ns (0.3%)
LB compute : 300.51 us (94.1%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8799688706875904e-10,-8.345516329933716e-10,-2.7276361740188426e-10)
sum a = (1.27688934279349e-11,5.989800978374562e-12,-9.62008345592173e-12)
sum e = 1.2600683068541572e-10
sum de = -2.529353256119657e-16
Info: cfl dt = 1.2193122983630638 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.5832e+05 | 99563 | 1 | 3.854e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11017.048547033166 (tsim/hr) [sph::Model][rank=0]
---------------- t = 144.96936493834977, dt = 1.2193122983630638 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99563.0 min = 99563.0 factor = 1
- strategy "round robin" : max = 94584.8 min = 94584.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99563
max = 99563
avg = 99563
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (2.0%)
patch tree reduce : 1.40 us (0.5%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 849.00 ns (0.3%)
LB compute : 263.82 us (93.5%)
LB move op cnt : 0
LB apply : 2.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (61.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.01057822881663953 unconverged cnt = 4
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0977282362563681e-10,-8.199403705627753e-10,-2.872734391442658e-10)
sum a = (1.2345165239012895e-11,6.381965219536342e-12,-9.050379646047986e-12)
sum e = 1.259766714490468e-10
sum de = -2.0210704652020397e-16
Info: cfl dt = 1.2588661611448808 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.6306e+05 | 99557 | 1 | 6.105e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7189.594741593766 (tsim/hr) [sph::Model][rank=0]
---------------- t = 146.18867723671283, dt = 1.2588661611448808 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99557.0 min = 99557.0 factor = 1
- strategy "round robin" : max = 94579.1 min = 94579.1 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99557
max = 99557
avg = 99557
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.7%)
patch tree reduce : 1.24 us (0.4%)
gen split merge : 925.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 884.00 ns (0.3%)
LB compute : 303.56 us (94.5%)
LB move op cnt : 0
LB apply : 3.02 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010577871559052305 unconverged cnt = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2540048627405773e-10,-8.126738016689916e-10,-2.9911022819811034e-10)
sum a = (1.2078852330417572e-11,6.571716129282858e-12,-8.596548530691775e-12)
sum e = 1.2596729397645188e-10
sum de = -1.3382298823421309e-16
Info: cfl dt = 1.2278096399371068 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.6260e+05 | 99555 | 1 | 6.123e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7402.008379684655 (tsim/hr) [sph::Model][rank=0]
---------------- t = 147.44754339785771, dt = 1.1062893974491317 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99555.0 min = 99555.0 factor = 1
- strategy "round robin" : max = 94577.2 min = 94577.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99555
max = 99555
avg = 99555
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.98 us (1.6%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 999.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 853.00 ns (0.3%)
LB compute : 288.45 us (94.2%)
LB move op cnt : 0
LB apply : 3.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.01057755667160517 unconverged cnt = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.575306159736053e-10,-7.950865611214958e-10,-3.2345307137004925e-10)
sum a = (1.1639359566382882e-11,7.373839562289714e-12,-8.045872890009451e-12)
sum e = 1.259435267485589e-10
sum de = -9.550261603190228e-17
Info: cfl dt = 1.2054973911103977 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5201e+05 | 99551 | 1 | 6.549e-01 | 0.0% | 0.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6081.15646180008 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 104 [SPH][rank=0]
Info: time since start : 102.69173451 (s) [SPH][rank=0]
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000006.vtk [VTK Dump][rank=0]
- took 5.60 ms, bandwidth = 995.46 MB/s
Info: Dumping state to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000006.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (54.1%)
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000006.sham [Shamrock Dump][rank=0]
- took 5.32 ms, bandwidth = 2.40 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 788.00 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_normal_0000006.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_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 786.32 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_hollywood_0000006.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_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 157.25 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 159.95 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_slice_0000006.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_slice_0000006.json
Info: compute_slice field_name: dt_part, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 285.88 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 285.57 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/dt_part_slice_0000006.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/dt_part_slice_0000006.json
Info: compute_column_integ field_name: custom, rays count: 1048576 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.017243238 s
Info: compute_column_integ took 798.38 ms [sph::CartesianRender][rank=0]
Info: compute_column_integ field_name: unity, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 788.12 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/column_average_vz_0000006.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/column_average_vz_0000006.json
Saving perf history to _to_trash/black_hole_disc_lense_thirring_100000/analysis/perf_history.json
Info: evolve_until (target_time = 173.31s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 148.55383279530685, dt = 1.2054973911103977 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99551.0 min = 99551.0 factor = 1
- strategy "round robin" : max = 94573.4 min = 94573.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99551
max = 99551
avg = 99551
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.92 us (2.4%)
patch tree reduce : 1.06 us (0.4%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 274.56 us (93.3%)
LB move op cnt : 0
LB apply : 3.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010577212552815489 unconverged cnt = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.668397221838556e-10,-7.965931685253446e-10,-3.3348734442886427e-10)
sum a = (1.1565799578976383e-11,7.393127726242949e-12,-7.750137582517813e-12)
sum e = 1.2593036477027167e-10
sum de = -3.365826735439616e-17
Info: cfl dt = 1.1791959944874282 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.6309e+05 | 99548 | 1 | 6.104e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7109.739139747047 (tsim/hr) [sph::Model][rank=0]
---------------- t = 149.75933018641723, dt = 1.1791959944874282 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99548.0 min = 99548.0 factor = 1
- strategy "round robin" : max = 94570.6 min = 94570.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99548
max = 99548
avg = 99548
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (1.8%)
patch tree reduce : 1.08 us (0.3%)
gen split merge : 716.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 320.42 us (94.5%)
LB move op cnt : 0
LB apply : 2.89 us (0.9%)
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.8894581900448747e-10,-7.982121211194574e-10,-3.5641258517893995e-10)
sum a = (1.1527481042627499e-11,7.915730886501415e-12,-7.513373347708554e-12)
sum e = 1.2591962595897514e-10
sum de = 4.507880254186655e-17
Info: cfl dt = 1.1592807162251586 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.4411e+05 | 99546 | 1 | 4.078e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10410.151458822946 (tsim/hr) [sph::Model][rank=0]
---------------- t = 150.93852618090466, dt = 1.1592807162251586 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99546.0 min = 99546.0 factor = 1
- strategy "round robin" : max = 94568.7 min = 94568.7 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99546
max = 99546
avg = 99546
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.6%)
patch tree reduce : 991.00 ns (0.3%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 302.08 us (94.4%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (61.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010576542051731433 unconverged cnt = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.1493436486115223e-10,-7.75274873103743e-10,-3.712198980625717e-10)
sum a = (1.1012583141190972e-11,8.348354852560075e-12,-6.858285100817455e-12)
sum e = 1.259090004908602e-10
sum de = 1.0934968038948203e-16
Info: cfl dt = 1.14427461498227 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.6312e+05 | 99544 | 1 | 6.103e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6838.7279726371125 (tsim/hr) [sph::Model][rank=0]
---------------- t = 152.09780689712983, dt = 1.14427461498227 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99544.0 min = 99544.0 factor = 1
- strategy "round robin" : max = 94566.8 min = 94566.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99544
max = 99544
avg = 99544
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.99 us (1.5%)
patch tree reduce : 1.15 us (0.4%)
gen split merge : 711.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 919.00 ns (0.3%)
LB compute : 308.75 us (94.8%)
LB move op cnt : 0
LB apply : 2.83 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2738344888319623e-10,-7.656960655924964e-10,-3.7880093009190595e-10)
sum a = (1.076000535353909e-11,8.36871350381428e-12,-6.410069298905812e-12)
sum e = 1.2590881167870105e-10
sum de = 2.0111450609849917e-16
Info: cfl dt = 1.2171368012207155 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6049e+05 | 99544 | 1 | 3.821e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10779.82254677838 (tsim/hr) [sph::Model][rank=0]
---------------- t = 153.2420815121121, dt = 1.2171368012207155 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99544.0 min = 99544.0 factor = 1
- strategy "round robin" : max = 94566.8 min = 94566.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99544
max = 99544
avg = 99544
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.84 us (1.5%)
patch tree reduce : 1.06 us (0.3%)
gen split merge : 799.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 845.00 ns (0.3%)
LB compute : 298.31 us (94.7%)
LB move op cnt : 0
LB apply : 3.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.3878792807955515e-10,-7.646616172356595e-10,-3.8926821586093604e-10)
sum a = (1.068850587154358e-11,8.40440378967993e-12,-6.101873188827427e-12)
sum e = 1.2590106134494663e-10
sum de = 2.768113139388927e-16
Info: cfl dt = 1.1639102533089676 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.5927e+05 | 99542 | 1 | 3.839e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11412.556810547163 (tsim/hr) [sph::Model][rank=0]
---------------- t = 154.4592183133328, dt = 1.1639102533089676 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99542.0 min = 99542.0 factor = 1
- strategy "round robin" : max = 94564.9 min = 94564.9 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99542
max = 99542
avg = 99542
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.02 us (1.5%)
patch tree reduce : 955.00 ns (0.3%)
gen split merge : 854.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 826.00 ns (0.2%)
LB compute : 317.78 us (94.9%)
LB move op cnt : 0
LB apply : 3.12 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.4580960969737146e-10,-7.635883787819103e-10,-3.9487133273104255e-10)
sum a = (1.0614945585684075e-11,8.258498912777911e-12,-5.800958070748356e-12)
sum e = 1.2589481971854276e-10
sum de = 3.6483176396069324e-16
Info: cfl dt = 1.099157873177111 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.2940e+05 | 99541 | 1 | 4.339e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9656.266080124067 (tsim/hr) [sph::Model][rank=0]
---------------- t = 155.62312856664175, dt = 1.099157873177111 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99541.0 min = 99541.0 factor = 1
- strategy "round robin" : max = 94563.9 min = 94563.9 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99541
max = 99541
avg = 99541
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.8%)
patch tree reduce : 1.38 us (0.4%)
gen split merge : 774.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 293.53 us (94.0%)
LB move op cnt : 0
LB apply : 2.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (63.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.010575204508958744 unconverged cnt = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.6505874642800513e-10,-7.685728822282716e-10,-4.158119765092998e-10)
sum a = (1.0704071396771574e-11,8.673156425097675e-12,-5.6751311981665765e-12)
sum e = 1.2587310914613276e-10
sum de = 4.325598984847787e-16
Info: cfl dt = 1.0492677398620358 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.6200e+05 | 99537 | 1 | 6.144e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6439.932954566007 (tsim/hr) [sph::Model][rank=0]
---------------- t = 156.72228643981887, dt = 1.0492677398620358 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99537.0 min = 99537.0 factor = 1
- strategy "round robin" : max = 94560.1 min = 94560.1 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99537
max = 99537
avg = 99537
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.7%)
patch tree reduce : 986.00 ns (0.3%)
gen split merge : 828.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 834.00 ns (0.2%)
LB compute : 316.16 us (94.6%)
LB move op cnt : 0
LB apply : 3.71 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.01057489887403774 unconverged cnt = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.8539334208923664e-10,-7.603442387787522e-10,-4.338871421551361e-10)
sum a = (1.0550480797676921e-11,9.081357605070799e-12,-5.3149447921372956e-12)
sum e = 1.2585216657581312e-10
sum de = 4.786241125539039e-16
Info: cfl dt = 1.0099273035160892 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.6275e+05 | 99533 | 1 | 6.116e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6176.609052429479 (tsim/hr) [sph::Model][rank=0]
---------------- t = 157.77155417968092, dt = 1.0099273035160892 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99533.0 min = 99533.0 factor = 1
- strategy "round robin" : max = 94556.3 min = 94556.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99533
max = 99533
avg = 99533
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.4%)
patch tree reduce : 1.04 us (0.3%)
gen split merge : 794.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 341.16 us (94.8%)
LB move op cnt : 0
LB apply : 3.21 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (69.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.02917872407581e-10,-7.475386883518881e-10,-4.450826350664462e-10)
sum a = (1.0290366732809474e-11,9.291008962818081e-12,-4.897284883916433e-12)
sum e = 1.2584686976948599e-10
sum de = 5.402754750047273e-16
Info: cfl dt = 0.9843468770406012 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.5892e+05 | 99532 | 1 | 3.844e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9457.775602830323 (tsim/hr) [sph::Model][rank=0]
---------------- t = 158.781481483197, dt = 0.9843468770406012 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99532.0 min = 99532.0 factor = 1
- strategy "round robin" : max = 94555.4 min = 94555.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99532
max = 99532
avg = 99532
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.8%)
patch tree reduce : 1.12 us (0.4%)
gen split merge : 834.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 863.00 ns (0.3%)
LB compute : 271.32 us (94.0%)
LB move op cnt : 0
LB apply : 2.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (65.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.010574315766121811 unconverged cnt = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.2487995468573836e-10,-7.370123867580186e-10,-4.6293343855695886e-10)
sum a = (1.010400624536174e-11,9.732185943639658e-12,-4.539000261273893e-12)
sum e = 1.258369095209052e-10
sum de = 5.904909550475998e-16
Info: cfl dt = 0.9528946391496592 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.6268e+05 | 99530 | 1 | 6.118e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5791.855419080312 (tsim/hr) [sph::Model][rank=0]
---------------- t = 159.7658283602376, dt = 0.9528946391496592 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99530.0 min = 99530.0 factor = 1
- strategy "round robin" : max = 94553.5 min = 94553.5 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99530
max = 99530
avg = 99530
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.7%)
patch tree reduce : 933.00 ns (0.3%)
gen split merge : 860.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 826.00 ns (0.2%)
LB compute : 322.14 us (94.7%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.337642731998591e-10,-7.329045438903655e-10,-4.689185729599606e-10)
sum a = (1.003051804304515e-11,9.692822176593453e-12,-4.271198871391841e-12)
sum e = 1.2582703498942932e-10
sum de = 6.396878304649305e-16
Info: cfl dt = 0.9277461426665691 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6007e+05 | 99528 | 1 | 3.827e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8963.861710697982 (tsim/hr) [sph::Model][rank=0]
---------------- t = 160.71872299938727, dt = 0.9277461426665691 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99528.0 min = 99528.0 factor = 1
- strategy "round robin" : max = 94551.6 min = 94551.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99528
max = 99528
avg = 99528
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (2.0%)
patch tree reduce : 1.05 us (0.4%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 913.00 ns (0.3%)
LB compute : 279.33 us (93.5%)
LB move op cnt : 0
LB apply : 3.08 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (71.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.493559847534054e-10,-7.175617488768116e-10,-4.770518708294468e-10)
sum a = (9.746542345589744e-12,9.824259111167935e-12,-3.838428101704387e-12)
sum e = 1.2582213635015111e-10
sum de = 6.969650729863024e-16
Info: cfl dt = 0.9293410434916356 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.5973e+05 | 99527 | 1 | 3.832e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8716.002681905391 (tsim/hr) [sph::Model][rank=0]
---------------- t = 161.64646914205383, dt = 0.9293410434916356 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99527.0 min = 99527.0 factor = 1
- strategy "round robin" : max = 94550.6 min = 94550.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99527
max = 99527
avg = 99527
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.8%)
patch tree reduce : 997.00 ns (0.3%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.3%)
LB compute : 287.83 us (94.2%)
LB move op cnt : 0
LB apply : 3.16 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.571318840240407e-10,-7.053705377783813e-10,-4.764280890727686e-10)
sum a = (9.513471204877412e-12,9.640784846239e-12,-3.4620607188323845e-12)
sum e = 1.2581276416507327e-10
sum de = 7.494180501976322e-16
Info: cfl dt = 0.9032709151633643 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.5773e+05 | 99525 | 1 | 3.862e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8663.843577512811 (tsim/hr) [sph::Model][rank=0]
---------------- t = 162.57581018554546, dt = 0.9032709151633643 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99525.0 min = 99525.0 factor = 1
- strategy "round robin" : max = 94548.8 min = 94548.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99525
max = 99525
avg = 99525
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.8%)
patch tree reduce : 956.00 ns (0.3%)
gen split merge : 855.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 838.00 ns (0.3%)
LB compute : 302.77 us (94.5%)
LB move op cnt : 0
LB apply : 3.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010573222301636551 unconverged cnt = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.72724837960356e-10,-6.905338220874057e-10,-4.834881847159153e-10)
sum a = (9.241266099931737e-12,9.770732752733084e-12,-3.0702002629187684e-12)
sum e = 1.2579776411806736e-10
sum de = 7.79906458472999e-16
Info: cfl dt = 0.9189352101515925 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5934e+05 | 99522 | 1 | 6.246e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5206.208688443988 (tsim/hr) [sph::Model][rank=0]
---------------- t = 163.47908110070884, dt = 0.9189352101515925 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99522.0 min = 99522.0 factor = 1
- strategy "round robin" : max = 94545.9 min = 94545.9 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99522
max = 99522
avg = 99522
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.15 us (1.6%)
patch tree reduce : 1.05 us (0.3%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.3%)
LB compute : 304.59 us (94.4%)
LB move op cnt : 0
LB apply : 3.21 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010572950135506822 unconverged cnt = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.994049842200548e-10,-6.674461498311195e-10,-5.018808239539416e-10)
sum a = (8.857938847697121e-12,1.0318847366493466e-11,-2.5288744695995345e-12)
sum e = 1.2578368193787046e-10
sum de = 8.119957930757719e-16
Info: cfl dt = 0.9025932304524079 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.6420e+05 | 99519 | 1 | 6.061e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5458.314919193092 (tsim/hr) [sph::Model][rank=0]
---------------- t = 164.39801631086044, dt = 0.9025932304524079 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99519.0 min = 99519.0 factor = 1
- strategy "round robin" : max = 94543.0 min = 94543.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99519
max = 99519
avg = 99519
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.6%)
patch tree reduce : 1.20 us (0.4%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 829.00 ns (0.2%)
LB compute : 319.53 us (94.7%)
LB move op cnt : 0
LB apply : 3.14 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (70.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.115727578142294e-10,-6.471463231384092e-10,-5.035552963267809e-10)
sum a = (8.503383972114317e-12,1.0283744033760915e-11,-2.018440746739724e-12)
sum e = 1.2576369546250096e-10
sum de = 8.599587586706492e-16
Info: cfl dt = 0.8894536954055978 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6064e+05 | 99515 | 1 | 3.818e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8510.41457964328 (tsim/hr) [sph::Model][rank=0]
---------------- t = 165.30060954131284, dt = 0.8894536954055978 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99515.0 min = 99515.0 factor = 1
- strategy "round robin" : max = 94539.2 min = 94539.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99515
max = 99515
avg = 99515
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.9%)
patch tree reduce : 1.88 us (0.7%)
gen split merge : 823.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 893.00 ns (0.3%)
LB compute : 270.08 us (93.5%)
LB move op cnt : 0
LB apply : 3.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.01057241758579952 unconverged cnt = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.409307916327727e-10,-6.159581357958077e-10,-5.229441039722246e-10)
sum a = (7.99683246790584e-12,1.0918106921253463e-11,-1.3367869219007908e-12)
sum e = 1.2574395070282387e-10
sum de = 8.846179498415674e-16
Info: cfl dt = 0.8789821751310597 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.6384e+05 | 99511 | 1 | 6.074e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5272.043356234551 (tsim/hr) [sph::Model][rank=0]
---------------- t = 166.19006323671843, dt = 0.8789821751310597 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99511.0 min = 99511.0 factor = 1
- strategy "round robin" : max = 94535.4 min = 94535.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99511
max = 99511
avg = 99511
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.9%)
patch tree reduce : 990.00 ns (0.3%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 869.00 ns (0.3%)
LB compute : 268.82 us (93.7%)
LB move op cnt : 0
LB apply : 2.90 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010572155508665224 unconverged cnt = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.541159873544342e-10,-6.001492980862859e-10,-5.286233609076936e-10)
sum a = (7.741665111153825e-12,1.0968321179708953e-11,-9.295808835482669e-13)
sum e = 1.2573956733674633e-10
sum de = 9.380504409705417e-16
Info: cfl dt = 0.8707827587056189 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5748e+05 | 99510 | 1 | 6.319e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5007.892560857724 (tsim/hr) [sph::Model][rank=0]
---------------- t = 167.0690454118495, dt = 0.8707827587056189 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99510.0 min = 99510.0 factor = 1
- strategy "round robin" : max = 94534.5 min = 94534.5 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99510
max = 99510
avg = 99510
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (1.9%)
patch tree reduce : 950.00 ns (0.3%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 840.00 ns (0.3%)
LB compute : 298.42 us (94.3%)
LB move op cnt : 0
LB apply : 2.67 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.669678332518529e-10,-5.860164202420051e-10,-5.355849919472384e-10)
sum a = (7.526566588633576e-12,1.103740776095305e-11,-5.484177257686732e-13)
sum e = 1.257352794168244e-10
sum de = 9.94989455046335e-16
Info: cfl dt = 0.864545397972532 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.5987e+05 | 99509 | 1 | 3.829e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8186.803622201211 (tsim/hr) [sph::Model][rank=0]
---------------- t = 167.9398281705551, dt = 0.864545397972532 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99509.0 min = 99509.0 factor = 1
- strategy "round robin" : max = 94533.5 min = 94533.5 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99509
max = 99509
avg = 99509
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.8%)
patch tree reduce : 1.15 us (0.4%)
gen split merge : 816.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 306.28 us (94.1%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.734115877277788e-10,-5.765495133286797e-10,-5.359259075942981e-10)
sum a = (7.388978741871931e-12,1.08590336212105e-11,-2.5452466488076346e-13)
sum e = 1.2573605805346405e-10
sum de = 1.0673100804410282e-15
Info: cfl dt = 0.8600214752824663 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6056e+05 | 99509 | 1 | 3.819e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8149.536057258602 (tsim/hr) [sph::Model][rank=0]
---------------- t = 168.80437356852764, dt = 0.8600214752824663 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99509.0 min = 99509.0 factor = 1
- strategy "round robin" : max = 94533.5 min = 94533.5 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99509
max = 99509
avg = 99509
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.07 us (1.7%)
patch tree reduce : 1.04 us (0.3%)
gen split merge : 1.20 us (0.3%)
split / merge op : 0/0
apply split merge : 925.00 ns (0.3%)
LB compute : 331.89 us (94.8%)
LB move op cnt : 0
LB apply : 3.27 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.920145867779819e-10,-5.605892343933091e-10,-5.492437451455544e-10)
sum a = (7.1709679504418325e-12,1.117884115924909e-11,1.3991117409143512e-13)
sum e = 1.2572689179031786e-10
sum de = 1.105359138199497e-15
Info: cfl dt = 0.8570102786981809 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6013e+05 | 99507 | 1 | 3.825e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8093.825229352793 (tsim/hr) [sph::Model][rank=0]
---------------- t = 169.66439504381012, dt = 0.8570102786981809 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99507.0 min = 99507.0 factor = 1
- strategy "round robin" : max = 94531.6 min = 94531.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99507
max = 99507
avg = 99507
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.7%)
patch tree reduce : 1.02 us (0.3%)
gen split merge : 743.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 808.00 ns (0.2%)
LB compute : 318.39 us (94.9%)
LB move op cnt : 0
LB apply : 2.94 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.027683081654845e-10,-5.555664364284886e-10,-5.567845604575723e-10)
sum a = (7.15689975381145e-12,1.1237117714044325e-11,3.422971190108167e-13)
sum e = 1.2572268067736112e-10
sum de = 1.1727047688929452e-15
Info: cfl dt = 0.9861855369796027 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.5669e+05 | 99506 | 1 | 3.876e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7958.826838194605 (tsim/hr) [sph::Model][rank=0]
---------------- t = 170.5214053225083, dt = 0.9861855369796027 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99506.0 min = 99506.0 factor = 1
- strategy "round robin" : max = 94530.7 min = 94530.7 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99506
max = 99506
avg = 99506
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.6%)
patch tree reduce : 959.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 866.00 ns (0.3%)
LB compute : 321.46 us (94.8%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.097697094490988e-10,-5.445672061948103e-10,-5.56324833056665e-10)
sum a = (7.012542588313747e-12,1.1013991340631006e-11,6.599057544596335e-13)
sum e = 1.2572643131024448e-10
sum de = 1.2529699396908998e-15
Info: cfl dt = 0.9813103758141134 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.5900e+05 | 99506 | 1 | 3.842e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9240.787580952741 (tsim/hr) [sph::Model][rank=0]
---------------- t = 171.5075908594879, dt = 0.9813103758141134 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99506.0 min = 99506.0 factor = 1
- strategy "round robin" : max = 94530.7 min = 94530.7 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99506
max = 99506
avg = 99506
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.6%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 737.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 756.00 ns (0.2%)
LB compute : 300.63 us (94.5%)
LB move op cnt : 0
LB apply : 3.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.070358234217389e-10,-5.439961793547072e-10,-5.466613090911804e-10)
sum a = (7.004466008575002e-12,1.0428098138026729e-11,7.597416863601578e-13)
sum e = 1.257174612191051e-10
sum de = 1.3199743429077814e-15
Info: cfl dt = 0.8558770300386628 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6022e+05 | 99504 | 1 | 3.824e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9238.77584781673 (tsim/hr) [sph::Model][rank=0]
---------------- t = 172.488901235302, dt = 0.8239036925560015 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99504.0 min = 99504.0 factor = 1
- strategy "round robin" : max = 94528.8 min = 94528.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99504
max = 99504
avg = 99504
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (2.1%)
patch tree reduce : 1.29 us (0.4%)
gen split merge : 736.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 878.00 ns (0.3%)
LB compute : 274.91 us (93.8%)
LB move op cnt : 0
LB apply : 2.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010570277371899863 unconverged cnt = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.185954607932032e-10,-5.23450554447431e-10,-5.481946837304772e-10)
sum a = (6.672704423223981e-12,1.0384346469577988e-11,1.193863385282993e-12)
sum e = 1.2570042906506975e-10
sum de = 1.3463729618599515e-15
Info: cfl dt = 0.9761669728516932 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.6422e+05 | 99501 | 1 | 6.059e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4895.283948214493 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 129 [SPH][rank=0]
Info: time since start : 118.927322626 (s) [SPH][rank=0]
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000007.vtk [VTK Dump][rank=0]
- took 5.89 ms, bandwidth = 946.40 MB/s
Info: Dumping state to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000007.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (57.4%)
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000007.sham [Shamrock Dump][rank=0]
- took 5.53 ms, bandwidth = 2.30 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 773.10 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_normal_0000007.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_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 771.85 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_hollywood_0000007.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_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 160.40 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 160.41 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_slice_0000007.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_slice_0000007.json
Info: compute_slice field_name: dt_part, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 286.96 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 287.93 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/dt_part_slice_0000007.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/dt_part_slice_0000007.json
Info: compute_column_integ field_name: custom, rays count: 1048576 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.015513383 s
Info: compute_column_integ took 779.47 ms [sph::CartesianRender][rank=0]
Info: compute_column_integ field_name: unity, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 774.96 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/column_average_vz_0000007.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/column_average_vz_0000007.json
Saving perf history to _to_trash/black_hole_disc_lense_thirring_100000/analysis/perf_history.json
Info: evolve_until (target_time = 198.07s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 173.312804927858, dt = 0.9761669728516932 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99501.0 min = 99501.0 factor = 1
- strategy "round robin" : max = 94525.9 min = 94525.9 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99501
max = 99501
avg = 99501
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.37 us (2.1%)
patch tree reduce : 1.06 us (0.4%)
gen split merge : 904.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 877.00 ns (0.3%)
LB compute : 277.46 us (93.6%)
LB move op cnt : 0
LB apply : 3.14 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.304627219827736e-10,-5.161135347423114e-10,-5.550370180275871e-10)
sum a = (6.6427531568888615e-12,1.0417414061602726e-11,1.422920799063499e-12)
sum e = 1.256995937936286e-10
sum de = 1.4175081579839103e-15
Info: cfl dt = 0.9747531803423243 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6171e+05 | 99500 | 1 | 3.802e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9243.394182922271 (tsim/hr) [sph::Model][rank=0]
---------------- t = 174.2889719007097, dt = 0.9747531803423243 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99500.0 min = 99500.0 factor = 1
- strategy "round robin" : max = 94525.0 min = 94525.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99500
max = 99500
avg = 99500
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.8%)
patch tree reduce : 1.19 us (0.4%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 830.00 ns (0.3%)
LB compute : 296.03 us (94.2%)
LB move op cnt : 0
LB apply : 3.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.368794755202505e-10,-5.06075143352265e-10,-5.535152270130042e-10)
sum a = (6.530787455913932e-12,1.0179143722259257e-11,1.6857894457979125e-12)
sum e = 1.2570098777015752e-10
sum de = 1.4953125068669815e-15
Info: cfl dt = 0.9744602833300336 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.5945e+05 | 99500 | 1 | 3.835e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9149.988905847049 (tsim/hr) [sph::Model][rank=0]
---------------- t = 175.26372508105203, dt = 0.9744602833300336 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99500.0 min = 99500.0 factor = 1
- strategy "round robin" : max = 94525.0 min = 94525.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99500
max = 99500
avg = 99500
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (2.1%)
patch tree reduce : 1.19 us (0.4%)
gen split merge : 773.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 267.08 us (93.4%)
LB move op cnt : 0
LB apply : 2.90 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.374172558219165e-10,-4.988898533490767e-10,-5.440450481463073e-10)
sum a = (6.429568588525148e-12,9.670165162482867e-12,1.8646721389827366e-12)
sum e = 1.2569749474126972e-10
sum de = 1.5579053127733702e-15
Info: cfl dt = 1.1179163268612338 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.6205e+05 | 99499 | 1 | 3.797e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9239.267731846814 (tsim/hr) [sph::Model][rank=0]
---------------- t = 176.23818536438208, dt = 1.1179163268612338 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99499.0 min = 99499.0 factor = 1
- strategy "round robin" : max = 94524.0 min = 94524.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99499
max = 99499
avg = 99499
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.92 us (1.4%)
patch tree reduce : 1.28 us (0.4%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 873.00 ns (0.3%)
LB compute : 326.23 us (94.6%)
LB move op cnt : 0
LB apply : 3.10 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010569045593500272 unconverged cnt = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.499159537990849e-10,-4.806312309128628e-10,-5.457241389720116e-10)
sum a = (6.203653936283862e-12,9.565875261943314e-12,2.259557169239954e-12)
sum e = 1.2569744592312863e-10
sum de = 1.6287764161525659e-15
Info: cfl dt = 1.1030878922344864 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.6570e+05 | 99498 | 1 | 6.005e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6702.352966935863 (tsim/hr) [sph::Model][rank=0]
---------------- t = 177.3561016912433, dt = 1.1030878922344864 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99498.0 min = 99498.0 factor = 1
- strategy "round robin" : max = 94523.1 min = 94523.1 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99498
max = 99498
avg = 99498
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.03 us (1.5%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 827.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 850.00 ns (0.3%)
LB compute : 309.09 us (94.4%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (71.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010568707401893081 unconverged cnt = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.517879201998122e-10,-4.779118094510598e-10,-5.391027363850815e-10)
sum a = (6.2209419180901304e-12,9.117577493855548e-12,2.3609403535990746e-12)
sum e = 1.2569397514369312e-10
sum de = 1.698068886177591e-15
Info: cfl dt = 1.1208962422746667 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.6467e+05 | 99497 | 1 | 6.042e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6572.101535254267 (tsim/hr) [sph::Model][rank=0]
---------------- t = 178.4591895834778, dt = 1.1208962422746667 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99497.0 min = 99497.0 factor = 1
- strategy "round robin" : max = 94522.1 min = 94522.1 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99497
max = 99497
avg = 99497
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.32 us (2.0%)
patch tree reduce : 1.22 us (0.4%)
gen split merge : 817.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 302.16 us (94.3%)
LB move op cnt : 0
LB apply : 2.99 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.640151002238874e-10,-4.703467934853673e-10,-5.445743697640764e-10)
sum a = (6.222783744454933e-12,9.11003825236537e-12,2.5539210164543546e-12)
sum e = 1.2569121742662588e-10
sum de = 1.7768132372106565e-15
Info: cfl dt = 1.2107968286825532 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.5938e+05 | 99496 | 1 | 3.836e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10519.714416103603 (tsim/hr) [sph::Model][rank=0]
---------------- t = 179.58008582575246, dt = 1.2107968286825532 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99496.0 min = 99496.0 factor = 1
- strategy "round robin" : max = 94521.2 min = 94521.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99496
max = 99496
avg = 99496
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.7%)
patch tree reduce : 1.47 us (0.5%)
gen split merge : 846.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 853.00 ns (0.3%)
LB compute : 303.32 us (94.4%)
LB move op cnt : 0
LB apply : 2.87 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.774241991961003e-10,-4.4439614979402634e-10,-5.444967699920636e-10)
sum a = (5.87202978008243e-12,8.96292117223473e-12,3.0766693362652892e-12)
sum e = 1.256805050142405e-10
sum de = 1.8315432665333002e-15
Info: cfl dt = 1.2754218300457947 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6311e+05 | 99493 | 1 | 3.781e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11527.272184376414 (tsim/hr) [sph::Model][rank=0]
---------------- t = 180.79088265443502, dt = 1.2754218300457947 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99493.0 min = 99493.0 factor = 1
- strategy "round robin" : max = 94518.3 min = 94518.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99493
max = 99493
avg = 99493
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.9%)
patch tree reduce : 1.23 us (0.4%)
gen split merge : 812.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 301.20 us (94.0%)
LB move op cnt : 0
LB apply : 4.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010567595067709268 unconverged cnt = 3
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.847478918273541e-10,-4.3570962218752214e-10,-5.409487152426121e-10)
sum a = (5.8370567924817675e-12,8.645522043200319e-12,3.257068700697562e-12)
sum e = 1.2566451896918296e-10
sum de = 1.864895327289307e-15
Info: cfl dt = 1.2779095363214876 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.6376e+05 | 99489 | 1 | 6.075e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7557.806385403304 (tsim/hr) [sph::Model][rank=0]
---------------- t = 182.0663044844808, dt = 1.2779095363214876 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99489.0 min = 99489.0 factor = 1
- strategy "round robin" : max = 94514.5 min = 94514.5 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99489
max = 99489
avg = 99489
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.8%)
patch tree reduce : 1.14 us (0.3%)
gen split merge : 673.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 883.00 ns (0.3%)
LB compute : 309.64 us (94.4%)
LB move op cnt : 0
LB apply : 2.98 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.01056719861862852 unconverged cnt = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.934274617654876e-10,-4.1287707737526596e-10,-5.322852676268188e-10)
sum a = (5.5397908417334815e-12,8.25940715776946e-12,3.663530368760624e-12)
sum e = 1.2565172602361583e-10
sum de = 1.9255299474798812e-15
Info: cfl dt = 1.2832676943341224 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.6522e+05 | 99486 | 1 | 6.021e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7640.1046373799945 (tsim/hr) [sph::Model][rank=0]
---------------- t = 183.3442140208023, dt = 1.2832676943341224 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99486.0 min = 99486.0 factor = 1
- strategy "round robin" : max = 94511.7 min = 94511.7 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99486
max = 99486
avg = 99486
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.8%)
patch tree reduce : 1.18 us (0.4%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 285.10 us (94.1%)
LB move op cnt : 0
LB apply : 2.99 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.844770446903616e-10,-3.9896155578088645e-10,-5.037299875512705e-10)
sum a = (5.252714538101191e-12,7.13964709276613e-12,3.8479497307623565e-12)
sum e = 1.2563925880733845e-10
sum de = 1.983406220194441e-15
Info: cfl dt = 1.2912786515599222 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6085e+05 | 99483 | 1 | 3.814e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12113.441330683443 (tsim/hr) [sph::Model][rank=0]
---------------- t = 184.6274817151364, dt = 1.2912786515599222 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99483.0 min = 99483.0 factor = 1
- strategy "round robin" : max = 94508.8 min = 94508.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99483
max = 99483
avg = 99483
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.9%)
patch tree reduce : 1.46 us (0.5%)
gen split merge : 838.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 897.00 ns (0.3%)
LB compute : 270.70 us (93.6%)
LB move op cnt : 0
LB apply : 3.04 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010566396113942304 unconverged cnt = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.873597654098775e-10,-3.988345202406531e-10,-4.961084164305555e-10)
sum a = (5.337236411774174e-12,6.697119248436821e-12,3.804787255069834e-12)
sum e = 1.2563706092265072e-10
sum de = 2.0621276633802306e-15
Info: cfl dt = 1.3335658800441441 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.6626e+05 | 99482 | 1 | 5.983e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7769.169187552876 (tsim/hr) [sph::Model][rank=0]
---------------- t = 185.91876036669635, dt = 1.3335658800441441 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99482.0 min = 99482.0 factor = 1
- strategy "round robin" : max = 94507.9 min = 94507.9 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99482
max = 99482
avg = 99482
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.6%)
patch tree reduce : 966.00 ns (0.3%)
gen split merge : 798.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 828.00 ns (0.2%)
LB compute : 321.70 us (94.8%)
LB move op cnt : 0
LB apply : 3.30 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010565978429713388 unconverged cnt = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.136693324017189e-10,-3.599198134135197e-10,-5.06607709575845e-10)
sum a = (4.892861892560498e-12,7.026508164990595e-12,4.50516168263167e-12)
sum e = 1.2562059746723093e-10
sum de = 2.09827336617116e-15
Info: cfl dt = 1.378552747138529 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5701e+05 | 99478 | 1 | 6.336e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7577.486189648124 (tsim/hr) [sph::Model][rank=0]
---------------- t = 187.2523262467405, dt = 1.378552747138529 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99478.0 min = 99478.0 factor = 1
- strategy "round robin" : max = 94504.1 min = 94504.1 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99478
max = 99478
avg = 99478
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (1.9%)
patch tree reduce : 1.25 us (0.4%)
gen split merge : 866.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 900.00 ns (0.3%)
LB compute : 298.38 us (94.3%)
LB move op cnt : 0
LB apply : 2.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010565545213847172 unconverged cnt = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.204309718192635e-10,-3.3289007109109355e-10,-4.944495291254148e-10)
sum a = (4.539666663652401e-12,6.5587421687985555e-12,4.987158194569293e-12)
sum e = 1.2560950696647305e-10
sum de = 2.169338435606434e-15
Info: cfl dt = 1.5366595708907131 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.6447e+05 | 99475 | 1 | 6.048e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8205.319023246384 (tsim/hr) [sph::Model][rank=0]
---------------- t = 188.63087899387904, dt = 1.5366595708907131 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99475.0 min = 99475.0 factor = 1
- strategy "round robin" : max = 94501.2 min = 94501.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99475
max = 99475
avg = 99475
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (2.1%)
patch tree reduce : 2.13 us (0.7%)
gen split merge : 958.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 874.00 ns (0.3%)
LB compute : 270.50 us (93.5%)
LB move op cnt : 0
LB apply : 2.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010565060580432144 unconverged cnt = 3
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.370997298007297e-10,-3.0748519453804867e-10,-4.951738165943773e-10)
sum a = (4.339239596946978e-12,6.4780303876117104e-12,5.416987069164855e-12)
sum e = 1.2560758237151298e-10
sum de = 2.2482487412502578e-15
Info: cfl dt = 1.526437153236616 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.6590e+05 | 99473 | 1 | 5.996e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9226.165943061513 (tsim/hr) [sph::Model][rank=0]
---------------- t = 190.16753856476976, dt = 1.526437153236616 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99473.0 min = 99473.0 factor = 1
- strategy "round robin" : max = 94499.3 min = 94499.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99473
max = 99473
avg = 99473
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (2.0%)
patch tree reduce : 1.30 us (0.5%)
gen split merge : 767.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 267.20 us (93.7%)
LB move op cnt : 0
LB apply : 2.84 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.01056457735829299 unconverged cnt = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.46799654109853e-10,-3.032752238836651e-10,-4.934024593948228e-10)
sum a = (4.441890576625747e-12,6.274138935872302e-12,5.412048101286639e-12)
sum e = 1.256005761583135e-10
sum de = 2.32619126009004e-15
Info: cfl dt = 1.4355829044210529 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.6634e+05 | 99471 | 1 | 5.980e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9189.119923774719 (tsim/hr) [sph::Model][rank=0]
---------------- t = 191.69397571800639, dt = 1.4355829044210529 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99471.0 min = 99471.0 factor = 1
- strategy "round robin" : max = 94497.4 min = 94497.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99471
max = 99471
avg = 99471
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.8%)
patch tree reduce : 991.00 ns (0.3%)
gen split merge : 796.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 316.01 us (94.5%)
LB move op cnt : 0
LB apply : 3.01 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010564121244577304 unconverged cnt = 3
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.362016545352084e-10,-3.2703326034489797e-10,-4.713339109960736e-10)
sum a = (4.807935040538517e-12,5.35495650499821e-12,4.752267065468651e-12)
sum e = 1.2558105978562124e-10
sum de = 2.3558816370888946e-15
Info: cfl dt = 1.363539317610988 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.6563e+05 | 99467 | 1 | 6.005e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8606.014597237523 (tsim/hr) [sph::Model][rank=0]
---------------- t = 193.12955862242742, dt = 1.363539317610988 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99467.0 min = 99467.0 factor = 1
- strategy "round robin" : max = 94493.6 min = 94493.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99467
max = 99467
avg = 99467
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.9%)
patch tree reduce : 1.14 us (0.4%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 936.00 ns (0.3%)
LB compute : 292.40 us (94.0%)
LB move op cnt : 0
LB apply : 3.53 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.372277628558102e-10,-3.2591865812902196e-10,-4.589769563668481e-10)
sum a = (4.855753193563378e-12,4.860713497134923e-12,4.592869512687137e-12)
sum e = 1.255771468694933e-10
sum de = 2.4200702956116057e-15
Info: cfl dt = 1.3047548278529537 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.6314e+05 | 99466 | 1 | 3.780e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12986.196854394331 (tsim/hr) [sph::Model][rank=0]
---------------- t = 194.4930979400384, dt = 1.3047548278529537 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99466.0 min = 99466.0 factor = 1
- strategy "round robin" : max = 94492.7 min = 94492.7 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99466
max = 99466
avg = 99466
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 18.75 us (5.2%)
patch tree reduce : 1.06 us (0.3%)
gen split merge : 825.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 993.00 ns (0.3%)
LB compute : 332.01 us (91.4%)
LB move op cnt : 0
LB apply : 3.28 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (70.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010563269201533044 unconverged cnt = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.424252460694212e-10,-3.113091941048949e-10,-4.489326411206097e-10)
sum a = (4.712963814089449e-12,4.4960914587777794e-12,4.7184380697106064e-12)
sum e = 1.2556851092336811e-10
sum de = 2.4645217981613677e-15
Info: cfl dt = 1.511856685636964 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.6823e+05 | 99464 | 1 | 5.912e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7944.411704080952 (tsim/hr) [sph::Model][rank=0]
---------------- t = 195.79785276789136, dt = 1.511856685636964 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99464.0 min = 99464.0 factor = 1
- strategy "round robin" : max = 94490.8 min = 94490.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99464
max = 99464
avg = 99464
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (1.9%)
patch tree reduce : 1.24 us (0.4%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 850.00 ns (0.3%)
LB compute : 298.39 us (94.2%)
LB move op cnt : 0
LB apply : 2.86 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010562783959638156 unconverged cnt = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.274479505565216e-10,-3.2855654806332936e-10,-4.174912695066314e-10)
sum a = (4.890733930429136e-12,3.355571920141552e-12,4.065243842299329e-12)
sum e = 1.2554804778879332e-10
sum de = 2.4800356295727296e-15
Info: cfl dt = 1.5923636371463237 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.6651e+05 | 99458 | 1 | 5.973e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9112.044079695535 (tsim/hr) [sph::Model][rank=0]
---------------- t = 197.3097094535283, dt = 0.7620676068808336 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99458.0 min = 99458.0 factor = 1
- strategy "round robin" : max = 94485.1 min = 94485.1 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99458
max = 99458
avg = 99458
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.8%)
patch tree reduce : 1.20 us (0.4%)
gen split merge : 878.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 853.00 ns (0.3%)
LB compute : 273.45 us (93.9%)
LB move op cnt : 0
LB apply : 2.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.347752646470841e-10,-3.2332001912286803e-10,-4.185645623228048e-10)
sum a = (4.881865327340075e-12,3.391769504993397e-12,4.05110951234901e-12)
sum e = 1.2551655137342562e-10
sum de = 2.500856052833934e-15
Info: cfl dt = 1.5624239830039897 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6543e+05 | 99455 | 1 | 3.747e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7321.743420002087 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 149 [SPH][rank=0]
Info: time since start : 133.42308891000002 (s) [SPH][rank=0]
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000008.vtk [VTK Dump][rank=0]
- took 5.73 ms, bandwidth = 971.53 MB/s
Info: Dumping state to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000008.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (54.7%)
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000008.sham [Shamrock Dump][rank=0]
- took 5.56 ms, bandwidth = 2.29 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 747.89 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_normal_0000008.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_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 747.58 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_hollywood_0000008.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_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 154.97 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 155.43 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_slice_0000008.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_slice_0000008.json
Info: compute_slice field_name: dt_part, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 284.60 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 285.17 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/dt_part_slice_0000008.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/dt_part_slice_0000008.json
Info: compute_column_integ field_name: custom, rays count: 1048576 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.015613479000000001 s
Info: compute_column_integ took 754.32 ms [sph::CartesianRender][rank=0]
Info: compute_column_integ field_name: unity, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 747.06 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/column_average_vz_0000008.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/column_average_vz_0000008.json
Saving perf history to _to_trash/black_hole_disc_lense_thirring_100000/analysis/perf_history.json
Info: evolve_until (target_time = 222.83s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 198.07177706040915, dt = 1.5624239830039897 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99455.0 min = 99455.0 factor = 1
- strategy "round robin" : max = 94482.2 min = 94482.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99455
max = 99455
avg = 99455
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.24 us (1.9%)
patch tree reduce : 1.05 us (0.3%)
gen split merge : 885.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 799.00 ns (0.2%)
LB compute : 310.91 us (94.5%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.387749813667704e-10,-3.1206192980727356e-10,-4.0493353786962965e-10)
sum a = (4.796155002182369e-12,2.9555006195357475e-12,4.042926223112384e-12)
sum e = 1.2553509960612193e-10
sum de = 2.564720986211911e-15
Info: cfl dt = 1.6230226666488594 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.5067e+05 | 99454 | 1 | 3.968e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14176.640110677949 (tsim/hr) [sph::Model][rank=0]
---------------- t = 199.63420104341313, dt = 1.6230226666488594 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99454.0 min = 99454.0 factor = 1
- strategy "round robin" : max = 94481.3 min = 94481.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99454
max = 99454
avg = 99454
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.8%)
patch tree reduce : 950.00 ns (0.3%)
gen split merge : 789.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 868.00 ns (0.3%)
LB compute : 289.39 us (93.8%)
LB move op cnt : 0
LB apply : 4.12 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010561508499166775 unconverged cnt = 4
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.559389719707996e-10,-2.8663488648537476e-10,-4.049318029918969e-10)
sum a = (4.5599153711697616e-12,3.0293590476251893e-12,4.312331811430741e-12)
sum e = 1.2551057227389019e-10
sum de = 2.5643308700242964e-15
Info: cfl dt = 1.6545996968199295 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.6768e+05 | 99448 | 1 | 5.931e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9851.674878078276 (tsim/hr) [sph::Model][rank=0]
---------------- t = 201.257223710062, dt = 1.6545996968199295 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99448.0 min = 99448.0 factor = 1
- strategy "round robin" : max = 94475.6 min = 94475.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99448
max = 99448
avg = 99448
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (2.1%)
patch tree reduce : 987.00 ns (0.3%)
gen split merge : 855.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.3%)
LB compute : 289.73 us (93.9%)
LB move op cnt : 0
LB apply : 3.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.676409315643125e-10,-2.731246634491745e-10,-4.0094529629520196e-10)
sum a = (4.515425388322233e-12,2.962536862526224e-12,4.328062204057999e-12)
sum e = 1.2551088979468475e-10
sum de = 2.616365008884952e-15
Info: cfl dt = 1.5662604716986361 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6452e+05 | 99447 | 1 | 3.760e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15843.974530779531 (tsim/hr) [sph::Model][rank=0]
---------------- t = 202.91182340688192, dt = 1.5662604716986361 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99447.0 min = 99447.0 factor = 1
- strategy "round robin" : max = 94474.6 min = 94474.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99447
max = 99447
avg = 99447
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (2.1%)
patch tree reduce : 979.00 ns (0.3%)
gen split merge : 841.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 269.51 us (93.8%)
LB move op cnt : 0
LB apply : 2.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.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.010560458699629951 unconverged cnt = 3
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.756036583458063e-10,-2.6930464887541655e-10,-3.956530957419904e-10)
sum a = (4.564160563348341e-12,2.844115141494564e-12,4.135494818318266e-12)
sum e = 1.2550184347285386e-10
sum de = 2.6539135846570994e-15
Info: cfl dt = 1.4969261862611525 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.5836e+05 | 99445 | 1 | 6.280e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8978.823027527304 (tsim/hr) [sph::Model][rank=0]
---------------- t = 204.47808387858055, dt = 1.4969261862611525 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99445.0 min = 99445.0 factor = 1
- strategy "round robin" : max = 94472.8 min = 94472.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99445
max = 99445
avg = 99445
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.28 us (2.1%)
patch tree reduce : 979.00 ns (0.3%)
gen split merge : 819.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 887.00 ns (0.3%)
LB compute : 276.09 us (93.9%)
LB move op cnt : 0
LB apply : 2.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.853008274410828e-10,-2.688305115602193e-10,-3.942210373595946e-10)
sum a = (4.66266107262349e-12,2.8658667338985052e-12,3.89862274872023e-12)
sum e = 1.2549343925489938e-10
sum de = 2.684356768350422e-15
Info: cfl dt = 1.4680659794356563 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.5142e+05 | 99443 | 1 | 3.955e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13624.480453946802 (tsim/hr) [sph::Model][rank=0]
---------------- t = 205.9750100648417, dt = 1.4680659794356563 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99443.0 min = 99443.0 factor = 1
- strategy "round robin" : max = 94470.8 min = 94470.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99443
max = 99443
avg = 99443
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.15 us (1.6%)
patch tree reduce : 949.00 ns (0.3%)
gen split merge : 796.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 863.00 ns (0.3%)
LB compute : 304.39 us (94.8%)
LB move op cnt : 0
LB apply : 2.85 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.954892776499964e-10,-2.708518006874228e-10,-3.945370655550767e-10)
sum a = (4.786702605861389e-12,2.9659951568950437e-12,3.604557796237472e-12)
sum e = 1.2548632004180477e-10
sum de = 2.711430590865229e-15
Info: cfl dt = 1.5997969494105972 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6392e+05 | 99441 | 1 | 3.768e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14026.427661491072 (tsim/hr) [sph::Model][rank=0]
---------------- t = 207.44307604427738, dt = 1.5997969494105972 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99441.0 min = 99441.0 factor = 1
- strategy "round robin" : max = 94468.9 min = 94468.9 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99441
max = 99441
avg = 99441
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.94 us (1.5%)
patch tree reduce : 1.14 us (0.3%)
gen split merge : 814.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 885.00 ns (0.3%)
LB compute : 309.53 us (94.8%)
LB move op cnt : 0
LB apply : 2.90 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.075096637320341e-10,-2.576651957510222e-10,-3.922605776774002e-10)
sum a = (4.710909185707702e-12,3.04675712208773e-12,3.5734314764716933e-12)
sum e = 1.2548983456518968e-10
sum de = 2.73968890675954e-15
Info: cfl dt = 1.5308820164851735 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6442e+05 | 99440 | 1 | 3.761e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15314.633605552921 (tsim/hr) [sph::Model][rank=0]
---------------- t = 209.04287299368798, dt = 1.5308820164851735 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99440.0 min = 99440.0 factor = 1
- strategy "round robin" : max = 94468.0 min = 94468.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99440
max = 99440
avg = 99440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.95 us (1.6%)
patch tree reduce : 1.35 us (0.4%)
gen split merge : 763.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 849.00 ns (0.3%)
LB compute : 299.93 us (94.4%)
LB move op cnt : 0
LB apply : 3.68 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.147326936241671e-10,-2.530513289290979e-10,-3.8695998902293817e-10)
sum a = (4.718001305273625e-12,3.016243949081421e-12,3.362675804370337e-12)
sum e = 1.2549179199540816e-10
sum de = 2.7779251859514702e-15
Info: cfl dt = 1.6004970806778558 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6679e+05 | 99440 | 1 | 3.727e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14785.94412455013 (tsim/hr) [sph::Model][rank=0]
---------------- t = 210.57375501017316, dt = 1.6004970806778558 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99440.0 min = 99440.0 factor = 1
- strategy "round robin" : max = 94468.0 min = 94468.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99440
max = 99440
avg = 99440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.9%)
patch tree reduce : 1.00 us (0.3%)
gen split merge : 818.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 274.29 us (94.0%)
LB move op cnt : 0
LB apply : 2.90 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010557916700787904 unconverged cnt = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.347430418861176e-10,-2.404139784647367e-10,-3.9568856151648273e-10)
sum a = (4.681078961702949e-12,3.5204774293275485e-12,3.3652259995350747e-12)
sum e = 1.2547806265539952e-10
sum de = 2.7799480473845866e-15
Info: cfl dt = 1.5732117698225976 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.6928e+05 | 99436 | 1 | 5.874e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9809.01813068027 (tsim/hr) [sph::Model][rank=0]
---------------- t = 212.174252090851, dt = 1.5732117698225976 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99436.0 min = 99436.0 factor = 1
- strategy "round robin" : max = 94464.2 min = 94464.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99436
max = 99436
avg = 99436
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.7%)
patch tree reduce : 958.00 ns (0.3%)
gen split merge : 712.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.3%)
LB compute : 290.35 us (94.5%)
LB move op cnt : 0
LB apply : 3.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.366146567871422e-10,-2.3600456652391513e-10,-3.840867010211593e-10)
sum a = (4.6167361455484045e-12,3.3040130425964313e-12,3.107305856729491e-12)
sum e = 1.2546615585254527e-10
sum de = 2.783292403161428e-15
Info: cfl dt = 1.806590873271556 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.5665e+05 | 99433 | 1 | 3.874e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14618.601861241395 (tsim/hr) [sph::Model][rank=0]
---------------- t = 213.7474638606736, dt = 1.806590873271556 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99433.0 min = 99433.0 factor = 1
- strategy "round robin" : max = 94461.3 min = 94461.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99433
max = 99433
avg = 99433
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.99 us (1.5%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 1.36 us (0.4%)
split / merge op : 0/0
apply split merge : 813.00 ns (0.3%)
LB compute : 305.15 us (94.3%)
LB move op cnt : 0
LB apply : 2.99 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.437434916122216e-10,-2.397544112012996e-10,-3.807083430951523e-10)
sum a = (4.699378290116143e-12,3.3905783325144053e-12,2.6338315664899117e-12)
sum e = 1.2547450646833644e-10
sum de = 2.798177428526415e-15
Info: cfl dt = 1.748847876947102 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6536e+05 | 99432 | 1 | 3.747e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17357.193222658298 (tsim/hr) [sph::Model][rank=0]
---------------- t = 215.55405473394515, dt = 1.748847876947102 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99432.0 min = 99432.0 factor = 1
- strategy "round robin" : max = 94460.4 min = 94460.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99432
max = 99432
avg = 99432
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.8%)
patch tree reduce : 1.30 us (0.4%)
gen split merge : 821.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 307.84 us (94.3%)
LB move op cnt : 0
LB apply : 3.05 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.503950942089599e-10,-2.436611445384156e-10,-3.7767061436946803e-10)
sum a = (4.767383980172794e-12,3.49896187561857e-12,2.167345594165466e-12)
sum e = 1.2547213359114464e-10
sum de = 2.8072031177266237e-15
Info: cfl dt = 1.7174867715788298 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6623e+05 | 99431 | 1 | 3.735e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16857.594577626387 (tsim/hr) [sph::Model][rank=0]
---------------- t = 217.30290261089226, dt = 1.7174867715788298 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99431.0 min = 99431.0 factor = 1
- strategy "round robin" : max = 94459.4 min = 94459.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99431
max = 99431
avg = 99431
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.5%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 876.00 ns (0.3%)
LB compute : 331.39 us (94.6%)
LB move op cnt : 0
LB apply : 3.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010555615186448711 unconverged cnt = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.501339570095452e-10,-2.3183739386551977e-10,-3.611268368711994e-10)
sum a = (4.5632123314410725e-12,3.2067028007540297e-12,1.9985308861994823e-12)
sum e = 1.2545016929825068e-10
sum de = 2.774045177763686e-15
Info: cfl dt = 1.6857559396861037 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.6897e+05 | 99426 | 1 | 5.884e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10507.476011515648 (tsim/hr) [sph::Model][rank=0]
---------------- t = 219.02038938247108, dt = 1.6857559396861037 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99426.0 min = 99426.0 factor = 1
- strategy "round robin" : max = 94454.7 min = 94454.7 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99426
max = 99426
avg = 99426
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.7%)
patch tree reduce : 1.12 us (0.4%)
gen split merge : 716.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 903.00 ns (0.3%)
LB compute : 295.32 us (94.4%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.551400962186995e-10,-2.338445160645106e-10,-3.5740387303824504e-10)
sum a = (4.566548079173212e-12,3.309541781342125e-12,1.570174158500324e-12)
sum e = 1.2543834255753687e-10
sum de = 2.7585241823271844e-15
Info: cfl dt = 1.7257705703760287 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6009e+05 | 99423 | 1 | 3.823e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15875.490901909714 (tsim/hr) [sph::Model][rank=0]
---------------- t = 220.7061453221572, dt = 1.7257705703760287 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99423.0 min = 99423.0 factor = 1
- strategy "round robin" : max = 94451.8 min = 94451.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99423
max = 99423
avg = 99423
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (2.0%)
patch tree reduce : 1.07 us (0.4%)
gen split merge : 1.33 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 272.08 us (93.3%)
LB move op cnt : 0
LB apply : 3.17 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.677591821492717e-10,-2.1933797099044303e-10,-3.571707143766374e-10)
sum a = (4.432598581362352e-12,3.614590244263935e-12,1.539816037310665e-12)
sum e = 1.2543940520950786e-10
sum de = 2.7557832210182804e-15
Info: cfl dt = 1.7180437567549278 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6666e+05 | 99422 | 1 | 3.728e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16663.010898578617 (tsim/hr) [sph::Model][rank=0]
---------------- t = 222.43191589253323, dt = 0.39883330042707144 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99422.0 min = 99422.0 factor = 1
- strategy "round robin" : max = 94450.9 min = 94450.9 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99422
max = 99422
avg = 99422
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.8%)
patch tree reduce : 1.14 us (0.4%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 855.00 ns (0.3%)
LB compute : 296.44 us (94.3%)
LB move op cnt : 0
LB apply : 3.07 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.63739683472984e-10,-2.2490845481333744e-10,-3.5266947817420026e-10)
sum a = (4.453190395208003e-12,3.501956027309974e-12,1.2827440994761327e-12)
sum e = 1.2540569482653734e-10
sum de = 2.755668537526624e-15
Info: cfl dt = 1.6637301603119787 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7027e+05 | 99421 | 1 | 3.679e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3903.1086804430824 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 165 [SPH][rank=0]
Info: time since start : 144.47235328800002 (s) [SPH][rank=0]
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000009.vtk [VTK Dump][rank=0]
- took 6.02 ms, bandwidth = 924.81 MB/s
Info: Dumping state to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000009.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.90 us (56.7%)
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000009.sham [Shamrock Dump][rank=0]
- took 5.67 ms, bandwidth = 2.25 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 733.61 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_normal_0000009.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_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 734.67 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_hollywood_0000009.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_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 160.88 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 157.53 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_slice_0000009.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_slice_0000009.json
Info: compute_slice field_name: dt_part, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 292.54 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 289.77 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/dt_part_slice_0000009.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/dt_part_slice_0000009.json
Info: compute_column_integ field_name: custom, rays count: 1048576 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.016611897 s
Info: compute_column_integ took 744.37 ms [sph::CartesianRender][rank=0]
Info: compute_column_integ field_name: unity, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 735.14 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/column_average_vz_0000009.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/column_average_vz_0000009.json
Saving perf history to _to_trash/black_hole_disc_lense_thirring_100000/analysis/perf_history.json
Info: evolve_until (target_time = 247.59s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 222.8307491929603, dt = 1.6637301603119787 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99421.0 min = 99421.0 factor = 1
- strategy "round robin" : max = 94449.9 min = 94449.9 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99421
max = 99421
avg = 99421
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.78 us (2.1%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 844.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.2%)
LB compute : 308.56 us (94.1%)
LB move op cnt : 0
LB apply : 3.13 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (72.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.711433592643422e-10,-2.1907144077815838e-10,-3.50546462725813e-10)
sum a = (4.36714014152021e-12,3.737199553251223e-12,1.0474418893863189e-12)
sum e = 1.2543778552926078e-10
sum de = 2.740298374711781e-15
Info: cfl dt = 1.6866132268391427 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6763e+05 | 99421 | 1 | 3.715e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16122.945470910536 (tsim/hr) [sph::Model][rank=0]
---------------- t = 224.49447935327228, dt = 1.6866132268391427 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99421.0 min = 99421.0 factor = 1
- strategy "round robin" : max = 94449.9 min = 94449.9 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99421
max = 99421
avg = 99421
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.7%)
patch tree reduce : 1.39 us (0.4%)
gen split merge : 848.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 776.00 ns (0.2%)
LB compute : 322.43 us (94.4%)
LB move op cnt : 0
LB apply : 3.80 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (74.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.845328098474812e-10,-2.072376326878354e-10,-3.549902418749339e-10)
sum a = (4.238490248361764e-12,4.2184400538917074e-12,9.79516213234172e-13)
sum e = 1.2543812354765903e-10
sum de = 2.721242284402208e-15
Info: cfl dt = 1.6668527585305342 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6801e+05 | 99420 | 1 | 3.710e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16368.01951633556 (tsim/hr) [sph::Model][rank=0]
---------------- t = 226.18109258011143, dt = 1.6668527585305342 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99420.0 min = 99420.0 factor = 1
- strategy "round robin" : max = 94449.0 min = 94449.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99420
max = 99420
avg = 99420
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (2.0%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 894.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 848.00 ns (0.3%)
LB compute : 273.82 us (93.6%)
LB move op cnt : 0
LB apply : 3.38 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.956710951504989e-10,-1.9077661408016635e-10,-3.5461401801216784e-10)
sum a = (4.042968180732172e-12,4.5564955947085916e-12,1.0078159638245712e-12)
sum e = 1.254367876049841e-10
sum de = 2.7009496637915498e-15
Info: cfl dt = 1.6552148159756934 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6625e+05 | 99419 | 1 | 3.734e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16070.129959120073 (tsim/hr) [sph::Model][rank=0]
---------------- t = 227.84794533864195, dt = 1.6552148159756934 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99419.0 min = 99419.0 factor = 1
- strategy "round robin" : max = 94448.0 min = 94448.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99419
max = 99419
avg = 99419
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.8%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 864.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.2%)
LB compute : 294.02 us (93.6%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.61 us (70.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.920732207479294e-10,-1.897187910678449e-10,-3.4262319458544294e-10)
sum a = (3.901515461893162e-12,4.460600254862986e-12,6.317766784523693e-13)
sum e = 1.2543067615615674e-10
sum de = 2.6635122130030974e-15
Info: cfl dt = 1.615706378254936 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6824e+05 | 99417 | 1 | 3.706e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16077.584403830708 (tsim/hr) [sph::Model][rank=0]
---------------- t = 229.50316015461763, dt = 1.615706378254936 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99417.0 min = 99417.0 factor = 1
- strategy "round robin" : max = 94446.1 min = 94446.1 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99417
max = 99417
avg = 99417
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.7%)
patch tree reduce : 1.39 us (0.4%)
gen split merge : 910.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 321.17 us (94.4%)
LB move op cnt : 0
LB apply : 3.01 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.022333553473129e-10,-1.869342730038143e-10,-3.497568563135892e-10)
sum a = (3.8340354994141165e-12,4.993349741453073e-12,3.80699596353524e-13)
sum e = 1.2542347517104703e-10
sum de = 2.6199199468986724e-15
Info: cfl dt = 1.4056560399259905 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.5903e+05 | 99415 | 1 | 3.838e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15155.101545915424 (tsim/hr) [sph::Model][rank=0]
---------------- t = 231.11886653287257, dt = 1.4056560399259905 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99415.0 min = 99415.0 factor = 1
- strategy "round robin" : max = 94444.2 min = 94444.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99415
max = 99415
avg = 99415
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.7%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 1.19 us (0.3%)
split / merge op : 0/0
apply split merge : 812.00 ns (0.2%)
LB compute : 323.08 us (94.4%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (60.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.012265260752833e-10,-1.856965828952172e-10,-3.4417671549699575e-10)
sum a = (3.726588048153173e-12,5.0630014084766785e-12,8.037529147401509e-14)
sum e = 1.2541532249174426e-10
sum de = 2.5852301825666157e-15
Info: cfl dt = 1.4198094116249527 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6571e+05 | 99414 | 1 | 3.741e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13525.237920816857 (tsim/hr) [sph::Model][rank=0]
---------------- t = 232.52452257279856, dt = 1.4198094116249527 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99414.0 min = 99414.0 factor = 1
- strategy "round robin" : max = 94443.3 min = 94443.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99414
max = 99414
avg = 99414
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (1.8%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 800.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 886.00 ns (0.3%)
LB compute : 302.87 us (93.9%)
LB move op cnt : 0
LB apply : 4.39 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.018625382588778e-10,-1.753239005547973e-10,-3.356888115882941e-10)
sum a = (3.5086614707256118e-12,5.090022801691463e-12,2.065093200953025e-14)
sum e = 1.2541430544854753e-10
sum de = 2.554535141377313e-15
Info: cfl dt = 1.443177664818964 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6733e+05 | 99413 | 1 | 3.719e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13744.508979240578 (tsim/hr) [sph::Model][rank=0]
---------------- t = 233.9443319844235, dt = 1.443177664818964 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99413.0 min = 99413.0 factor = 1
- strategy "round robin" : max = 94442.3 min = 94442.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99413
max = 99413
avg = 99413
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.15 us (1.5%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 817.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 315.76 us (94.6%)
LB move op cnt : 0
LB apply : 3.49 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010549955941555583 unconverged cnt = 3
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.098199126670503e-10,-1.5822751150458718e-10,-3.342233408862698e-10)
sum a = (3.2813113933214236e-12,5.3791099764733614e-12,1.4032173301595149e-13)
sum e = 1.2541356565405222e-10
sum de = 2.5236773562188924e-15
Info: cfl dt = 1.3967181903213972 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.7071e+05 | 99412 | 1 | 5.823e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8921.757349887323 (tsim/hr) [sph::Model][rank=0]
---------------- t = 235.38750964924247, dt = 1.3967181903213972 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99412.0 min = 99412.0 factor = 1
- strategy "round robin" : max = 94441.4 min = 94441.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99412
max = 99412
avg = 99412
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.8%)
patch tree reduce : 1.33 us (0.4%)
gen split merge : 728.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 759.00 ns (0.2%)
LB compute : 290.92 us (94.0%)
LB move op cnt : 0
LB apply : 3.89 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.14292055492042e-10,-1.5050219166874135e-10,-3.3411115119617275e-10)
sum a = (3.1194589945558615e-12,5.669870269986519e-12,4.4814208342188474e-14)
sum e = 1.2541569340926173e-10
sum de = 2.493740827032141e-15
Info: cfl dt = 1.4333309950644495 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6808e+05 | 99412 | 1 | 3.708e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13559.40044893775 (tsim/hr) [sph::Model][rank=0]
---------------- t = 236.78422783956387, dt = 1.4333309950644495 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99412.0 min = 99412.0 factor = 1
- strategy "round robin" : max = 94441.4 min = 94441.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99412
max = 99412
avg = 99412
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.7%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 858.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 731.00 ns (0.2%)
LB compute : 316.59 us (94.5%)
LB move op cnt : 0
LB apply : 2.87 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.297182164526459e-10,-1.277827136686431e-10,-3.4158151225037363e-10)
sum a = (2.8410421792312165e-12,6.274818887089138e-12,3.559797734983402e-13)
sum e = 1.254101281947332e-10
sum de = 2.4469538526573826e-15
Info: cfl dt = 1.3674802874223644 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6557e+05 | 99410 | 1 | 3.743e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13784.6992528139 (tsim/hr) [sph::Model][rank=0]
---------------- t = 238.2175588346283, dt = 1.3674802874223644 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99410.0 min = 99410.0 factor = 1
- strategy "round robin" : max = 94439.5 min = 94439.5 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99410
max = 99410
avg = 99410
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.7%)
patch tree reduce : 2.25 us (0.7%)
gen split merge : 778.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 860.00 ns (0.3%)
LB compute : 315.71 us (94.2%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.334770008190207e-10,-1.189962832659729e-10,-3.411482932376769e-10)
sum a = (2.658603227050504e-12,6.551353526897016e-12,3.0628211069983723e-13)
sum e = 1.2541151968931105e-10
sum de = 2.4141930941151774e-15
Info: cfl dt = 1.3345096425115344 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6721e+05 | 99410 | 1 | 3.720e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13232.485897866909 (tsim/hr) [sph::Model][rank=0]
---------------- t = 239.58503912205066, dt = 1.3345096425115344 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99410.0 min = 99410.0 factor = 1
- strategy "round robin" : max = 94439.5 min = 94439.5 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99410
max = 99410
avg = 99410
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.6%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 843.00 ns (0.3%)
LB compute : 318.46 us (94.5%)
LB move op cnt : 0
LB apply : 3.00 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (69.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.369001916257614e-10,-1.1006436097836977e-10,-3.407735370947268e-10)
sum a = (2.4721980333312997e-12,6.822306958996729e-12,2.7402736116456773e-13)
sum e = 1.2541379301657292e-10
sum de = 2.3803733694801464e-15
Info: cfl dt = 1.332902720305459 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6663e+05 | 99410 | 1 | 3.728e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12885.31772195881 (tsim/hr) [sph::Model][rank=0]
---------------- t = 240.9195487645622, dt = 1.332902720305459 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99410.0 min = 99410.0 factor = 1
- strategy "round robin" : max = 94439.5 min = 94439.5 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99410
max = 99410
avg = 99410
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (1.9%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 797.00 ns (0.2%)
LB compute : 300.26 us (94.0%)
LB move op cnt : 0
LB apply : 3.08 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.400710113452066e-10,-1.0079009449011928e-10,-3.4042980741672484e-10)
sum a = (2.2780645941049818e-12,7.092593797524601e-12,2.5815223665868067e-13)
sum e = 1.2541691038643519e-10
sum de = 2.344873939690999e-15
Info: cfl dt = 1.339111745379622 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6865e+05 | 99410 | 1 | 3.700e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12967.38379855291 (tsim/hr) [sph::Model][rank=0]
---------------- t = 242.25245148486766, dt = 1.339111745379622 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99410.0 min = 99410.0 factor = 1
- strategy "round robin" : max = 94439.5 min = 94439.5 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99410
max = 99410
avg = 99410
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.8%)
patch tree reduce : 1.35 us (0.5%)
gen split merge : 876.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 272.95 us (93.9%)
LB move op cnt : 0
LB apply : 2.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.281574669449602e-10,-1.1176411741708453e-10,-3.32816927930705e-10)
sum a = (2.213171186843491e-12,7.003734547023822e-12,-2.9571767547133795e-13)
sum e = 1.2540478677948637e-10
sum de = 2.2745666813022697e-15
Info: cfl dt = 1.324710932109679 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6471e+05 | 99407 | 1 | 3.755e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12837.309263883315 (tsim/hr) [sph::Model][rank=0]
---------------- t = 243.5915632302473, dt = 1.324710932109679 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99407.0 min = 99407.0 factor = 1
- strategy "round robin" : max = 94436.6 min = 94436.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99407
max = 99407
avg = 99407
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.8%)
patch tree reduce : 1.43 us (0.5%)
gen split merge : 774.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 764.00 ns (0.3%)
LB compute : 280.09 us (94.2%)
LB move op cnt : 0
LB apply : 2.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.318371055768232e-10,-9.338043910848547e-11,-3.286364416154438e-10)
sum a = (1.926037418533293e-12,7.189604684878103e-12,-7.234138214755752e-14)
sum e = 1.254023033500738e-10
sum de = 2.234209205429669e-15
Info: cfl dt = 1.2587908452696879 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6732e+05 | 99406 | 1 | 3.719e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12824.693485720472 (tsim/hr) [sph::Model][rank=0]
---------------- t = 244.91627416235696, dt = 1.2587908452696879 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99406.0 min = 99406.0 factor = 1
- strategy "round robin" : max = 94435.7 min = 94435.7 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99406
max = 99406
avg = 99406
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (1.7%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 973.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 767.00 ns (0.2%)
LB compute : 337.00 us (94.4%)
LB move op cnt : 0
LB apply : 3.26 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (72.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.28114690680342e-10,-8.825477047792993e-11,-3.217830102734163e-10)
sum a = (1.7444695253702712e-12,7.201521757483524e-12,-1.71599556768759e-13)
sum e = 1.2539821612961766e-10
sum de = 2.1887765888871605e-15
Info: cfl dt = 1.2624096918357373 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6849e+05 | 99405 | 1 | 3.702e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12239.787543335047 (tsim/hr) [sph::Model][rank=0]
---------------- t = 246.17506500762664, dt = 1.2624096918357373 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99405.0 min = 99405.0 factor = 1
- strategy "round robin" : max = 94434.8 min = 94434.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99405
max = 99405
avg = 99405
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (2.0%)
patch tree reduce : 1.34 us (0.5%)
gen split merge : 736.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 270.77 us (93.9%)
LB move op cnt : 0
LB apply : 2.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (70.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.301949754207862e-10,-7.899711306612163e-11,-3.2198979815026883e-10)
sum a = (1.545435632414864e-12,7.461060506997286e-12,-1.449977052443474e-13)
sum e = 1.2540106202388125e-10
sum de = 2.1527312874887496e-15
Info: cfl dt = 1.1715908132388186 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7072e+05 | 99405 | 1 | 3.672e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12376.859522940342 (tsim/hr) [sph::Model][rank=0]
---------------- t = 247.43747469946237, dt = 0.15224662604907735 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 99405.0 min = 99405.0 factor = 1
- strategy "round robin" : max = 94434.8 min = 94434.8 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 99405
max = 99405
avg = 99405
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.8%)
patch tree reduce : 1.32 us (0.4%)
gen split merge : 846.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 818.00 ns (0.3%)
LB compute : 291.62 us (94.1%)
LB move op cnt : 0
LB apply : 3.06 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (69.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.182841425488172e-10,-9.078422161849756e-11,-3.1260606129835974e-10)
sum a = (1.6084928910293652e-12,7.116389521544734e-12,-4.977547906389658e-13)
sum e = 1.2537458559857512e-10
sum de = 2.1277148110618773e-15
Info: cfl dt = 1.1746144217351369 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7129e+05 | 99403 | 1 | 3.664e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1495.8420830435653 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 183 [SPH][rank=0]
Info: time since start : 155.457377804 (s) [SPH][rank=0]
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000010.vtk [VTK Dump][rank=0]
- took 6.12 ms, bandwidth = 909.85 MB/s
Info: Dumping state to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000010.sham [SPH][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (54.1%)
Info: dump to _to_trash/black_hole_disc_lense_thirring_100000/dump/dump_0000010.sham [Shamrock Dump][rank=0]
- took 5.79 ms, bandwidth = 2.20 GB/s
Info: compute_column_integ field_name: rho, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 733.25 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_normal_0000010.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_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 733.72 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_integ_hollywood_0000010.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_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 156.98 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 157.03 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_slice_0000010.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/rho_slice_0000010.json
Info: compute_slice field_name: dt_part, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 290.14 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 2073600 [sph::CartesianRender][rank=0]
Info: compute_slice took 290.51 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/dt_part_slice_0000010.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/dt_part_slice_0000010.json
Info: compute_column_integ field_name: custom, rays count: 1048576 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.015502368 s
Info: compute_column_integ took 737.06 ms [sph::CartesianRender][rank=0]
Info: compute_column_integ field_name: unity, rays count: 1048576 [sph::CartesianRender][rank=0]
Info: compute_column_integ took 729.94 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/column_average_vz_0000010.npy
Saving metadata to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/column_average_vz_0000010.json
Saving perf history to _to_trash/black_hole_disc_lense_thirring_100000/analysis/perf_history.json
Plot generation (make_plots.py)#
Load the on-the-fly analysis after the run to make the plots (everything in this section can be in another file)
522 import matplotlib
523 import matplotlib.pyplot as plt
524
525 # Uncomment this and replace by you dump folder, here since it is just above i comment it out
526 # dump_folder = "my_masterpiece"
527 # dump_folder += "/"
528
529 face_on_render_kwargs = {
530 "x_unit": "au",
531 "y_unit": "au",
532 "time_unit": "second",
533 "x_label": "x",
534 "y_label": "y",
535 }
536
537 column_density_plot.render_all(
538 **face_on_render_kwargs,
539 field_unit="kg.m^-2",
540 field_label="$\\int \\rho \\, \\mathrm{{d}} z$",
541 vmin=1,
542 vmax=1e7,
543 norm="log",
544 )
545
546 column_density_plot_hollywood.render_all(
547 **face_on_render_kwargs,
548 field_unit="kg.m^-2",
549 field_label="$\\int \\rho \\, \\mathrm{{d}} z$",
550 vmin=1,
551 vmax=1e7,
552 norm="log",
553 holywood_mode=True,
554 )
555
556 vertical_density_plot.render_all(
557 **face_on_render_kwargs,
558 field_unit="kg.m^-3",
559 field_label="$\\rho$",
560 vmin=1e-5,
561 vmax=1e-2,
562 norm="log",
563 )
564
565 dt_part_slice_plot.render_all(
566 **face_on_render_kwargs,
567 field_unit="second",
568 field_label="$\\Delta t$",
569 vmin=1e-2,
570 vmax=1e2,
571 norm="log",
572 contour_list=[1e-2, 1e-1, 1, 1e1, 1e2],
573 )
574
575 column_average_vz_plot.render_all(
576 **face_on_render_kwargs,
577 field_unit="lightspeed",
578 field_label="$\\langle v_z \\rangle_z$",
579 cmap="seismic",
580 cmap_bad_color="white",
581 vmin=-0.5,
582 vmax=0.5,
583 )
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_integ_normal_0000000.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_integ_normal_0000001.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_integ_normal_0000002.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_integ_normal_0000003.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_integ_normal_0000004.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_integ_normal_0000005.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_integ_normal_0000006.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_integ_normal_0000007.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_integ_normal_0000008.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_integ_normal_0000009.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_integ_normal_0000010.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_integ_hollywood_0000000.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_integ_hollywood_0000001.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_integ_hollywood_0000002.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_integ_hollywood_0000003.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_integ_hollywood_0000004.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_integ_hollywood_0000005.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_integ_hollywood_0000006.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_integ_hollywood_0000007.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_integ_hollywood_0000008.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_integ_hollywood_0000009.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_integ_hollywood_0000010.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_slice_0000000.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_slice_0000001.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_slice_0000002.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_slice_0000003.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_slice_0000004.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_slice_0000005.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_slice_0000006.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_slice_0000007.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_slice_0000008.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_slice_0000009.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_rho_slice_0000010.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_dt_part_slice_0000000.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_dt_part_slice_0000001.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_dt_part_slice_0000002.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_dt_part_slice_0000003.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_dt_part_slice_0000004.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_dt_part_slice_0000005.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_dt_part_slice_0000006.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_dt_part_slice_0000007.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_dt_part_slice_0000008.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_dt_part_slice_0000009.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_dt_part_slice_0000010.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_column_average_vz_0000000.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_column_average_vz_0000001.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_column_average_vz_0000002.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_column_average_vz_0000003.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_column_average_vz_0000004.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_column_average_vz_0000005.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_column_average_vz_0000006.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_column_average_vz_0000007.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_column_average_vz_0000008.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_column_average_vz_0000009.png
Saving plot to _to_trash/black_hole_disc_lense_thirring_100000/analysis/plots/plot_column_average_vz_0000010.png
Make gif for the doc (plot_to_gif.py)#
Convert PNG sequence to Image sequence in mpl
592 from matplotlib import animation
593 from shamrock.utils.plot import show_image_sequence
594
595 render_gif = True
Do it for rho integ
600 if render_gif:
601 ani = column_density_plot.render_gif(gif_filename="rho_integ.gif", save_animation=True)
602 if ani is not None:
603 plt.show()
Same but in hollywood
608 if render_gif:
609 ani = column_density_plot_hollywood.render_gif(
610 gif_filename="rho_integ_hollywood.gif", save_animation=True
611 )
612 if ani is not None:
613 plt.show()
For the vertical density plot
618 if render_gif and shamrock.sys.world_rank() == 0:
619 ani = vertical_density_plot.render_gif(gif_filename="rho_slice.gif", save_animation=True)
620 if ani is not None:
621 plt.show()
Make a gif from the plots
625 if render_gif and shamrock.sys.world_rank() == 0:
626 ani = dt_part_slice_plot.render_gif(gif_filename="dt_part_slice.gif", save_animation=True)
627 if ani is not None:
628 plt.show()
Make a gif from the plots
632 if render_gif and shamrock.sys.world_rank() == 0:
633 ani = column_average_vz_plot.render_gif(
634 gif_filename="column_average_vz.gif", save_animation=True
635 )
636 if ani is not None:
637 plt.show()
helper function to load data from JSON files
642 def load_data_from_json(filename, key):
643 filepath = os.path.join(analysis_folder, filename)
644 with open(filepath, "r") as fp:
645 data = json.load(fp)[key]
646 t = [d["t"] for d in data]
647 values = [d[key] for d in data]
648 return t, values
load the json file for barycenter
653 t, barycenter = load_data_from_json("barycenter.json", "barycenter")
654 barycenter_x = [d[0] for d in barycenter]
655 barycenter_y = [d[1] for d in barycenter]
656 barycenter_z = [d[2] for d in barycenter]
657
658 plt.figure(figsize=(8, 5), dpi=200)
659
660 plt.plot(t, barycenter_x)
661 plt.plot(t, barycenter_y)
662 plt.plot(t, barycenter_z)
663 plt.xlabel("t [seconds]")
664 plt.ylabel("barycenter")
665 plt.legend(["x", "y", "z"])
666 plt.savefig(analysis_folder + "barycenter.png")
667 plt.show()

load the json file for disc_mass
671 t, disc_mass = load_data_from_json("disc_mass.json", "disc_mass")
672
673 plt.figure(figsize=(8, 5), dpi=200)
674
675 plt.plot(t, disc_mass)
676 plt.xlabel("t [seconds]")
677 plt.ylabel("disc_mass")
678 plt.savefig(analysis_folder + "disc_mass.png")
679 plt.show()

load the json file for total_momentum
683 t, total_momentum = load_data_from_json("total_momentum.json", "total_momentum")
684 total_momentum_x = [d[0] for d in total_momentum]
685 total_momentum_y = [d[1] for d in total_momentum]
686 total_momentum_z = [d[2] for d in total_momentum]
687
688 plt.figure(figsize=(8, 5), dpi=200)
689
690 plt.plot(t, total_momentum_x)
691 plt.plot(t, total_momentum_y)
692 plt.plot(t, total_momentum_z)
693 plt.xlabel("t [seconds]")
694 plt.ylabel("total_momentum")
695 plt.legend(["x", "y", "z"])
696 plt.savefig(analysis_folder + "total_momentum.png")
697 plt.show()

load the json file for energies
701 t, potential_energy = load_data_from_json("potential_energy.json", "potential_energy")
702 _, kinetic_energy = load_data_from_json("kinetic_energy.json", "kinetic_energy")
703
704 total_energy = [p + k for p, k in zip(potential_energy, kinetic_energy)]
705
706 plt.figure(figsize=(8, 5), dpi=200)
707 plt.plot(t, potential_energy)
708 plt.plot(t, kinetic_energy)
709 plt.plot(t, total_energy)
710 plt.xlabel("t [seconds]")
711 plt.ylabel("energy")
712 plt.legend(["potential_energy", "kinetic_energy", "total_energy"])
713 plt.savefig(analysis_folder + "energies.png")
714 plt.show()

Plot the performance history (Switch close_plots to True if doing a long run)
719 perf_analysis.plot_perf_history(close_plots=False)
720 plt.show()
Plotting perf history from _to_trash/black_hole_disc_lense_thirring_100000/analysis/perf_history.json
Total running time of the script: (3 minutes 49.978 seconds)
Estimated memory usage: 1018 MB







