Note
Go to the end to download the full example code.
Orszag-Tang vortex in SPH#
This example demonstrates how to setup and run an Orszag-Tang vortex simulation using smoothed particle magnetohydrodynamics (SPMHD).
The simulation models:
An ideal MHD fluid with adiabatic equation of state
Periodic boundary conditions
A sinusoidal velocity and magnetic field initialization to trigger the vortex instability
On-the-fly rendering of density, magnetic field, and velocity fields
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
Setup and imports
27 import os
28
29 import numpy as np
30
31 import shamrock
32
33 # If we use the shamrock executable to run this script instead of the python interpreter,
34 # we should not initialize the system as the shamrock executable needs to handle specific MPI logic
35 if not shamrock.sys.is_initialized():
36 shamrock.change_loglevel(1)
37 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
41 shamrock.matplotlib.set_shamrock_mpl_style()
List parameters
47 kernel = "M4"
48
49 # CFLs
50 C_cour = 0.3
51 C_force = 0.25
52
53 # Grid resolution
54 nx = 64 # 512
55 ny = 64 # 590
56 nz = 3
57
58 # Domain bounds
59 xymin = -0.5
60 xmin = xymin
61 ymin = xymin
62
63 # Physical parameters
64 gamma = 5 / 3
65 betazero = 10.0 / 3.0
66 machzero = 1.0
67 vzero = 1.0
68 bzero = 1.0 / np.sqrt(4.0 * np.pi)
69
70 # Derived quantities
71 przero = 0.5 * bzero**2 * betazero
72 rhozero = gamma * przero * machzero
73 gam1 = gamma - 1.0
74 uuzero = przero / (gam1 * rhozero)
75
76 render_gif = True
77
78 dump_folder = "_to_trash"
79 sim_name = "orztang"
80 analysis_folder = dump_folder # store analysis data alongside dumps
81
82 if shamrock.sys.world_rank() == 0:
83 os.makedirs(dump_folder, exist_ok=True)
Configure the solver Set up the context, unit system, and SPH model with ideal MHD physics
89 ctx = shamrock.Context()
90 ctx.pdata_layout_new()
91
92 si = shamrock.UnitSystem()
93 sicte = shamrock.Constants(si)
94 codeu = shamrock.UnitSystem(
95 unit_time=1.0,
96 unit_length=1.0,
97 unit_mass=1.2566370621219e-06, # cgs mess
98 )
99 ucte = shamrock.Constants(codeu)
100 model = shamrock.get_Model_SPH(context=ctx, vector_type="f64_3", sph_kernel=kernel)
101
102 cfg = model.gen_default_config()
103 cfg.set_units(codeu)
104
105 mu_0 = ucte.mu_0()
106 print(f"mu_0: {mu_0}")
107
108 cfg.set_artif_viscosity_None() # artificial viscosity terms are computed in the MHD solver
109 cfg.set_IdealMHD(sigma_mhd=1, sigma_u=1)
110 cfg.set_show_cfl_detail(True)
111 cfg.set_boundary_periodic()
112 cfg.set_eos_adiabatic(gamma)
113 model.set_solver_config(cfg)
114
115 cfg.print_status()
116
117 crit_split = int(1e7)
118 crit_merge = 1
119 model.init_scheduler(crit_split, crit_merge)
mu_0: 1.0
----- SPH Solver configuration -----
[
{
"artif_viscosity": {
"type": "none"
},
"boundary_config": {
"bc_type": "periodic"
},
"cfl_config": {
"cfl_cour": 0.0,
"cfl_force": 0.0,
"cfl_multiplier_stiffness": 2.0,
"eta_sink": 0.05
},
"combined_dtdiv_divcurlv_compute": false,
"debug_dump_filename": "",
"do_debug_dump": false,
"dust_config": {
"drag_mode": {
"type": "none"
},
"mode": {
"type": "none"
}
},
"enable_particle_reordering": false,
"eos_config": {
"Tvec": "f64_3",
"eos_type": "adiabatic",
"gamma": 1.6666666666666667
},
"epsilon_h": 1e-06,
"ext_force_config": {
"force_list": []
},
"gpart_mass": 0.0,
"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": {
"alpha_u": 1.0,
"mhd_type": "ideal_mhd_constrained_hyper_para",
"sigma_mhd": 1.0
},
"particle_killing": [],
"particle_reordering_step_freq": 1000,
"save_dt_to_fields": false,
"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": true,
"show_ghost_zone_graph": false,
"show_neigh_stats": false,
"smoothing_length_config": {
"type": "density_based"
},
"time_state": {
"cfl_multiplier": 0.01,
"dt_sph": 0.0,
"time": 0.0
},
"tree_reduction_level": 3,
"type_id": "sycl::vec<f64,3>",
"unit_sys": {
"unit_current": 1.0,
"unit_length": 1.0,
"unit_lumint": 1.0,
"unit_mass": 1.2566370621219e-06,
"unit_qte": 1.0,
"unit_temperature": 1.0,
"unit_time": 1.0
},
"use_two_stage_search": true
}
]
------------------------------------
Setup the simulation
124 # Compute box size
125 (xs, ys, zs) = model.get_box_dim_fcc_3d(1, nx, ny, nz)
126 print(f"Initial dim: x: {xs}\ty: {ys}\tz: {zs}")
127 dr = 1 / xs
128 (xs, ys, zs) = model.get_box_dim_fcc_3d(dr, nx, ny, nz)
129 print(f"Final dim: x: {xs}\ty: {ys}\tz: {zs}")
130
131 model.resize_simulation_box((-xs / 2, -ys / 2, -zs / 2), (xs / 2, ys / 2, zs / 2))
132
133 model.add_cube_fcc_3d(dr, (-xs / 2, -ys / 2, -zs / 2), (xs / 2, ys / 2, zs / 2))
134 model.set_value_in_a_box(
135 "uint", "f64", uuzero, (-xs / 2, -ys / 2, -zs / 2), (xs / 2, ys / 2, zs / 2)
136 )
Initial dim: x: 129.0 y: 111.42860195359776 z: 4.898979485566356
Final dim: x: 1.0 y: 0.8637876120433935 z: 0.037976585159429116
Info: Add fcc lattice size : ( 65 65 4 ) [SPH][rank=0]
Info: Push particles : [Model][rank=0]
rank = 0 patch id=0, add N=12514 particles, coords = (-0.5,-0.43189380602169675,-0.018988292579714558) (0.5,0.43189380602169675,0.018988292579714558)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 56.03 us (92.3%)
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.30 us (0.4%)
patch tree reduce : 1.03 us (0.1%)
gen split merge : 1.07 us (0.1%)
split / merge op : 0/0
apply split merge : 772.00 ns (0.1%)
LB compute : 830.24 us (98.3%)
LB move op cnt : 0
LB apply : 4.25 us (0.5%)
Info: current particle counts : min = 12514 max = 12514 [Model][rank=0]
Initial condition profiles
142 def vel_func(r):
143 x, y, z = r
144 vx = -vzero * np.sin(2.0 * np.pi * (y - ymin))
145 vy = vzero * np.sin(2.0 * np.pi * (x - xmin))
146 return (vx, vy, 0.0)
147
148
149 def mag_func(r):
150 x, y, z = r
151 Bx = -bzero * np.sin(2.0 * np.pi * (y - ymin)) / rhozero
152 By = bzero * np.sin(4.0 * np.pi * (x - xmin)) / rhozero
153 return (Bx, By, 0.0)
154
155
156 model.set_field_value_lambda_f64_3("vxyz", vel_func)
157 model.set_field_value_lambda_f64_3("B/rho", mag_func)
158
159 vol_b = xs * ys * zs
160
161 totmass = rhozero * vol_b
162 pmass = model.total_mass_to_part_mass(totmass)
163 model.set_particle_mass(pmass)
164
165 print("Total mass :", totmass)
166 print("Current part mass :", pmass)
167
168 model.set_cfl_cour(C_cour)
169 model.set_cfl_force(C_force)
170
171 model.timestep()
172 cfg.print_status()
Total mass : 0.007251210573379732
Current part mass : 5.794478642624047e-07
---------------- t = 0, dt = 0 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.88 us (2.7%)
patch tree reduce : 1.59 us (0.3%)
gen split merge : 722.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 831.00 ns (0.2%)
LB compute : 492.98 us (94.4%)
LB move op cnt : 0
LB apply : 3.79 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (67.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.1636567044909703
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.008527131782945736 unconverged cnt = 12514
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.1956209045868622
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.009379844961240311 unconverged cnt = 12514
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.1956209045868622
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010317829457364343 unconverged cnt = 12514
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.1956209045868622
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.011349612403100779 unconverged cnt = 12514
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.2283842096851527
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.012484573643410858 unconverged cnt = 12514
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.011187470033562
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.013733031007751945 unconverged cnt = 12514
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.011187470033562
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.015106334108527141 unconverged cnt = 12506
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.099728304299185
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.016616967519379855 unconverged cnt = 122
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.099728304299185
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0228669411760642e-05,-1.4114334291093654e-08,0)
sum a = (1.0213313931107694e-06,-3.6725568732252264e-06,9.409145088292637e-19)
sum e = 0.010396026854745858
sum de = -1.152158095263821e-08
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.61e-05 |
| force | 3.13e-05 |
| divB_cleaning | 3.68e-05 |
+---------------+----------+
Info: cfl dt = 1.61362184669257e-05 cfl multiplier : 0.01 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.6230e+04 | 12514 | 1 | 4.771e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [sph::Model][rank=0]
----- SPH Solver configuration -----
[
{
"artif_viscosity": {
"type": "none"
},
"boundary_config": {
"bc_type": "periodic"
},
"cfl_config": {
"cfl_cour": 0.0,
"cfl_force": 0.0,
"cfl_multiplier_stiffness": 2.0,
"eta_sink": 0.05
},
"combined_dtdiv_divcurlv_compute": false,
"debug_dump_filename": "",
"do_debug_dump": false,
"dust_config": {
"drag_mode": {
"type": "none"
},
"mode": {
"type": "none"
}
},
"enable_particle_reordering": false,
"eos_config": {
"Tvec": "f64_3",
"eos_type": "adiabatic",
"gamma": 1.6666666666666667
},
"epsilon_h": 1e-06,
"ext_force_config": {
"force_list": []
},
"gpart_mass": 0.0,
"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": {
"alpha_u": 1.0,
"mhd_type": "ideal_mhd_constrained_hyper_para",
"sigma_mhd": 1.0
},
"particle_killing": [],
"particle_reordering_step_freq": 1000,
"save_dt_to_fields": false,
"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": true,
"show_ghost_zone_graph": false,
"show_neigh_stats": false,
"smoothing_length_config": {
"type": "density_based"
},
"time_state": {
"cfl_multiplier": 0.01,
"dt_sph": 0.0,
"time": 0.0
},
"tree_reduction_level": 3,
"type_id": "sycl::vec<f64,3>",
"unit_sys": {
"unit_current": 1.0,
"unit_length": 1.0,
"unit_lumint": 1.0,
"unit_mass": 1.2566370621219e-06,
"unit_qte": 1.0,
"unit_temperature": 1.0,
"unit_time": 1.0
},
"use_two_stage_search": true
}
]
------------------------------------
On-the-fly analysis objects
177 import matplotlib.pyplot as plt
178 from shamrock.utils.analysis import (
179 SliceByPlot,
180 SliceDensityPlot,
181 SliceVzPlot,
182 )
183
184 # Render domain half-extent (the box runs from -0.5 to 0.5)
185 ext_r = 0.5
186
187 density_slice_plot = SliceDensityPlot(
188 model,
189 ext_r=ext_r,
190 nx=1080,
191 ny=1080,
192 ex=(1, 0, 0),
193 ey=(0, 1, 0),
194 center=(0, 0, 0),
195 analysis_folder=analysis_folder,
196 analysis_prefix="rho_slice",
197 )
198
199 v_y_slice_plot = SliceVzPlot(
200 model,
201 ext_r=ext_r,
202 nx=1080,
203 ny=1080,
204 ex=(1, 0, 0),
205 ey=(0, 1, 0),
206 center=(0, 0, 0),
207 analysis_folder=analysis_folder,
208 analysis_prefix="vy_slice",
209 do_normalization=False,
210 )
211
212 by_slice_plot = SliceByPlot(
213 model,
214 ext_r=ext_r,
215 nx=1080,
216 ny=1080,
217 ex=(1, 0, 0),
218 ey=(0, 1, 0),
219 center=(0, 0, 0),
220 analysis_folder=analysis_folder,
221 analysis_prefix="By_slice",
222 do_normalization=False,
223 )
224
225
226 def analysis(ianalysis):
227 density_slice_plot.analysis_save(ianalysis)
228 v_y_slice_plot.analysis_save(ianalysis)
229 by_slice_plot.analysis_save(ianalysis)
Run the simulation
235 t_sum = 0.0
236 t_target = 1.0
237 dt_dump = 0.025
238
239 analysis(0)
240 model.do_vtk_dump(f"{dump_folder}/{sim_name}_{0:05}.vtk", True)
241
242 i_dump = 1
243
244 while t_sum < t_target:
245 model.evolve_until(t_sum + dt_dump)
246 model.do_vtk_dump(f"{dump_folder}/{sim_name}_{i_dump:05}.vtk", True)
247 analysis(i_dump)
248 t_sum += dt_dump
249 i_dump += 1
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 716.09 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 711.00 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/plots/rho_slice_0000000.npy
Saving metadata to _to_trash/plots/rho_slice_0000000.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 741.73 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/vy_slice_0000000.npy
Saving metadata to _to_trash/plots/vy_slice_0000000.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.007132346 s
Info: compute_slice took 716.13 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/By_slice_0000000.npy
Saving metadata to _to_trash/plots/By_slice_0000000.json
Info: dump to _to_trash/orztang_00000.vtk [VTK Dump][rank=0]
- took 5.61 ms, bandwidth = 125.04 MB/s
Info: evolve_until (target_time = 0.03s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0, dt = 1.61362184669257e-05 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (1.1%)
patch tree reduce : 1.57 us (0.3%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.12 us (0.2%)
LB compute : 517.34 us (93.6%)
LB move op cnt : 0
LB apply : 3.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.099728304299185
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.02286529313343e-05,-1.4173595471309237e-08,1.4855880431233866e-23)
sum a = (1.0334521305623936e-06,-3.6766716570445475e-06,-2.1075043969128045e-19)
sum e = 0.010396066683976794
sum de = 5.111812636110951e-07
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 5.49e-04 |
| force | 1.06e-03 |
| divB_cleaning | 1.25e-03 |
+---------------+----------+
Info: cfl dt = 0.0005486408477980441 cfl multiplier : 0.34 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.0218e+05 | 12514 | 1 | 1.225e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.47431006700156697 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.61362184669257e-05, dt = 0.0005486408477980441 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.6%)
patch tree reduce : 1.40 us (0.4%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 333.81 us (94.7%)
LB move op cnt : 0
LB apply : 3.91 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (67.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.099728304299185
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0228085839489725e-05,-1.6190800924908457e-08,-1.128316585362591e-22)
sum a = (1.4421286454079617e-06,-3.780178034187899e-06,-4.91107709585847e-19)
sum e = 0.010397485333626385
sum de = 1.8070280709211977e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 9.05e-04 |
| force | 1.81e-03 |
| divB_cleaning | 2.06e-03 |
+---------------+----------+
Info: cfl dt = 0.0009049257345052535 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 | 6.7919e+04 | 12514 | 1 | 1.842e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.719746025547773 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0005647770662649698, dt = 0.0009049257345052535 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.4%)
patch tree reduce : 1.77 us (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.2%)
LB compute : 399.52 us (95.4%)
LB move op cnt : 0
LB apply : 3.81 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.099728304299185
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0226668711851368e-05,-1.9639975222104828e-08,-6.335158377948981e-22)
sum a = (2.2547513437455336e-06,-3.7008577032577407e-06,-4.0258737838462546e-19)
sum e = 0.010399523200501762
sum de = 4.4693337315194474e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.15e-03 |
| force | 2.45e-03 |
| divB_cleaning | 2.59e-03 |
+---------------+----------+
Info: cfl dt = 0.0011485819718354687 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 | 7.1454e+04 | 12514 | 1 | 1.751e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.60142498619817 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0014697028007702234, dt = 0.0011485819718354687 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.2%)
patch tree reduce : 1.69 us (0.4%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.29 us (0.3%)
LB compute : 419.83 us (95.7%)
LB move op cnt : 0
LB apply : 3.93 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (65.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.1099568483298707
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0223711263510636e-05,-2.3854824155347438e-08,-9.134589727824095e-22)
sum a = (3.4254654213856692e-06,-3.219383988965405e-06,1.2012003082770417e-18)
sum e = 0.010401571594041968
sum de = 7.326903646604662e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.27e-03 |
| force | 3.08e-03 |
| divB_cleaning | 2.94e-03 |
+---------------+----------+
Info: cfl dt = 0.0012721516913725007 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 | 8.1726e+04 | 12514 | 1 | 1.531e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.004149592335978 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0026182847726056923, dt = 0.0012721516913725007 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.5%)
patch tree reduce : 1.26 us (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 366.19 us (95.0%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (66.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.120185392360556
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0218681221339458e-05,-2.7673862928431906e-08,1.4308763111480164e-21)
sum a = (4.661131777127655e-06,-2.3993379508652423e-06,8.814720771214667e-19)
sum e = 0.010403281677241557
sum de = 9.734846402815636e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.35e-03 |
| force | 3.80e-03 |
| divB_cleaning | 3.19e-03 |
+---------------+----------+
Info: cfl dt = 0.0013479103715663353 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 | 6.6006e+04 | 12514 | 1 | 1.896e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.156256100075034 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0038904364639781933, dt = 0.0013479103715663353 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.5%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 359.97 us (95.1%)
LB move op cnt : 0
LB apply : 3.34 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (69.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.1304139363912418
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0211612455951677e-05,-3.038634396014521e-08,2.2867886251224007e-21)
sum a = (5.758582453292861e-06,-1.582886298079697e-06,3.621871109468587e-20)
sum e = 0.010404685394448051
sum de = 0.00011464854663192194
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.40e-03 |
| force | 4.68e-03 |
| divB_cleaning | 3.36e-03 |
+---------------+----------+
Info: cfl dt = 0.0013954726796525567 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 | 6.5298e+04 | 12514 | 1 | 1.916e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.32029494406376 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.005238346835544529, dt = 0.0013954726796525567 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.5%)
patch tree reduce : 1.35 us (0.4%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 317.02 us (94.7%)
LB move op cnt : 0
LB apply : 3.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (68.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.1176282563528845
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0202836878889966e-05,-3.204496671835545e-08,1.9108506269704104e-21)
sum a = (6.548141121969165e-06,-8.956562440227795e-07,-1.3738020877922142e-19)
sum e = 0.010405827056210232
sum de = 0.00012458839695682648
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.41e-03 |
| force | 5.28e-03 |
| divB_cleaning | 3.49e-03 |
+---------------+----------+
Info: cfl dt = 0.0014100006857167785 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 | 6.5779e+04 | 12514 | 1 | 1.902e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.406863452319 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0066338195151970855, dt = 0.0014100006857167785 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.6%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 318.41 us (94.7%)
LB move op cnt : 0
LB apply : 3.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (67.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.112513984337541
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0193053091642388e-05,-3.282833725575869e-08,1.5660732650288792e-21)
sum a = (7.156172403999775e-06,-3.954955649526983e-07,1.31899153387983e-18)
sum e = 0.010406732443966298
sum de = 0.00012760378588465925
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.44e-03 |
| force | 5.88e-03 |
| divB_cleaning | 3.57e-03 |
+---------------+----------+
Info: cfl dt = 0.0014371937646284062 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 | 6.5575e+04 | 12514 | 1 | 1.908e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.598788655179906 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.008043820200913864, dt = 0.0014371937646284062 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.4%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 352.84 us (95.1%)
LB move op cnt : 0
LB apply : 3.38 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (68.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.118267540354802
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.018233962302223e-05,-3.304412756430776e-08,4.2529242518210454e-21)
sum a = (7.602337532992074e-06,-1.4885862819463014e-07,8.440953965779276e-19)
sum e = 0.010407470162227882
sum de = 0.00012474840607499724
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.48e-03 |
| force | 6.41e-03 |
| divB_cleaning | 3.63e-03 |
+---------------+----------+
Info: cfl dt = 0.0014756847466001956 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 | 6.5256e+04 | 12514 | 1 | 1.918e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.98013739514497 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.00948101396554227, dt = 0.0014756847466001956 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.6%)
patch tree reduce : 1.25 us (0.4%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 320.49 us (94.8%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.1294550103883645
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.01708003566158e-05,-3.308656343781627e-08,5.295297792151564e-21)
sum a = (7.865178181419086e-06,2.174166330619294e-07,-1.206089512616644e-18)
sum e = 0.010408064916448
sum de = 0.00011676979248486642
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.53e-03 |
| force | 6.71e-03 |
| divB_cleaning | 3.63e-03 |
+---------------+----------+
Info: cfl dt = 0.0015255019926626939 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 | 6.4506e+04 | 12514 | 1 | 1.940e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.38436082025942 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.010956698712142466, dt = 0.0015255019926626939 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.4%)
patch tree reduce : 1.20 us (0.3%)
gen split merge : 642.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.37 us (0.3%)
LB compute : 384.56 us (95.2%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (68.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.1419210484257634
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.015860807665957e-05,-3.248464052246336e-08,2.076705626155112e-21)
sum a = (7.778200969059215e-06,4.141714151235456e-07,-9.7044272977502e-19)
sum e = 0.010408539616783027
sum de = 0.00010437797370908944
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.59e-03 |
| force | 6.95e-03 |
| divB_cleaning | 3.61e-03 |
+---------------+----------+
Info: cfl dt = 0.0015874227857828045 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 | 6.4065e+04 | 12514 | 1 | 1.953e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.115087230329166 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.01248220070480516, dt = 0.0015874227857828045 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.5%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 349.35 us (95.2%)
LB move op cnt : 0
LB apply : 3.24 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (65.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.1378456129135373
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0146327125164416e-05,-3.1677100475027815e-08,7.880625415806427e-22)
sum a = (7.341621020815285e-06,4.542865370200679e-07,6.933020416828234e-19)
sum e = 0.010408914493050335
sum de = 8.809410125171755e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.66e-03 |
| force | 6.85e-03 |
| divB_cleaning | 3.59e-03 |
+---------------+----------+
Info: cfl dt = 0.0016635943086238045 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 | 6.3585e+04 | 12514 | 1 | 1.968e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.037133536373297 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.014069623490587964, dt = 0.0016635943086238045 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.6%)
patch tree reduce : 1.26 us (0.3%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.23 us (0.3%)
LB compute : 349.94 us (94.9%)
LB move op cnt : 0
LB apply : 3.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (68.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.1356880294070644
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0134460164696604e-05,-3.088951214870101e-08,3.2899600747365354e-21)
sum a = (6.461958968001851e-06,3.786379718831029e-08,-1.1561681630438622e-18)
sum e = 0.010409211128122682
sum de = 6.83499708513235e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.73e-03 |
| force | 6.46e-03 |
| divB_cleaning | 3.57e-03 |
+---------------+----------+
Info: cfl dt = 0.001728817971683793 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 | 6.3321e+04 | 12514 | 1 | 1.976e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.304233803526117 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.015733217799211767, dt = 0.001728817971683793 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.6%)
patch tree reduce : 1.31 us (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 325.34 us (94.6%)
LB move op cnt : 0
LB apply : 3.80 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (66.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.138005433914016
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0124020314293056e-05,-3.1170431785730184e-08,-2.5129545331015393e-22)
sum a = (5.273649800389995e-06,-8.355901520349019e-07,-3.5253736553974874e-20)
sum e = 0.010409441227569647
sum de = 4.593119116895998e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.78e-03 |
| force | 6.24e-03 |
| divB_cleaning | 3.56e-03 |
+---------------+----------+
Info: cfl dt = 0.0017834627827891317 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 | 6.3106e+04 | 12514 | 1 | 1.983e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.385300186798883 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.01746203577089556, dt = 0.0017834627827891317 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.5%)
patch tree reduce : 1.23 us (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 330.82 us (94.8%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (66.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.1424804219274423
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0115642141266616e-05,-3.341569716569572e-08,5.629018154147448e-22)
sum a = (3.980936469521532e-06,-1.824827147828729e-06,-3.1014281738451255e-19)
sum e = 0.010409621743706517
sum de = 2.2312484884452057e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.86e-03 |
| force | 6.14e-03 |
| divB_cleaning | 3.55e-03 |
+---------------+----------+
Info: cfl dt = 0.0018564631692236776 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 | 6.2463e+04 | 12514 | 1 | 2.003e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.0474478742962 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.01924549855368469, dt = 0.0018564631692236776 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.09 us (1.4%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 642.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 352.46 us (95.2%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (69.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.1450375579351126
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.010940443238943e-05,-3.7685555237904745e-08,-3.9202090716384015e-22)
sum a = (2.636969332453485e-06,-2.463222895658556e-06,-2.6678329468856534e-19)
sum e = 0.01040978033904317
sum de = -1.6340758332720941e-06
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.92e-03 |
| force | 6.14e-03 |
| divB_cleaning | 3.55e-03 |
+---------------+----------+
Info: cfl dt = 0.0019187113217907792 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 | 6.2151e+04 | 12514 | 1 | 2.013e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.1928131569817 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.021101961722908368, dt = 0.0019187113217907792 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.4%)
patch tree reduce : 1.39 us (0.4%)
gen split merge : 711.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 356.35 us (95.1%)
LB move op cnt : 0
LB apply : 3.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (66.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.1383250759149752
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0105592362221095e-05,-4.30043479922839e-08,-8.584252685074859e-22)
sum a = (1.4832688157548342e-06,-2.580208730228243e-06,1.4384553820198507e-19)
sum e = 0.01040992101320704
sum de = -2.5193839741450134e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.96e-03 |
| force | 6.20e-03 |
| divB_cleaning | 3.56e-03 |
+---------------+----------+
Info: cfl dt = 0.0019564106821147766 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 | 6.1811e+04 | 12514 | 1 | 2.025e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.11796112489684 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.023020673044699146, dt = 0.0019564106821147766 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.4%)
patch tree reduce : 1.39 us (0.4%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 356.96 us (95.1%)
LB move op cnt : 0
LB apply : 3.45 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (66.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.1428000639283997
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0103797288387414e-05,-4.816452693644619e-08,-2.940156803728801e-22)
sum a = (6.986580770805771e-07,-2.407794185003769e-06,-5.697209688357691e-19)
sum e = 0.010410042241933865
sum de = -4.532190585288766e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.84e-03 |
| force | 6.25e-03 |
| divB_cleaning | 3.55e-03 |
+---------------+----------+
Info: cfl dt = 0.001842789474783055 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 | 6.1192e+04 | 12514 | 1 | 2.045e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.439821784015976 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.024977083726813922, dt = 2.2916273186079222e-05 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.12 us (1.3%)
patch tree reduce : 1.25 us (0.3%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 373.65 us (95.5%)
LB move op cnt : 0
LB apply : 3.33 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.1463161259389474
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0104548788163183e-05,-4.805104777726648e-08,-9.765341315632582e-22)
sum a = (7.278725477826745e-07,-2.382738350825344e-06,-9.443884171758233e-20)
sum e = 0.010409787550002507
sum de = -4.5555690671126784e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.84e-03 |
| force | 6.25e-03 |
| divB_cleaning | 3.56e-03 |
+---------------+----------+
Info: cfl dt = 0.001843718993378444 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 | 6.3288e+04 | 12514 | 1 | 1.977e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.41722645790712914 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 20 [SPH][rank=0]
Info: time since start : 18.713725347 (s) [SPH][rank=0]
Info: dump to _to_trash/orztang_00001.vtk [VTK Dump][rank=0]
- took 2.37 ms, bandwidth = 296.37 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 711.32 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 714.86 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/rho_slice_0000001.npy
Saving metadata to _to_trash/plots/rho_slice_0000001.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 728.09 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/vy_slice_0000001.npy
Saving metadata to _to_trash/plots/vy_slice_0000001.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.005779874 s
Info: compute_slice took 727.17 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/By_slice_0000001.npy
Saving metadata to _to_trash/plots/By_slice_0000001.json
Info: evolve_until (target_time = 0.05s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.025, dt = 0.001843718993378444 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.27 us (2.0%)
patch tree reduce : 1.73 us (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 441.88 us (95.1%)
LB move op cnt : 0
LB apply : 3.92 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (72.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.147594693942783
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0103206460978865e-05,-5.2443860638312897e-08,-1.190135266876889e-21)
sum a = (2.1662622792755526e-07,-2.175819487626875e-06,6.580483051288485e-19)
sum e = 0.010410102921702545
sum de = -5.9137175843294115e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.86e-03 |
| force | 6.29e-03 |
| divB_cleaning | 3.55e-03 |
+---------------+----------+
Info: cfl dt = 0.001860550715917643 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 | 9.9677e+04 | 12514 | 1 | 1.255e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.86863402383013 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.026843718993378445, dt = 0.001860550715917643 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.87 us (1.4%)
patch tree reduce : 1.18 us (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 337.69 us (95.1%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (67.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.1608598369825787
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.010327471417043e-05,-5.630133302450657e-08,5.9305726981196325e-22)
sum a = (2.340785357646031e-09,-1.9354134203817625e-06,-1.4392916932884668e-18)
sum e = 0.01041017057382469
sum de = -6.756074364397827e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.88e-03 |
| force | 6.40e-03 |
| divB_cleaning | 3.55e-03 |
+---------------+----------+
Info: cfl dt = 0.0018829007690911558 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 | 9.7672e+04 | 12514 | 1 | 1.281e-01 | 0.0% | 1.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.27796499900368 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.028704269709296088, dt = 0.0018829007690911558 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.6%)
patch tree reduce : 1.30 us (0.4%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 327.35 us (94.8%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (65.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.178759789036279
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.010346965117067e-05,-5.972188060127101e-08,-3.930260889770808e-21)
sum a = (4.3927650480936485e-09,-1.695741778392999e-06,3.3265889000110235e-19)
sum e = 0.010410204207945636
sum de = -7.083339832553214e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.64e-03 |
| force | 6.61e-03 |
| divB_cleaning | 3.54e-03 |
+---------------+----------+
Info: cfl dt = 0.0016381148092677654 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 | 9.4769e+04 | 12514 | 1 | 1.320e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.333361091484086 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.030587170478387243, dt = 0.0016381148092677654 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.24 us (1.9%)
patch tree reduce : 1.31 us (0.4%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 310.38 us (94.1%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (68.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5082307815246927
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0103460523479957e-05,-6.227406136199094e-08,-1.7952547184477397e-21)
sum a = (1.65359447629859e-07,-1.5319344803935828e-06,9.560324433004026e-19)
sum e = 0.010410137692978149
sum de = -7.011025950382516e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.64e-03 |
| force | 6.87e-03 |
| divB_cleaning | 3.51e-03 |
+---------------+----------+
Info: cfl dt = 0.0016383992776190421 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 | 9.4776e+04 | 12514 | 1 | 1.320e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.66330703022476 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.03222528528765501, dt = 0.0016383992776190421 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.6%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 333.79 us (94.7%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (73.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.527888764583667
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0103057757727377e-05,-6.464981412851756e-08,3.9202090716384015e-22)
sum a = (4.325782161722155e-07,-1.441484485719021e-06,-1.3222241985912118e-18)
sum e = 0.010410079984257007
sum de = -6.682443265083738e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.64e-03 |
| force | 7.13e-03 |
| divB_cleaning | 3.48e-03 |
+---------------+----------+
Info: cfl dt = 0.0016414459921636128 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.6275e+04 | 12514 | 1 | 1.300e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.37760909637615 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.033863684565274055, dt = 0.0016414459921636128 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.8%)
patch tree reduce : 1.42 us (0.5%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 295.85 us (94.0%)
LB move op cnt : 0
LB apply : 3.63 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (69.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.530525811091577
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.010212879842913e-05,-6.694183645760586e-08,-3.7654110723993464e-21)
sum a = (7.870230295670743e-07,-1.423347372516377e-06,-2.728626342950446e-19)
sum e = 0.010409974568942193
sum de = -6.177314485886112e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.65e-03 |
| force | 7.38e-03 |
| divB_cleaning | 3.44e-03 |
+---------------+----------+
Info: cfl dt = 0.0016485276087025093 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 | 9.6534e+04 | 12514 | 1 | 1.296e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.584203903269945 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.03550513055743767, dt = 0.0016485276087025093 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.7%)
patch tree reduce : 1.36 us (0.4%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 290.32 us (93.8%)
LB move op cnt : 0
LB apply : 4.13 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (66.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5310052740930162
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.010054046822706e-05,-6.92733783513629e-08,-3.28091343841737e-21)
sum a = (1.207735724040929e-06,-1.4800422211815793e-06,-3.2889548929232945e-19)
sum e = 0.010409816051295415
sum de = -5.5605541920280074e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.66e-03 |
| force | 7.70e-03 |
| divB_cleaning | 3.39e-03 |
+---------------+----------+
Info: cfl dt = 0.0016592468035131129 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 | 9.5034e+04 | 12514 | 1 | 1.317e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.069154669727354 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.03715365816614018, dt = 0.0016592468035131129 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.6%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 343.47 us (94.7%)
LB move op cnt : 0
LB apply : 3.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.15 us (72.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5346012466038044
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.009818975834154e-05,-7.177586518798206e-08,-3.972478525926913e-21)
sum a = (1.6684696477399207e-06,-1.569761969558901e-06,1.3258750189369017e-19)
sum e = 0.010409599290770753
sum de = -4.8904609000728364e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.67e-03 |
| force | 8.08e-03 |
| divB_cleaning | 3.35e-03 |
+---------------+----------+
Info: cfl dt = 0.001673343931171752 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 | 9.5766e+04 | 12514 | 1 | 1.307e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.71164891714048 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.03881290496965329, dt = 0.001673343931171752 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.6%)
patch tree reduce : 1.38 us (0.4%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 353.44 us (94.9%)
LB move op cnt : 0
LB apply : 3.88 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.46 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5365190986095576
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0095015599137077e-05,-7.447705045512178e-08,-3.3653487107295813e-21)
sum a = (2.1549483771143363e-06,-1.684536581963027e-06,-9.578498120187416e-19)
sum e = 0.010409318775782569
sum de = -4.206540252866032e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.59e-03 |
| force | 8.52e-03 |
| divB_cleaning | 3.31e-03 |
+---------------+----------+
Info: cfl dt = 0.0015861848556525807 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 | 9.6074e+04 | 12514 | 1 | 1.303e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.248254653578755 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.04048624890082504, dt = 0.0015861848556525807 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.5%)
patch tree reduce : 1.28 us (0.3%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 350.48 us (94.9%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (70.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5357999041073995
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0091190429541877e-05,-7.724506557051062e-08,-5.878805834737741e-21)
sum a = (2.6027403296412816e-06,-1.7729804611945958e-06,6.204464638591435e-19)
sum e = 0.010408972568887075
sum de = -3.575834776408427e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.63e-03 |
| force | 8.32e-03 |
| divB_cleaning | 3.27e-03 |
+---------------+----------+
Info: cfl dt = 0.0016269732097045886 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 | 9.4938e+04 | 12514 | 1 | 1.318e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.32114730723822 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.04207243375647762, dt = 0.0016269732097045886 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.98 us (1.4%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 327.53 us (94.7%)
LB move op cnt : 0
LB apply : 3.28 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (65.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5357999041074
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0086600700347012e-05,-8.019980145335356e-08,-3.576436891510111e-21)
sum a = (3.042120705360442e-06,-1.8460551186579646e-06,-4.734486754908359e-19)
sum e = 0.010408573152134106
sum de = -2.9538856800415312e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.64e-03 |
| force | 8.09e-03 |
| divB_cleaning | 3.23e-03 |
+---------------+----------+
Info: cfl dt = 0.001641938850306016 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 | 7.1537e+04 | 12514 | 1 | 1.749e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.48229416152639 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.043699406966182214, dt = 0.001641938850306016 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.4%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 354.92 us (95.1%)
LB move op cnt : 0
LB apply : 3.87 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 us (68.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5403548026210645
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0081248294123502e-05,-8.329035632773587e-08,-5.2309661561041645e-21)
sum a = (3.4425122336265713e-06,-1.9024471476754398e-06,7.279124618763243e-20)
sum e = 0.010408090213265296
sum de = -2.36190461722474e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.65e-03 |
| force | 7.87e-03 |
| divB_cleaning | 3.19e-03 |
+---------------+----------+
Info: cfl dt = 0.0016547889035978818 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 | 8.7138e+04 | 12514 | 1 | 1.436e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.15963113061099 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.04534134581648823, dt = 0.0016547889035978818 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.5%)
patch tree reduce : 1.38 us (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 357.81 us (94.9%)
LB move op cnt : 0
LB apply : 3.59 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (67.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.545628895636887
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.00752229538759e-05,-8.6484800888724e-08,-4.6700747043159005e-21)
sum a = (3.806252718933649e-06,-1.9318227317870163e-06,6.237595431155846e-19)
sum e = 0.010407519082013034
sum de = -1.8036339756948868e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.60e-03 |
| force | 7.75e-03 |
| divB_cleaning | 3.15e-03 |
+---------------+----------+
Info: cfl dt = 0.0015959304164424983 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 | 9.3897e+04 | 12514 | 1 | 1.333e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.69914122845558 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.04699613472008611, dt = 0.0015959304164424983 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.5%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 326.74 us (94.6%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (68.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.544669969634009
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0068847482529403e-05,-8.959216074183057e-08,-3.29749893833584e-21)
sum a = (4.110216630182758e-06,-1.9404117698355276e-06,7.613005809849246e-19)
sum e = 0.010406866687294838
sum de = -1.3047008049798945e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.61e-03 |
| force | 7.73e-03 |
| divB_cleaning | 3.11e-03 |
+---------------+----------+
Info: cfl dt = 0.0016125643452095562 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 | 9.3923e+04 | 12514 | 1 | 1.332e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.121295784735025 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.04859206513652861, dt = 0.0014079348634713912 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.8%)
patch tree reduce : 1.46 us (0.5%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 298.21 us (94.1%)
LB move op cnt : 0
LB apply : 3.70 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (64.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5439507751318517
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0062818012613753e-05,-9.233098787510351e-08,-2.0666538080227058e-21)
sum a = (4.328002710620253e-06,-1.9304597321214823e-06,2.692922284944139e-19)
sum e = 0.010406186844689028
sum de = -8.967279203754826e-06
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.63e-03 |
| force | 7.68e-03 |
| divB_cleaning | 3.07e-03 |
+---------------+----------+
Info: cfl dt = 0.001629478380137047 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 | 6.6142e+04 | 12514 | 1 | 1.892e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.789446396318763 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 35 [SPH][rank=0]
Info: time since start : 23.812922948 (s) [SPH][rank=0]
Info: dump to _to_trash/orztang_00002.vtk [VTK Dump][rank=0]
- took 2.46 ms, bandwidth = 284.49 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 743.50 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 743.29 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/rho_slice_0000002.npy
Saving metadata to _to_trash/plots/rho_slice_0000002.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 753.59 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/vy_slice_0000002.npy
Saving metadata to _to_trash/plots/vy_slice_0000002.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.006518999 s
Info: compute_slice took 752.42 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/By_slice_0000002.npy
Saving metadata to _to_trash/plots/By_slice_0000002.json
Info: evolve_until (target_time = 0.08s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.05, dt = 0.001629478380137047 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.30 us (2.3%)
patch tree reduce : 1.66 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 374.02 us (94.2%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.31 us (74.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.545628895636886
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0055612311459962e-05,-9.54696243618825e-08,-1.905196479270932e-21)
sum a = (4.535719678212965e-06,-1.9060402527731987e-06,-8.118652469181805e-20)
sum e = 0.010405380817965703
sum de = -4.602231024577609e-06
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.65e-03 |
| force | 7.66e-03 |
| divB_cleaning | 3.03e-03 |
+---------------+----------+
Info: cfl dt = 0.001651354359220398 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 | 9.3555e+04 | 12514 | 1 | 1.338e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.85548726575889 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.05162947838013705, dt = 0.001651354359220398 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.33 us (0.7%)
patch tree reduce : 1.40 us (0.1%)
gen split merge : 711.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.18 us (0.1%)
LB compute : 1.03 ms (98.0%)
LB move op cnt : 0
LB apply : 3.80 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (72.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.554498961163497
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0047952995843193e-05,-9.859727673545798e-08,-2.3388067839576027e-21)
sum a = (4.686143165969179e-06,-1.8289811851062046e-06,-5.18641649814134e-19)
sum e = 0.010404407860815802
sum de = -6.920586592219969e-07
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.53e-03 |
| force | 7.68e-03 |
| divB_cleaning | 3.00e-03 |
+---------------+----------+
Info: cfl dt = 0.0015290644681638938 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 | 6.5181e+04 | 12514 | 1 | 1.920e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.964706477083933 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.05328083273935745, dt = 0.0015290644681638938 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.7%)
patch tree reduce : 1.27 us (0.4%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 311.79 us (94.3%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (70.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.559053859677163
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0040663379594188e-05,-1.0133028096496575e-07,-3.468379846586744e-21)
sum a = (4.7820052882395035e-06,-1.7196855977515607e-06,-5.7280888736604435e-19)
sum e = 0.010403356429533606
sum de = 2.4557519985213716e-06
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.54e-03 |
| force | 7.69e-03 |
| divB_cleaning | 2.96e-03 |
+---------------+----------+
Info: cfl dt = 0.0015427319662999724 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 | 9.2582e+04 | 12514 | 1 | 1.352e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.72482399478215 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.054809897207521344, dt = 0.0015427319662999724 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.9%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 781.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 284.22 us (93.9%)
LB move op cnt : 0
LB apply : 3.78 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (59.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5568962761706886
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.003321273749032e-05,-1.038997349091688e-07,-4.360981296744411e-21)
sum a = (4.850158385955895e-06,-1.6071673005767e-06,-6.75345473771093e-19)
sum e = 0.010402199346820221
sum de = 5.186419119645566e-06
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.55e-03 |
| force | 7.64e-03 |
| divB_cleaning | 2.92e-03 |
+---------------+----------+
Info: cfl dt = 0.0015467003552101784 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 | 9.3201e+04 | 12514 | 1 | 1.343e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.36372673935261 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.05635262917382131, dt = 0.0015467003552101784 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.7%)
patch tree reduce : 1.23 us (0.4%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 304.52 us (94.3%)
LB move op cnt : 0
LB apply : 3.71 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (74.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.555937350167812
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0025658424810766e-05,-1.0629874835607477e-07,-5.491810836640104e-21)
sum a = (4.879955742871917e-06,-1.4846752250069808e-06,-3.7177252471792114e-19)
sum e = 0.010400902471705924
sum de = 7.4403549383019585e-06
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.57e-03 |
| force | 7.47e-03 |
| divB_cleaning | 2.89e-03 |
+---------------+----------+
Info: cfl dt = 0.0015725664386664047 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 | 9.2094e+04 | 12514 | 1 | 1.359e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.977337661720384 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.05789932952903149, dt = 0.0015725664386664047 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.4%)
patch tree reduce : 1.24 us (0.3%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 361.38 us (95.3%)
LB move op cnt : 0
LB apply : 3.38 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (71.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5542592296627777
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0017961326396493e-05,-1.0853876951869684e-07,-5.803919789651315e-21)
sum a = (4.879724183356002e-06,-1.3202074910233697e-06,7.916651131992971e-19)
sum e = 0.010399440329455575
sum de = 9.235630262978257e-06
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.60e-03 |
| force | 7.29e-03 |
| divB_cleaning | 2.85e-03 |
+---------------+----------+
Info: cfl dt = 0.0015993315977131401 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 | 6.4176e+04 | 12514 | 1 | 1.950e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.032616195439708 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0594718959676979, dt = 0.0015993315977131401 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.6%)
patch tree reduce : 1.16 us (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 317.22 us (94.9%)
LB move op cnt : 0
LB apply : 3.13 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (62.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.560492248681477
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0010157211392816e-05,-1.1052090085616536e-07,-3.642276300277371e-21)
sum a = (4.842224833115296e-06,-1.122640964374161e-06,-3.2879899183825835e-19)
sum e = 0.010397789528455681
sum de = 1.0590871897522312e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.63e-03 |
| force | 7.15e-03 |
| divB_cleaning | 2.82e-03 |
+---------------+----------+
Info: cfl dt = 0.0016258270493755094 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 | 9.1863e+04 | 12514 | 1 | 1.362e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.265643186743574 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.061071227565411036, dt = 0.0016258270493755094 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.6%)
patch tree reduce : 1.25 us (0.4%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 326.62 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.10 us (63.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5592935911778802
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0002314578228293e-05,-1.1218813370802127e-07,-5.157839179190909e-21)
sum a = (4.784623258336604e-06,-9.24807947458527e-07,-5.376355653571287e-19)
sum e = 0.010395930729084043
sum de = 1.1558822191093528e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.65e-03 |
| force | 7.03e-03 |
| divB_cleaning | 2.78e-03 |
+---------------+----------+
Info: cfl dt = 0.001650178246872624 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 | 8.9146e+04 | 12514 | 1 | 1.404e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.69506635077623 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.06269705461478654, dt = 0.001650178246872624 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.6%)
patch tree reduce : 1.34 us (0.4%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 336.80 us (94.7%)
LB move op cnt : 0
LB apply : 3.89 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (67.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5578552021735663
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9994465922106728e-05,-1.1355341053079051e-07,-6.126583151701553e-21)
sum a = (4.714839660544443e-06,-7.031613746367902e-07,-9.508859124166107e-19)
sum e = 0.01039384602817937
sum de = 1.2188271704216796e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.67e-03 |
| force | 6.86e-03 |
| divB_cleaning | 2.75e-03 |
+---------------+----------+
Info: cfl dt = 0.0016741755435075588 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 | 9.0897e+04 | 12514 | 1 | 1.377e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.15059646235178 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.06434723286165916, dt = 0.0016741755435075588 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.8%)
patch tree reduce : 1.26 us (0.4%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.3%)
LB compute : 290.09 us (94.1%)
LB move op cnt : 0
LB apply : 3.61 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (65.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5616909061850737
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9986630030543152e-05,-1.1454774793011364e-07,-8.088698051147235e-21)
sum a = (4.6395863306590016e-06,-4.903648233048127e-07,5.552463507251043e-19)
sum e = 0.010391516115753738
sum de = 1.259005939572678e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.70e-03 |
| force | 6.70e-03 |
| divB_cleaning | 2.71e-03 |
+---------------+----------+
Info: cfl dt = 0.0016979897047495053 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 | 9.1895e+04 | 12514 | 1 | 1.362e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.25893601044511 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.06602140840516672, dt = 0.0016979897047495053 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.15 us (1.0%)
patch tree reduce : 982.00 ns (0.2%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 388.50 us (96.2%)
LB move op cnt : 0
LB apply : 3.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (67.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5616909061850737
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.99788150543616e-05,-1.1520225296060738e-07,-5.9657540615830544e-21)
sum a = (4.562248293199874e-06,-3.04866220246871e-07,-4.878267961474297e-19)
sum e = 0.010388920633726926
sum de = 1.2876249701636053e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.69e-03 |
| force | 6.52e-03 |
| divB_cleaning | 2.68e-03 |
+---------------+----------+
Info: cfl dt = 0.0016899393493586196 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 | 8.9730e+04 | 12514 | 1 | 1.395e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.830761019416265 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.06771939810991623, dt = 0.0016899393493586196 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.4%)
patch tree reduce : 1.18 us (0.3%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 357.51 us (95.1%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (68.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5679239252037718
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9971170791045205e-05,-1.1555997102475528e-07,-7.749700484631837e-21)
sum a = (4.478724458792252e-06,-1.3927135444695376e-07,-1.192065215958311e-18)
sum e = 0.010386082967605294
sum de = 1.312495038373935e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.73e-03 |
| force | 6.39e-03 |
| divB_cleaning | 2.65e-03 |
+---------------+----------+
Info: cfl dt = 0.001728062686764443 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 | 8.9608e+04 | 12514 | 1 | 1.397e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.56369373211042 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.06940933745927484, dt = 0.001728062686764443 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.16 us (1.5%)
patch tree reduce : 1.35 us (0.4%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 316.29 us (94.5%)
LB move op cnt : 0
LB apply : 4.11 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (68.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5698417772095254
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.996350184953061e-05,-1.1566071801480967e-07,-1.0368199108123641e-20)
sum a = (4.3795615765294e-06,1.4440053328642225e-08,-9.785485159169923e-19)
sum e = 0.010382937727573078
sum de = 1.3469893024460413e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.70e-03 |
| force | 6.25e-03 |
| divB_cleaning | 2.62e-03 |
+---------------+----------+
Info: cfl dt = 0.001698495637706302 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 | 9.0589e+04 | 12514 | 1 | 1.381e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.0341959313013 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.07113740014603928, dt = 0.001698495637706302 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.6%)
patch tree reduce : 1.26 us (0.4%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 330.16 us (94.8%)
LB move op cnt : 0
LB apply : 3.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (70.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5703212402109634
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.995614886313633e-05,-1.1550338017310116e-07,-1.1802028140848051e-20)
sum a = (4.282134546206733e-06,1.3984988328153265e-07,7.383985185520504e-19)
sum e = 0.01037955552317064
sum de = 1.3921409462736305e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.73e-03 |
| force | 6.15e-03 |
| divB_cleaning | 2.59e-03 |
+---------------+----------+
Info: cfl dt = 0.0017297267362041343 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 | 9.0750e+04 | 12514 | 1 | 1.379e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.342429264902854 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.07283589578374558, dt = 0.0017297267362041343 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.7%)
patch tree reduce : 1.26 us (0.4%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 304.05 us (94.4%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (65.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5691225827073674
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.994882468021678e-05,-1.1515497406731826e-07,-9.051913523685054e-21)
sum a = (4.17897915971949e-06,2.2477555407331583e-07,1.5350171677269972e-18)
sum e = 0.010375859116172375
sum de = 1.460031450178829e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.76e-03 |
| force | 6.03e-03 |
| divB_cleaning | 2.56e-03 |
+---------------+----------+
Info: cfl dt = 0.0017612557847548778 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 | 8.5981e+04 | 12514 | 1 | 1.455e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.7843440485967 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.07456562251994972, dt = 0.00043437748005029087 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.7%)
patch tree reduce : 1.38 us (0.4%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 312.39 us (94.5%)
LB move op cnt : 0
LB apply : 3.90 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (67.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5703212402109643
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9947098641095184e-05,-1.149838875259489e-07,-7.686813797440971e-21)
sum a = (4.160489397933863e-06,2.4454154760433423e-07,-1.1496063361670273e-18)
sum e = 0.010374518479736793
sum de = 1.4496320648865442e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.77e-03 |
| force | 6.02e-03 |
| divB_cleaning | 2.56e-03 |
+---------------+----------+
Info: cfl dt = 0.0017684114535446796 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 | 5.7947e+04 | 12514 | 1 | 2.160e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.241123378901964 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 51 [SPH][rank=0]
Info: time since start : 29.345632703000003 (s) [SPH][rank=0]
Info: dump to _to_trash/orztang_00003.vtk [VTK Dump][rank=0]
- took 2.22 ms, bandwidth = 315.83 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 786.98 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 792.06 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/rho_slice_0000003.npy
Saving metadata to _to_trash/plots/rho_slice_0000003.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 813.48 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/vy_slice_0000003.npy
Saving metadata to _to_trash/plots/vy_slice_0000003.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00568847 s
Info: compute_slice took 767.02 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/By_slice_0000003.npy
Saving metadata to _to_trash/plots/By_slice_0000003.json
Info: evolve_until (target_time = 0.10s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.07500000000000001, dt = 0.0017684114535446796 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.93 us (2.5%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 341.55 us (93.7%)
LB move op cnt : 0
LB apply : 3.90 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5772734537318196
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9939745199759437e-05,-1.1454714450056666e-07,-1.031668354019506e-20)
sum a = (4.061187251975536e-06,2.6568202504704e-07,9.152783518643751e-20)
sum e = 0.010370734189348519
sum de = 1.5814621027762603e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.80e-03 |
| force | 5.91e-03 |
| divB_cleaning | 2.53e-03 |
+---------------+----------+
Info: cfl dt = 0.001801637757990647 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 | 9.0070e+04 | 12514 | 1 | 1.389e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.82166303265094 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0767684114535447, dt = 0.001801637757990647 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.79 us (1.4%)
patch tree reduce : 1.12 us (0.3%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 335.97 us (95.2%)
LB move op cnt : 0
LB apply : 3.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (70.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5801502317404497
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9932516214990236e-05,-1.140497892026171e-07,-9.068750319056836e-21)
sum a = (3.9823444324314635e-06,2.3237276221159761e-07,5.887631331057993e-19)
sum e = 0.010366206838083225
sum de = 1.704106508877328e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.80e-03 |
| force | 5.84e-03 |
| divB_cleaning | 2.50e-03 |
+---------------+----------+
Info: cfl dt = 0.0017970137863251524 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 | 9.1065e+04 | 12514 | 1 | 1.374e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.19837889935712 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.07857004921153535, dt = 0.0017970137863251524 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.7%)
patch tree reduce : 1.23 us (0.4%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 295.60 us (94.3%)
LB move op cnt : 0
LB apply : 3.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (64.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5789515742368554
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9925430910243553e-05,-1.1366221775833374e-07,-7.502928349481266e-21)
sum a = (3.909228545267066e-06,1.612056891092736e-07,-8.019260091488573e-19)
sum e = 0.01036135458111321
sum de = 1.8510325983828863e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.78e-03 |
| force | 5.76e-03 |
| divB_cleaning | 2.47e-03 |
+---------------+----------+
Info: cfl dt = 0.0017806094142012515 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 | 8.9531e+04 | 12514 | 1 | 1.398e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.283967121769166 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0803670629978605, dt = 0.0017806094142012515 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.4%)
patch tree reduce : 1.23 us (0.3%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.2%)
LB compute : 393.21 us (95.4%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (71.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.577033722231101
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.991853579622235e-05,-1.1343911749546555e-07,-1.0215160177057756e-20)
sum a = (3.820689635018657e-06,5.2652996924401976e-08,6.258181554691014e-19)
sum e = 0.010356230450220475
sum de = 2.0168931313919783e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.82e-03 |
| force | 5.69e-03 |
| divB_cleaning | 2.45e-03 |
+---------------+----------+
Info: cfl dt = 0.0018166035197378504 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 | 8.7988e+04 | 12514 | 1 | 1.422e-01 | 0.0% | 1.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.07111557708728 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.08214767241206175, dt = 0.0018166035197378504 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.6%)
patch tree reduce : 1.14 us (0.4%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 303.72 us (94.4%)
LB move op cnt : 0
LB apply : 3.82 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (66.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5851845932555535
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9911673944591868e-05,-1.1344011284986586e-07,-7.791918120787943e-21)
sum a = (3.7096501568175603e-06,-7.284716297119769e-08,-9.45482054988629e-19)
sum e = 0.010350715351341713
sum de = 2.204504794590492e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.81e-03 |
| force | 5.62e-03 |
| divB_cleaning | 2.42e-03 |
+---------------+----------+
Info: cfl dt = 0.0018108838379656466 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 | 5.9891e+04 | 12514 | 1 | 2.089e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.29864207679596 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0839642759317996, dt = 0.0018108838379656466 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.4%)
patch tree reduce : 1.35 us (0.4%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 362.88 us (95.2%)
LB move op cnt : 0
LB apply : 3.64 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (69.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5904586862713765
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9905057056431984e-05,-1.1368602261594844e-07,-1.0927457139465388e-20)
sum a = (3.5634879922185285e-06,-2.0884930244302042e-07,-5.330680191977633e-19)
sum e = 0.010344882140715382
sum de = 2.3997359406880824e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.85e-03 |
| force | 5.59e-03 |
| divB_cleaning | 2.40e-03 |
+---------------+----------+
Info: cfl dt = 0.001849481219958315 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 | 9.0614e+04 | 12514 | 1 | 1.381e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.20570899202639 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.08577515976976524, dt = 0.001849481219958315 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.12 us (1.7%)
patch tree reduce : 1.27 us (0.4%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 290.48 us (94.2%)
LB move op cnt : 0
LB apply : 3.93 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (65.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.58926002876778
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9898598793663516e-05,-1.1419542751663786e-07,-1.1566124534053145e-20)
sum a = (3.37366389711627e-06,-3.485803062801548e-07,-9.401425291966948e-19)
sum e = 0.010338633460673595
sum de = 2.6077078345157172e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.89e-03 |
| force | 5.53e-03 |
| divB_cleaning | 2.37e-03 |
+---------------+----------+
Info: cfl dt = 0.0018905920125206585 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 | 9.0380e+04 | 12514 | 1 | 1.385e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.08695745829685 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.08762464098972356, dt = 0.0018905920125206585 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.7%)
patch tree reduce : 1.08 us (0.4%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.3%)
LB compute : 288.61 us (94.5%)
LB move op cnt : 0
LB apply : 3.14 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (61.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.588061371264184
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.989239610969621e-05,-1.149836655927579e-07,-1.3677772007692742e-20)
sum a = (3.1644837020162003e-06,-4.953637670238118e-07,-1.5086050104022869e-18)
sum e = 0.01033192631951566
sum de = 2.824701793420763e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.89e-03 |
| force | 5.46e-03 |
| divB_cleaning | 2.35e-03 |
+---------------+----------+
Info: cfl dt = 0.0018905315319663228 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 | 9.0300e+04 | 12514 | 1 | 1.386e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.11229786666649 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.08951523300224422, dt = 0.0018905315319663228 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
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 : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 298.71 us (94.4%)
LB move op cnt : 0
LB apply : 3.65 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (63.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.589020297267061
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.988661129067828e-05,-1.1605892023320442e-07,-1.7073075921755187e-20)
sum a = (2.9433994734344772e-06,-6.443364646338808e-07,-1.7161268061094383e-19)
sum e = 0.010324879655193311
sum de = 3.0439976409590657e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.93e-03 |
| force | 5.44e-03 |
| divB_cleaning | 2.33e-03 |
+---------------+----------+
Info: cfl dt = 0.0019335799226131247 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 | 9.0143e+04 | 12514 | 1 | 1.388e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.025420566008634 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.09140576453421054, dt = 0.0019335799226131247 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.5%)
patch tree reduce : 1.10 us (0.3%)
gen split merge : 672.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 337.81 us (95.2%)
LB move op cnt : 0
LB apply : 3.31 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (70.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.585903787757711
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9881128975904723e-05,-1.1744561507618979e-07,-1.605488956880577e-20)
sum a = (2.6935252069911847e-06,-7.954696295985321e-07,-3.214812682378667e-19)
sum e = 0.010317388187385205
sum de = 3.27394427179571e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.95e-03 |
| force | 5.40e-03 |
| divB_cleaning | 2.32e-03 |
+---------------+----------+
Info: cfl dt = 0.001949701580041662 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 | 8.6444e+04 | 12514 | 1 | 1.448e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.084393328829364 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.09333934445682367, dt = 0.001949701580041662 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.7%)
patch tree reduce : 1.53 us (0.5%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 302.67 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.92 us (63.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5911778807735333
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.987611898148527e-05,-1.1914265749459136e-07,-1.6851119212618992e-20)
sum a = (2.4505169281371788e-06,-9.417603883626229e-07,-5.846459083987658e-19)
sum e = 0.010309513776617379
sum de = 3.511721874477485e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.95e-03 |
| force | 5.35e-03 |
| divB_cleaning | 2.30e-03 |
+---------------+----------+
Info: cfl dt = 0.0019480547959991395 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 | 8.0075e+04 | 12514 | 1 | 1.563e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.912836871918664 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.09528904603686533, dt = 0.0019480547959991395 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.8%)
patch tree reduce : 1.15 us (0.4%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 300.49 us (94.2%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (68.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.592856001278568
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9871582137043313e-05,-1.211198699993041e-07,-1.8247568046663518e-20)
sum a = (2.2370171545474002e-06,-1.0604908125694473e-06,-1.0677443292967116e-18)
sum e = 0.01030134747395757
sum de = 3.7558113588452157e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.95e-03 |
| force | 5.34e-03 |
| divB_cleaning | 2.29e-03 |
+---------------+----------+
Info: cfl dt = 0.0019508996257033427 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 | 8.8205e+04 | 12514 | 1 | 1.419e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.43097904592212 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.09723710083286448, dt = 0.0019508996257033427 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.7%)
patch tree reduce : 1.49 us (0.5%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.36 us (0.4%)
LB compute : 298.63 us (94.2%)
LB move op cnt : 0
LB apply : 3.28 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (67.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.591897075275692
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9867425895742885e-05,-1.233044278145488e-07,-2.0774092534243804e-20)
sum a = (2.048898564783988e-06,-1.1659592516259832e-06,1.384223812831893e-18)
sum e = 0.010292904416929852
sum de = 4.012143200452432e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.96e-03 |
| force | 5.32e-03 |
| divB_cleaning | 2.28e-03 |
+---------------+----------+
Info: cfl dt = 0.001955513545417039 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 | 7.5808e+04 | 12514 | 1 | 1.651e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.54564892160067 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.09918800045856782, dt = 0.0008119995414321846 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.8%)
patch tree reduce : 1.23 us (0.4%)
gen split merge : 662.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 282.12 us (94.2%)
LB move op cnt : 0
LB apply : 3.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (65.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5938149272814455
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9865945691291166e-05,-1.243540653615003e-07,-1.7249171210662276e-20)
sum a = (1.986433467808911e-06,-1.1919346943754243e-06,-1.277851452627518e-18)
sum e = 0.010288748655801181
sum de = 4.093213122091198e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.96e-03 |
| force | 5.31e-03 |
| divB_cleaning | 2.28e-03 |
+---------------+----------+
Info: cfl dt = 0.001962366128436113 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 | 8.2523e+04 | 12514 | 1 | 1.516e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.27681546483041 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 65 [SPH][rank=0]
Info: time since start : 34.724978876 (s) [SPH][rank=0]
Info: dump to _to_trash/orztang_00004.vtk [VTK Dump][rank=0]
- took 2.35 ms, bandwidth = 297.75 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 791.19 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 779.40 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/rho_slice_0000004.npy
Saving metadata to _to_trash/plots/rho_slice_0000004.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 790.24 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/vy_slice_0000004.npy
Saving metadata to _to_trash/plots/vy_slice_0000004.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.007337262000000001 s
Info: compute_slice took 788.10 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/By_slice_0000004.npy
Saving metadata to _to_trash/plots/By_slice_0000004.json
Info: evolve_until (target_time = 0.12s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.1, dt = 0.001962366128436113 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.45 us (2.7%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 329.49 us (93.0%)
LB move op cnt : 0
LB apply : 4.64 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (70.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.596931436790795
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9862072942352415e-05,-1.2670362365605624e-07,-2.0841439715730925e-20)
sum a = (1.8284141086901697e-06,-1.2560235410656754e-06,-1.1530159128775395e-18)
sum e = 0.010280477483294118
sum de = 4.4161413907258836e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.95e-03 |
| force | 5.26e-03 |
| divB_cleaning | 2.27e-03 |
+---------------+----------+
Info: cfl dt = 0.0019459304695907688 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 | 8.9665e+04 | 12514 | 1 | 1.396e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.618707866867304 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.10196236612843612, dt = 0.0019459304695907688 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.60 us (1.5%)
patch tree reduce : 832.00 ns (0.3%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 792.00 ns (0.3%)
LB compute : 290.81 us (95.1%)
LB move op cnt : 0
LB apply : 3.17 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (60.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.596691705290076
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.985867002154613e-05,-1.2921064102584875e-07,-2.3032736068595468e-20)
sum a = (1.688037687900048e-06,-1.2531537131256472e-06,-6.168117264224655e-19)
sum e = 0.01027148676270582
sum de = 4.726856719773539e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.94e-03 |
| force | 5.26e-03 |
| divB_cleaning | 2.26e-03 |
+---------------+----------+
Info: cfl dt = 0.001944416352853797 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 | 9.0045e+04 | 12514 | 1 | 1.390e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.407486157120616 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.10390829659802689, dt = 0.001944416352853797 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.16 us (1.4%)
patch tree reduce : 822.00 ns (0.3%)
gen split merge : 652.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 751.00 ns (0.3%)
LB compute : 272.84 us (95.1%)
LB move op cnt : 0
LB apply : 3.31 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (65.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.594054658782165
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9855524354838994e-05,-1.3164450135599866e-07,-2.3792841990995356e-20)
sum a = (1.577511459096936e-06,-1.214451941960858e-06,9.864452242418106e-19)
sum e = 0.010262318181806842
sum de = 5.0745556092969974e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.94e-03 |
| force | 5.25e-03 |
| divB_cleaning | 2.26e-03 |
+---------------+----------+
Info: cfl dt = 0.0019405247025612474 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 | 8.9885e+04 | 12514 | 1 | 1.392e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.278793980725936 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.10585271295088068, dt = 0.0019405247025612474 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.83 us (1.7%)
patch tree reduce : 1.16 us (0.4%)
gen split merge : 811.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 272.40 us (94.3%)
LB move op cnt : 0
LB apply : 3.62 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6000479463001436
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.985257060938722e-05,-1.3396354917112143e-07,-2.0280736735532646e-20)
sum a = (1.5067870982812119e-06,-1.142426374133967e-06,2.1874364547016985e-19)
sum e = 0.010253000361416817
sum de = 5.457500729600958e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.94e-03 |
| force | 5.21e-03 |
| divB_cleaning | 2.25e-03 |
+---------------+----------+
Info: cfl dt = 0.0019359284646876733 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 | 5.9310e+04 | 12514 | 1 | 2.110e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.10942580063258 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.10779323765344193, dt = 0.0019359284646876733 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.86 us (1.3%)
patch tree reduce : 1.24 us (0.3%)
gen split merge : 682.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 345.29 us (95.3%)
LB move op cnt : 0
LB apply : 3.32 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (69.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6029247243087745
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.98497221985383e-05,-1.3610532121093737e-07,-2.0563004353463274e-20)
sum a = (1.48062654901075e-06,-1.0286785097003646e-06,1.4778263432808592e-18)
sum e = 0.010243563570436424
sum de = 5.8760311560292566e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.92e-03 |
| force | 5.21e-03 |
| divB_cleaning | 2.25e-03 |
+---------------+----------+
Info: cfl dt = 0.0019240239999708383 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 | 6.1805e+04 | 12514 | 1 | 2.025e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.42066184512136 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.10972916611812959, dt = 0.0019240239999708383 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (1.9%)
patch tree reduce : 1.34 us (0.4%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.3%)
LB compute : 308.96 us (94.4%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (69.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6024452613073357
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9846898759998753e-05,-1.3797441948651714e-07,-1.6467391055414387e-20)
sum a = (1.491459809139589e-06,-8.864491899222098e-07,-4.746066449396891e-20)
sum e = 0.010234065750905356
sum de = 6.3266462174219e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.92e-03 |
| force | 5.21e-03 |
| divB_cleaning | 2.25e-03 |
+---------------+----------+
Info: cfl dt = 0.001915467401810751 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 | 8.5161e+04 | 12514 | 1 | 1.469e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.136396209235585 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.11165319011810043, dt = 0.001915467401810751 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.8%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.38 us (0.4%)
LB compute : 309.69 us (94.2%)
LB move op cnt : 0
LB apply : 3.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (65.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6014863353044593
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9844031495627065e-05,-1.395355577015861e-07,-1.7982451343421304e-20)
sum a = (1.5251729281719518e-06,-7.322209887760416e-07,1.2325941466681725e-19)
sum e = 0.010224525035180659
sum de = 6.805193036523384e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.91e-03 |
| force | 5.20e-03 |
| divB_cleaning | 2.24e-03 |
+---------------+----------+
Info: cfl dt = 0.0019062945510694216 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 | 8.4255e+04 | 12514 | 1 | 1.485e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.42775037945258 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.11356865751991119, dt = 0.0019062945510694216 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.7%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 288.51 us (94.1%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (63.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.598849288796546
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.984109177859436e-05,-1.4078367703730944e-07,-1.761279573160207e-20)
sum a = (1.5813355681954536e-06,-5.664288993874239e-07,-8.971046646809847e-19)
sum e = 0.010214968125994692
sum de = 7.307428090479878e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.89e-03 |
| force | 5.18e-03 |
| divB_cleaning | 2.24e-03 |
+---------------+----------+
Info: cfl dt = 0.0018902954467948307 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 | 8.1126e+04 | 12514 | 1 | 1.543e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.48957474859872 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1154749520709806, dt = 0.0018902954467948307 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.7%)
patch tree reduce : 1.35 us (0.4%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.32 us (0.4%)
LB compute : 303.67 us (94.4%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (67.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.598849288796546
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.983804905590272e-05,-1.416963707274953e-07,-2.0314473150139535e-20)
sum a = (1.6578021580915768e-06,-3.828587897291548e-07,1.2067971606131655e-18)
sum e = 0.010205450431137795
sum de = 7.825627808926585e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.88e-03 |
| force | 5.18e-03 |
| divB_cleaning | 2.23e-03 |
+---------------+----------+
Info: cfl dt = 0.0018784173052346829 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 | 6.4995e+04 | 12514 | 1 | 1.925e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.344161757707425 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.11736524751777544, dt = 0.0018784173052346829 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.6%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 332.61 us (94.4%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.601006872303019
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.983486273941697e-05,-1.4224203843337159e-07,-1.6091076114082432e-20)
sum a = (1.765631773053773e-06,-2.1847967885608146e-07,-1.2843811136863291e-18)
sum e = 0.010195983705099542
sum de = 8.35453962760264e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.88e-03 |
| force | 5.19e-03 |
| divB_cleaning | 2.23e-03 |
+---------------+----------+
Info: cfl dt = 0.0018834320378661629 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 | 6.6746e+04 | 12514 | 1 | 1.875e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.06791675993409 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.11924366482301012, dt = 0.0018834320378661629 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (2.0%)
patch tree reduce : 1.23 us (0.4%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 284.72 us (93.3%)
LB move op cnt : 0
LB apply : 3.85 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (70.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6062809653188417
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9831436017461086e-05,-1.4249914377713687e-07,-2.0817817943119773e-20)
sum a = (1.8956146451594544e-06,-5.6184570864849225e-08,-2.614116030786075e-19)
sum e = 0.010186515339393742
sum de = 8.89569677401151e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.85e-03 |
| force | 5.18e-03 |
| divB_cleaning | 2.23e-03 |
+---------------+----------+
Info: cfl dt = 0.001851048223932475 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 | 8.5190e+04 | 12514 | 1 | 1.469e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.15755143181584 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.12112709686087628, dt = 0.001851048223932475 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.5%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 330.74 us (94.7%)
LB move op cnt : 0
LB apply : 3.82 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (66.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.607479622822439
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9827804736386088e-05,-1.4245030822342714e-07,-2.029411821842141e-20)
sum a = (2.04620859168905e-06,1.0906156349270582e-07,-1.757733291723094e-18)
sum e = 0.010177216712597153
sum de = 9.432996367594522e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.86e-03 |
| force | 5.16e-03 |
| divB_cleaning | 2.22e-03 |
+---------------+----------+
Info: cfl dt = 0.0018626325335525777 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 | 8.6983e+04 | 12514 | 1 | 1.439e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.31915052738764 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.12297814508480875, dt = 0.0018626325335525777 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (2.0%)
patch tree reduce : 1.46 us (0.5%)
gen split merge : 722.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 295.03 us (93.8%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.607959085823876
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9823854023363943e-05,-1.4209422732563547e-07,-2.494559705919236e-20)
sum a = (2.2229750666018183e-06,2.2905257103899174e-07,-1.8016074675074203e-19)
sum e = 0.010167945920038415
sum de = 9.981158861188261e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.84e-03 |
| force | 5.15e-03 |
| divB_cleaning | 2.22e-03 |
+---------------+----------+
Info: cfl dt = 0.0018402069061435502 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 | 8.8030e+04 | 12514 | 1 | 1.422e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.16959994126258 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.12484077761836133, dt = 0.00015922238163866564 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.7%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 321.16 us (94.3%)
LB move op cnt : 0
LB apply : 3.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (70.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.609637206328911
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9823335450486073e-05,-1.4194600745241786e-07,-2.345792797559625e-20)
sum a = (2.2492232016972388e-06,2.4754507094197277e-07,4.5578964139582477e-20)
sum e = 0.010166481157922552
sum de = 9.9703157453902e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.85e-03 |
| force | 5.16e-03 |
| divB_cleaning | 2.22e-03 |
+---------------+----------+
Info: cfl dt = 0.0018471407763883355 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 | 8.7506e+04 | 12514 | 1 | 1.430e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.008201882571916 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 79 [SPH][rank=0]
Info: time since start : 40.258294874 (s) [SPH][rank=0]
Info: dump to _to_trash/orztang_00005.vtk [VTK Dump][rank=0]
- took 2.48 ms, bandwidth = 282.77 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 818.83 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 807.59 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/rho_slice_0000005.npy
Saving metadata to _to_trash/plots/rho_slice_0000005.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 843.39 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/vy_slice_0000005.npy
Saving metadata to _to_trash/plots/vy_slice_0000005.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.006900238 s
Info: compute_slice took 795.80 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/By_slice_0000005.npy
Saving metadata to _to_trash/plots/By_slice_0000005.json
Info: evolve_until (target_time = 0.15s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.125, dt = 0.0018471407763883355 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.33 us (2.5%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 348.59 us (93.8%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (68.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6108358638325067
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.981917872894977e-05,-1.4148728464805117e-07,-2.3368466794217833e-20)
sum a = (2.448824898991423e-06,2.966628575667639e-07,2.6453168742690634e-19)
sum e = 0.010158010368371504
sum de = 0.00010573883157138136
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.82e-03 |
| force | 5.15e-03 |
| divB_cleaning | 2.22e-03 |
+---------------+----------+
Info: cfl dt = 0.0018162363472258745 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 | 8.7802e+04 | 12514 | 1 | 1.425e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.65620736884713 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.12684714077638834, dt = 0.0018162363472258745 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.8%)
patch tree reduce : 1.26 us (0.4%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 297.03 us (94.3%)
LB move op cnt : 0
LB apply : 3.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (67.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6089180118267543
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9814546737943036e-05,-1.4090311104962912e-07,-2.2654787706816998e-20)
sum a = (2.691510411335589e-06,3.1152704993268304e-07,-8.310843231873411e-19)
sum e = 0.010149122206483898
sum de = 0.00011106614621257366
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.81e-03 |
| force | 5.14e-03 |
| divB_cleaning | 2.21e-03 |
+---------------+----------+
Info: cfl dt = 0.0018060203371259094 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 | 8.8420e+04 | 12514 | 1 | 1.415e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.19849225961282 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.12866337712361423, dt = 0.0018060203371259094 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.7%)
patch tree reduce : 1.29 us (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 315.75 us (94.5%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (67.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.611794789835385
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9809465428278288e-05,-1.403269884193908e-07,-2.5184830330743628e-20)
sum a = (2.92995527678439e-06,2.821256086432786e-07,-2.420887920463205e-18)
sum e = 0.01014039594897145
sum de = 0.00011640600489739504
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.79e-03 |
| force | 5.11e-03 |
| divB_cleaning | 2.21e-03 |
+---------------+----------+
Info: cfl dt = 0.0017869358192204295 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 | 7.1435e+04 | 12514 | 1 | 1.752e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.11436447563092 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.13046939746074013, dt = 0.0017869358192204295 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.5%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 354.54 us (95.1%)
LB move op cnt : 0
LB apply : 3.45 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (69.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.611794789835385
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9804014468107443e-05,-1.3984939786395651e-07,-3.096764130231689e-20)
sum a = (3.160047121398987e-06,2.4419591644686513e-07,1.6128423644353386e-18)
sum e = 0.010131876924328279
sum de = 0.00012170861385911089
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.78e-03 |
| force | 5.12e-03 |
| divB_cleaning | 2.21e-03 |
+---------------+----------+
Info: cfl dt = 0.0017756039665172442 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 | 6.9283e+04 | 12514 | 1 | 1.806e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.615768180399925 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.13225633327996056, dt = 0.0017756039665172442 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.7%)
patch tree reduce : 1.50 us (0.5%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 302.80 us (94.1%)
LB move op cnt : 0
LB apply : 3.75 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.613952373341857
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.979819789622495e-05,-1.3944969158912408e-07,-2.447517197059575e-20)
sum a = (3.384455651945184e-06,1.9136034301933974e-07,-5.477356322165704e-19)
sum e = 0.01012354984060528
sum de = 0.00012701800875789207
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.75e-03 |
| force | 5.10e-03 |
| divB_cleaning | 2.21e-03 |
+---------------+----------+
Info: cfl dt = 0.0017525334280106975 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 | 8.0153e+04 | 12514 | 1 | 1.561e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.94222764969408 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1340319372464778, dt = 0.0017525334280106975 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.7%)
patch tree reduce : 1.22 us (0.4%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 312.65 us (94.5%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (69.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.613712641841138
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9792067294220956e-05,-1.3916123371898063e-07,-2.7370095592728723e-20)
sum a = (3.5595053433371725e-06,1.3734220102071845e-07,-7.452659207001103e-19)
sum e = 0.01011546388965714
sum de = 0.00013228707406951024
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.74e-03 |
| force | 5.10e-03 |
| divB_cleaning | 2.21e-03 |
+---------------+----------+
Info: cfl dt = 0.0017382200197562266 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 | 6.3175e+04 | 12514 | 1 | 1.981e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.850527828442605 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1357844706744885, dt = 0.0017382200197562266 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.9%)
patch tree reduce : 1.25 us (0.4%)
gen split merge : 652.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 287.81 us (94.1%)
LB move op cnt : 0
LB apply : 3.23 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (66.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6163496883490494
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9785726700554913e-05,-1.3896983705447668e-07,-2.8821578131048176e-20)
sum a = (3.672273400340114e-06,8.320160090385203e-08,-8.897266301717986e-19)
sum e = 0.010107599369964259
sum de = 0.00013756064849976455
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.73e-03 |
| force | 5.08e-03 |
| divB_cleaning | 2.21e-03 |
+---------------+----------+
Info: cfl dt = 0.0017331025411578167 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 | 8.7824e+04 | 12514 | 1 | 1.425e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.916275854681594 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.13752269069424475, dt = 0.0017331025411578167 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.9%)
patch tree reduce : 1.23 us (0.4%)
gen split merge : 772.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 285.86 us (94.1%)
LB move op cnt : 0
LB apply : 3.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.617068882851206
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.977926426634581e-05,-1.388726942861196e-07,-3.05595374861412e-20)
sum a = (3.739649173427429e-06,3.5631774366824365e-08,-7.180053899250248e-19)
sum e = 0.010099922450236047
sum de = 0.00014287247342441298
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.72e-03 |
| force | 5.07e-03 |
| divB_cleaning | 2.21e-03 |
+---------------+----------+
Info: cfl dt = 0.0017185062023198005 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 | 8.6804e+04 | 12514 | 1 | 1.442e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.278114076019136 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.13925579323540258, dt = 0.0017185062023198005 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.8%)
patch tree reduce : 1.36 us (0.4%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 290.44 us (93.9%)
LB move op cnt : 0
LB apply : 3.76 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.620185392360556
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9772779271484818e-05,-1.388526825551484e-07,-3.162402502636301e-20)
sum a = (3.765520723929987e-06,-1.281626034802101e-08,-5.018269684422449e-19)
sum e = 0.010092466846284431
sum de = 0.00014819605363246616
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.71e-03 |
| force | 5.03e-03 |
| divB_cleaning | 2.22e-03 |
+---------------+----------+
Info: cfl dt = 0.0017089408205101984 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 | 6.9653e+04 | 12514 | 1 | 1.797e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.434591148821845 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.14097429943772238, dt = 0.0017089408205101984 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.9%)
patch tree reduce : 1.36 us (0.5%)
gen split merge : 642.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 269.65 us (93.9%)
LB move op cnt : 0
LB apply : 3.14 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.623301901869905
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9766321989199277e-05,-1.389162139090483e-07,-3.230252275030043e-20)
sum a = (3.7452509284410177e-06,-5.928905050202478e-08,-1.1932553512251878e-18)
sum e = 0.010085224246426426
sum de = 0.00015357555259982018
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.64e-03 |
| force | 5.03e-03 |
| divB_cleaning | 2.22e-03 |
+---------------+----------+
Info: cfl dt = 0.0016370005035784578 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 | 7.4332e+04 | 12514 | 1 | 1.684e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.54322607266116 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1426832402582326, dt = 0.0016370005035784578 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.7%)
patch tree reduce : 1.27 us (0.4%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 306.05 us (94.5%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (64.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.623301901869905
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.976020833148381e-05,-1.3905297973837683e-07,-3.4876793374009643e-20)
sum a = (3.6843004926955404e-06,-1.0101520458714624e-07,3.8364171156866635e-19)
sum e = 0.010078402221843266
sum de = 0.000158778794328003
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.61e-03 |
| force | 5.01e-03 |
| divB_cleaning | 2.22e-03 |
+---------------+----------+
Info: cfl dt = 0.0016080424885129697 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 | 8.7389e+04 | 12514 | 1 | 1.432e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.15418768579294 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.14432024076181105, dt = 0.0016080424885129697 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.5%)
patch tree reduce : 1.54 us (0.4%)
gen split merge : 632.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 333.91 us (94.9%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (66.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6233019018699046
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.975433370769798e-05,-1.392495693460761e-07,-3.295589092890683e-20)
sum a = (3.60403008983696e-06,-1.3700186978230203e-07,-4.831466696249814e-19)
sum e = 0.010071888450009555
sum de = 0.0001640059034521488
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.57e-03 |
| force | 5.00e-03 |
| divB_cleaning | 2.22e-03 |
+---------------+----------+
Info: cfl dt = 0.0015680581964616115 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 | 6.6370e+04 | 12514 | 1 | 1.885e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.70253838465929 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.145928283250324, dt = 0.0015680581964616115 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.8%)
patch tree reduce : 1.26 us (0.4%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 299.53 us (94.5%)
LB move op cnt : 0
LB apply : 3.14 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6259389483778173
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9748746917884765e-05,-1.394933302953371e-07,-3.4491306148631865e-20)
sum a = (3.5436373934638707e-06,-1.7583417404747366e-07,5.938292494445321e-19)
sum e = 0.01006568274578414
sum de = 0.000169181055426569
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.51e-03 |
| force | 5.01e-03 |
| divB_cleaning | 2.23e-03 |
+---------------+----------+
Info: cfl dt = 0.0015080167017400754 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 | 8.7446e+04 | 12514 | 1 | 1.431e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.44643232260937 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1474963414467856, dt = 0.0015080167017400754 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.22 us (1.8%)
patch tree reduce : 1.26 us (0.4%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 332.71 us (94.6%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (68.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6271376058814124
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9743450403141548e-05,-1.397889368231076e-07,-3.2707862316489703e-20)
sum a = (3.5076950269958277e-06,-2.269967389439011e-07,6.634843283748537e-19)
sum e = 0.010059844520489566
sum de = 0.000174215396046835
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.51e-03 |
| force | 4.97e-03 |
| divB_cleaning | 2.23e-03 |
+---------------+----------+
Info: cfl dt = 0.001511911273741425 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 | 8.7657e+04 | 12514 | 1 | 1.428e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.02746909433264 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1490043581485257, dt = 0.0009956418514742993 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.9%)
patch tree reduce : 1.32 us (0.4%)
gen split merge : 711.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 290.26 us (94.2%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (65.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.629055457887167
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.973998509601516e-05,-1.4005352127722706e-07,-3.198086457006343e-20)
sum a = (3.486073885548157e-06,-2.5473748496361443e-07,-7.201926655506364e-19)
sum e = 0.01005579260813781
sum de = 0.0001772509938791317
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.53e-03 |
| force | 4.97e-03 |
| divB_cleaning | 2.23e-03 |
+---------------+----------+
Info: cfl dt = 0.0015283843219912742 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 | 6.9621e+04 | 12514 | 1 | 1.797e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.94106748794496 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 94 [SPH][rank=0]
Info: time since start : 46.096281449 (s) [SPH][rank=0]
Info: dump to _to_trash/orztang_00006.vtk [VTK Dump][rank=0]
- took 2.79 ms, bandwidth = 251.38 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 841.76 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 843.76 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/rho_slice_0000006.npy
Saving metadata to _to_trash/plots/rho_slice_0000006.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 839.91 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/vy_slice_0000006.npy
Saving metadata to _to_trash/plots/vy_slice_0000006.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.006821983 s
Info: compute_slice took 837.75 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/By_slice_0000006.npy
Saving metadata to _to_trash/plots/By_slice_0000006.json
Info: evolve_until (target_time = 0.17s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.15, dt = 0.0015283843219912742 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.96 us (2.5%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.3%)
LB compute : 337.00 us (93.6%)
LB move op cnt : 0
LB apply : 3.98 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6302541153907604
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9734667798799963e-05,-1.4045666798013164e-07,-3.379044312934985e-20)
sum a = (3.4412797183483147e-06,-3.0471230121319826e-07,8.023441647831653e-19)
sum e = 0.010050471599914254
sum de = 0.00018290414592019762
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.48e-03 |
| force | 4.97e-03 |
| divB_cleaning | 2.24e-03 |
+---------------+----------+
Info: cfl dt = 0.0014784073253910988 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 | 8.6267e+04 | 12514 | 1 | 1.451e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.929911041943434 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.15152838432199126, dt = 0.0014784073253910988 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.7%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 313.76 us (94.2%)
LB move op cnt : 0
LB apply : 3.30 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (65.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6328911618986726
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9729614417006842e-05,-1.4094534724028637e-07,-3.1338867510719313e-20)
sum a = (3.4161137240792844e-06,-3.3164594209683766e-07,1.2389629786368652e-18)
sum e = 0.01004513657802359
sum de = 0.00018788962855970196
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.45e-03 |
| force | 4.95e-03 |
| divB_cleaning | 2.24e-03 |
+---------------+----------+
Info: cfl dt = 0.0014515824660559712 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 | 7.1259e+04 | 12514 | 1 | 1.756e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.30681294437457 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.15300679164738235, dt = 0.0014515824660559712 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.6%)
patch tree reduce : 1.34 us (0.4%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 325.59 us (94.8%)
LB move op cnt : 0
LB apply : 3.24 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (64.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.636487134409461
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.972467424901801e-05,-1.4144666812129308e-07,-2.9274946540751355e-20)
sum a = (3.4028499248288765e-06,-3.4872527356862103e-07,-9.528158614980326e-19)
sum e = 0.010040043166194638
sum de = 0.00019285439312110382
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.45e-03 |
| force | 4.94e-03 |
| divB_cleaning | 2.24e-03 |
+---------------+----------+
Info: cfl dt = 0.001454177126038032 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 | 7.5447e+04 | 12514 | 1 | 1.659e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.50591640672072 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.15445837411343832, dt = 0.001454177126038032 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.6%)
patch tree reduce : 1.35 us (0.4%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 349.31 us (94.9%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.639603643918811
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9719735529243234e-05,-1.4196617246641073e-07,-3.2269603045916797e-20)
sum a = (3.404344646734184e-06,-3.379000394244055e-07,8.594706575932561e-19)
sum e = 0.010035095701724521
sum de = 0.00019784314255106943
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.47e-03 |
| force | 4.96e-03 |
| divB_cleaning | 2.25e-03 |
+---------------+----------+
Info: cfl dt = 0.001470990530411913 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 | 6.5268e+04 | 12514 | 1 | 1.917e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.303841143174946 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.15591255123947637, dt = 0.001470990530411913 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.6%)
patch tree reduce : 1.26 us (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 326.99 us (94.9%)
LB move op cnt : 0
LB apply : 3.10 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (66.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.64272015342816
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.971472668371045e-05,-1.4245534932103563e-07,-2.96864271395809e-20)
sum a = (3.4042075060585082e-06,-3.088726776712991e-07,-1.2396706266333865e-18)
sum e = 0.010030237465987463
sum de = 0.00020282242495088784
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.43e-03 |
| force | 4.94e-03 |
| divB_cleaning | 2.25e-03 |
+---------------+----------+
Info: cfl dt = 0.0014260978290481735 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 | 8.1148e+04 | 12514 | 1 | 1.542e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.33964173102924 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.15738354176988828, dt = 0.0014260978290481735 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.5%)
patch tree reduce : 1.33 us (0.4%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 349.64 us (95.1%)
LB move op cnt : 0
LB apply : 3.45 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (67.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.641761227425284
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.970987205164274e-05,-1.4287448248970023e-07,-3.2984789906037496e-20)
sum a = (3.4007048849240183e-06,-2.5973233643660743e-07,3.4854880410481e-19)
sum e = 0.010025611230193243
sum de = 0.00020757699136295536
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.44e-03 |
| force | 4.93e-03 |
| divB_cleaning | 2.26e-03 |
+---------------+----------+
Info: cfl dt = 0.0014389030719044998 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 | 6.2940e+04 | 12514 | 1 | 1.988e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.821553181459866 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.15880963959893646, dt = 0.0014389030719044998 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.6%)
patch tree reduce : 1.26 us (0.4%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 315.31 us (94.6%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (65.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6415214959245654
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9704981264477317e-05,-1.4321317267816146e-07,-3.142751198187447e-20)
sum a = (3.386530776771039e-06,-1.960264223571595e-07,-3.0686190394609516e-20)
sum e = 0.010021113122744908
sum de = 0.0002124920510945281
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.40e-03 |
| force | 4.94e-03 |
| divB_cleaning | 2.26e-03 |
+---------------+----------+
Info: cfl dt = 0.0013967885349904945 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 | 7.0892e+04 | 12514 | 1 | 1.765e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.344994006124242 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.16024854267084096, dt = 0.0013967885349904945 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.6%)
patch tree reduce : 1.24 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 327.02 us (94.8%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (66.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6436790794310374
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9700261194698826e-05,-1.4344114681983815e-07,-3.179641370733378e-20)
sum a = (3.396178265155858e-06,-1.2033869363080127e-07,1.923515917817242e-18)
sum e = 0.010016827458850784
sum de = 0.0002172085468888583
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.41e-03 |
| force | 4.94e-03 |
| divB_cleaning | 2.26e-03 |
+---------------+----------+
Info: cfl dt = 0.001414869601743001 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 | 6.6750e+04 | 12514 | 1 | 1.875e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.821831859750983 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.16164533120583147, dt = 0.001414869601743001 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.7%)
patch tree reduce : 1.30 us (0.4%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 312.33 us (94.5%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (65.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6460763944382295
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9695449307558807e-05,-1.4355855050387664e-07,-2.769024600024586e-20)
sum a = (3.419660087002477e-06,-1.0558580854705524e-08,8.884842254506331e-19)
sum e = 0.010012651628209652
sum de = 0.00022202723312239348
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.44e-03 |
| force | 4.91e-03 |
| divB_cleaning | 2.26e-03 |
+---------------+----------+
Info: cfl dt = 0.0014428083503417533 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 | 6.2467e+04 | 12514 | 1 | 2.003e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.4258176994477 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.16306020080757447, dt = 0.0014428083503417533 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.6%)
patch tree reduce : 1.27 us (0.4%)
gen split merge : 632.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.3%)
LB compute : 317.48 us (94.7%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (66.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6467955889403862
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9690498781571983e-05,-1.4349612224041148e-07,-2.711779495760533e-20)
sum a = (3.4350103162782383e-06,1.372949636946109e-07,-4.933271510294823e-19)
sum e = 0.010008526263106277
sum de = 0.00022692014703351988
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.38e-03 |
| force | 4.92e-03 |
| divB_cleaning | 2.26e-03 |
+---------------+----------+
Info: cfl dt = 0.0013822460828741092 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 | 8.2137e+04 | 12514 | 1 | 1.524e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.09208087233125 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1645030091579162, dt = 0.0013822460828741092 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.4%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 351.61 us (95.1%)
LB move op cnt : 0
LB apply : 3.43 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (69.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6467955889403876
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9685739678298506e-05,-1.4319968465010616e-07,-2.865471795005023e-20)
sum a = (3.453974343511133e-06,3.0013296950120543e-07,-1.2202746383650957e-18)
sum e = 0.010004621717624795
sum de = 0.0002315029979363563
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.40e-03 |
| force | 4.94e-03 |
| divB_cleaning | 2.26e-03 |
+---------------+----------+
Info: cfl dt = 0.001396884897621297 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 | 8.6812e+04 | 12514 | 1 | 1.442e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.51987887080095 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1658852552407903, dt = 0.001396884897621297 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.9%)
patch tree reduce : 1.26 us (0.4%)
gen split merge : 712.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.3%)
LB compute : 282.35 us (94.3%)
LB move op cnt : 0
LB apply : 2.99 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (68.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6499120984497355
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9680901767224957e-05,-1.4266789233911602e-07,-3.0896273393576807e-20)
sum a = (3.4732558747676317e-06,4.809835878988599e-07,1.2019401220915867e-18)
sum e = 0.010000848705542239
sum de = 0.00023630301876413957
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.40e-03 |
| force | 4.91e-03 |
| divB_cleaning | 2.26e-03 |
+---------------+----------+
Info: cfl dt = 0.0014027573846675482 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 | 8.6849e+04 | 12514 | 1 | 1.441e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.9003656979745 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1672821401384116, dt = 0.0014027573846675482 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.02 us (1.5%)
patch tree reduce : 1.50 us (0.5%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 306.69 us (94.6%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (66.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6525491449576477
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9676016164857775e-05,-1.4186687531176906e-07,-2.751685213746186e-20)
sum a = (3.5033733363653855e-06,6.664847914446308e-07,6.192724115012785e-19)
sum e = 0.009997169663937683
sum de = 0.00024122444710658947
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.37e-03 |
| force | 4.87e-03 |
| divB_cleaning | 2.26e-03 |
+---------------+----------+
Info: cfl dt = 0.0013712116415543324 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 | 8.6074e+04 | 12514 | 1 | 1.454e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.73450429660147 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.16868489752307916, dt = 0.0013712116415543324 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.07 us (1.5%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 321.86 us (94.9%)
LB move op cnt : 0
LB apply : 3.13 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (65.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6556656544669974
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9671191174808462e-05,-1.408228770152488e-07,-2.7138903775683385e-20)
sum a = (3.5351873205701233e-06,8.664248611959474e-07,4.295101680704621e-19)
sum e = 0.009993654324862628
sum de = 0.0002461101213201024
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.40e-03 |
| force | 4.87e-03 |
| divB_cleaning | 2.26e-03 |
+---------------+----------+
Info: cfl dt = 0.0013976557845838291 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 | 8.1171e+04 | 12514 | 1 | 1.542e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.019366233204465 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.17005610916463348, dt = 0.0013976557845838291 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.6%)
patch tree reduce : 1.27 us (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 326.03 us (94.7%)
LB move op cnt : 0
LB apply : 3.87 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (66.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.655665654466998
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.966622838794741e-05,-1.3947483322061248e-07,-2.667953568703242e-20)
sum a = (3.559966057937971e-06,1.0718671510823032e-06,2.3329867812589394e-19)
sum e = 0.009990231351705514
sum de = 0.00025122852699091297
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.36e-03 |
| force | 4.91e-03 |
| divB_cleaning | 2.27e-03 |
+---------------+----------+
Info: cfl dt = 0.00135519447951265 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 | 5.9925e+04 | 12514 | 1 | 2.088e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.094338221249764 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.17145376494921732, dt = 0.00135519447951265 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.6%)
patch tree reduce : 1.27 us (0.4%)
gen split merge : 642.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 336.43 us (94.9%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (66.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6614192104842576
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.966138662552574e-05,-1.378786759706861e-07,-2.633073759783793e-20)
sum a = (3.5683469022757663e-06,1.25326792746923e-06,-6.902784547885956e-19)
sum e = 0.009986965493140213
sum de = 0.00025623063208791974
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.35e-03 |
| force | 4.87e-03 |
| divB_cleaning | 2.27e-03 |
+---------------+----------+
Info: cfl dt = 0.0013466614693695986 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 | 8.3468e+04 | 12514 | 1 | 1.499e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.54063584912748 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.17280895942872998, dt = 0.0013466614693695986 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.98 us (1.4%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 339.45 us (94.8%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.664535719993608
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9656575591406046e-05,-1.360680316775781e-07,-2.803653113490725e-20)
sum a = (3.5648454288910204e-06,1.419395975250182e-06,3.7180469053594486e-19)
sum e = 0.009983852631842484
sum de = 0.00026140546152534353
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.36e-03 |
| force | 4.85e-03 |
| divB_cleaning | 2.27e-03 |
+---------------+----------+
Info: cfl dt = 0.0013563759123602593 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 | 8.1358e+04 | 12514 | 1 | 1.538e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.518384187483896 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.17415562089809958, dt = 0.000844379101900411 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.9%)
patch tree reduce : 1.35 us (0.4%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 284.54 us (94.0%)
LB move op cnt : 0
LB apply : 3.18 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (65.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6686111555058343
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9653567868073938e-05,-1.347576642590102e-07,-2.7101712048593482e-20)
sum a = (3.547912208675189e-06,1.5151897787800876e-06,5.122406520274178e-20)
sum e = 0.009981614691835054
sum de = 0.0002641291456711365
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.37e-03 |
| force | 4.82e-03 |
| divB_cleaning | 2.27e-03 |
+---------------+----------+
Info: cfl dt = 0.0013688716503783215 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 | 6.5312e+04 | 12514 | 1 | 1.916e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.864763545408554 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 112 [SPH][rank=0]
Info: time since start : 52.649011777000005 (s) [SPH][rank=0]
Info: dump to _to_trash/orztang_00007.vtk [VTK Dump][rank=0]
- took 2.37 ms, bandwidth = 295.48 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 851.47 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 847.37 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/rho_slice_0000007.npy
Saving metadata to _to_trash/plots/rho_slice_0000007.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 852.33 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/vy_slice_0000007.npy
Saving metadata to _to_trash/plots/vy_slice_0000007.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.0036391310000000003 s
Info: compute_slice took 850.88 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/By_slice_0000007.npy
Saving metadata to _to_trash/plots/By_slice_0000007.json
Info: evolve_until (target_time = 0.20s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.175, dt = 0.0013688716503783215 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.07 us (2.5%)
patch tree reduce : 1.95 us (0.5%)
gen split merge : 1.17 us (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 336.38 us (93.5%)
LB move op cnt : 0
LB apply : 4.03 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6662138404986417
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9648718380662044e-05,-1.326431207832809e-07,-2.7055473685184412e-20)
sum a = (3.512799257639559e-06,1.6576231783835922e-06,1.3941097759651144e-18)
sum e = 0.009978990064660674
sum de = 0.00027029257869248585
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.35e-03 |
| force | 4.78e-03 |
| divB_cleaning | 2.27e-03 |
+---------------+----------+
Info: cfl dt = 0.0013514532400282719 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 | 8.6635e+04 | 12514 | 1 | 1.444e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.116428828930644 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.17636887165037832, dt = 0.0013514532400282719 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.8%)
patch tree reduce : 1.25 us (0.4%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 293.19 us (94.1%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (67.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6669330350007994
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.964399502928546e-05,-1.3030543404543994e-07,-2.4332436153115584e-20)
sum a = (3.429377092943771e-06,1.7261914455874704e-06,-1.1694848117056737e-18)
sum e = 0.009976144409057502
sum de = 0.000275731373638348
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.35e-03 |
| force | 4.79e-03 |
| divB_cleaning | 2.27e-03 |
+---------------+----------+
Info: cfl dt = 0.0013549604365369209 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 | 8.5912e+04 | 12514 | 1 | 1.457e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.40101503564366 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1777203248904066, dt = 0.0013549604365369209 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.5%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 342.69 us (94.7%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6678919610036766
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9639404729579847e-05,-1.2792017952673404e-07,-2.7714872954670255e-20)
sum a = (3.3148685977935514e-06,1.7809521203136706e-06,2.605351649520067e-16)
sum e = 0.009973412314161835
sum de = 0.0002814085433253022
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.36e-03 |
| force | 4.81e-03 |
| divB_cleaning | 2.28e-03 |
+---------------+----------+
Info: cfl dt = 0.0013646898850699896 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 | 8.5896e+04 | 12514 | 1 | 1.457e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.48164992101426 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.17907528532694353, dt = 0.0013646898850699896 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.6%)
patch tree reduce : 1.18 us (0.3%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 319.71 us (91.9%)
LB move op cnt : 0
LB apply : 12.46 us (3.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (68.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6671727665015195
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.963495853917456e-05,-1.2545263290874106e-07,5.05152109880445e-19)
sum a = (3.175208205635957e-06,1.8459497565482785e-06,1.6287783560733653e-15)
sum e = 0.009970776185318905
sum de = 0.0002872676756857632
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.35e-03 |
| force | 4.79e-03 |
| divB_cleaning | 2.28e-03 |
+---------------+----------+
Info: cfl dt = 0.0013482146317933047 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 | 8.6211e+04 | 12514 | 1 | 1.452e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.84561141604433 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.18043997521201352, dt = 0.0013482146317933047 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.9%)
patch tree reduce : 1.27 us (0.4%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 285.38 us (93.9%)
LB move op cnt : 0
LB apply : 3.64 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (65.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6678919610036758
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9630772973574898e-05,-1.2291954562855904e-07,3.634727384859934e-18)
sum a = (3.0397191932579105e-06,1.8541923438517815e-06,2.7560270523604786e-15)
sum e = 0.009968256971642596
sum de = 0.00029310879644260483
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.32e-03 |
| force | 4.78e-03 |
| divB_cleaning | 2.28e-03 |
+---------------+----------+
Info: cfl dt = 0.0013245565440626308 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 | 8.6445e+04 | 12514 | 1 | 1.448e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.527922292923634 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.18178818984380682, dt = 0.0013245565440626308 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.6%)
patch tree reduce : 1.30 us (0.4%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 337.55 us (94.8%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (67.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6693303500079923
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.962683802775988e-05,-1.2045800663705512e-07,8.045210870361006e-18)
sum a = (2.891418766967006e-06,1.8410212440194053e-06,3.0027406939709738e-15)
sum e = 0.009965880087973642
sum de = 0.0002989131167150103
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.35e-03 |
| force | 4.73e-03 |
| divB_cleaning | 2.28e-03 |
+---------------+----------+
Info: cfl dt = 0.0013464553763883837 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 | 7.3335e+04 | 12514 | 1 | 1.706e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.94398934154473 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.18311274638786945, dt = 0.0013464553763883837 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.8%)
patch tree reduce : 1.34 us (0.4%)
gen split merge : 672.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 281.28 us (94.3%)
LB move op cnt : 0
LB apply : 3.17 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (66.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6719673965159036
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9623043077565757e-05,-1.1798787661900164e-07,1.2251597214592637e-17)
sum a = (2.7091540868884757e-06,1.8524918540927951e-06,3.03537856145708e-15)
sum e = 0.009963612778477172
sum de = 0.00030490714102503544
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.36e-03 |
| force | 4.73e-03 |
| divB_cleaning | 2.28e-03 |
+---------------+----------+
Info: cfl dt = 0.0013600289301134493 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 | 7.2510e+04 | 12514 | 1 | 1.726e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.086402597629174 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.18445920176425784, dt = 0.0013600289301134493 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.9%)
patch tree reduce : 1.54 us (0.5%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 278.59 us (93.9%)
LB move op cnt : 0
LB apply : 3.50 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (64.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.671487933514464
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9619481255260645e-05,-1.1546071177314891e-07,1.6401802942100437e-17)
sum a = (2.5206210529471397e-06,1.8218655972571434e-06,3.148861626057046e-15)
sum e = 0.00996142687995658
sum de = 0.00031083535335563525
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.32e-03 |
| force | 4.75e-03 |
| divB_cleaning | 2.29e-03 |
+---------------+----------+
Info: cfl dt = 0.0013202729298974257 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 | 7.1678e+04 | 12514 | 1 | 1.746e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.044009029018937 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.18581923069437128, dt = 0.0013202729298974257 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.9%)
patch tree reduce : 1.37 us (0.5%)
gen split merge : 751.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 280.73 us (94.0%)
LB move op cnt : 0
LB apply : 3.49 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (66.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6719673965159028
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9616281552708187e-05,-1.1307617824050288e-07,2.063633839783006e-17)
sum a = (2.300935671695079e-06,1.7904110864722668e-06,3.421519557086188e-15)
sum e = 0.009959362833755965
sum de = 0.00031645698690912897
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.33e-03 |
| force | 4.73e-03 |
| divB_cleaning | 2.29e-03 |
+---------------+----------+
Info: cfl dt = 0.001332782922570201 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 | 8.0265e+04 | 12514 | 1 | 1.559e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.48579532229275 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1871395036242687, dt = 0.001332782922570201 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.6%)
patch tree reduce : 1.28 us (0.4%)
gen split merge : 642.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 327.68 us (94.8%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (69.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.677001758031005
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.961335992726992e-05,-1.1071071318959654e-07,2.537630339362058e-17)
sum a = (2.1032699586104832e-06,1.7487297783479036e-06,-1.0276163455085155e-15)
sum e = 0.009957434715252952
sum de = 0.000322183375976938
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.35e-03 |
| force | 4.73e-03 |
| divB_cleaning | 2.29e-03 |
+---------------+----------+
Info: cfl dt = 0.001353433808233219 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 | 7.9026e+04 | 12514 | 1 | 1.584e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.299382389149518 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1884722865468389, dt = 0.001353433808233219 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.85 us (1.3%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 347.70 us (95.0%)
LB move op cnt : 0
LB apply : 3.87 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (72.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.678679878536039
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9610645013343603e-05,-1.0837169925402008e-07,2.10204867210326e-17)
sum a = (1.9657511729905265e-06,1.6643928559208327e-06,-1.05016587057585e-15)
sum e = 0.009955596202655164
sum de = 0.00032787345250169693
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.36e-03 |
| force | 4.73e-03 |
| divB_cleaning | 2.30e-03 |
+---------------+----------+
Info: cfl dt = 0.0013555207531534051 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 | 7.9823e+04 | 12514 | 1 | 1.568e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.07942443418175 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.18982572035507211, dt = 0.0013555207531534051 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.6%)
patch tree reduce : 1.57 us (0.5%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 318.28 us (94.6%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (68.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.683714240051143
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.96080734581198e-05,-1.0617265241735488e-07,1.9581767981377677e-17)
sum a = (1.8830075372347746e-06,1.5980234997678866e-06,1.7038868342245885e-14)
sum e = 0.009953849899107182
sum de = 0.0003331339383932974
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.32e-03 |
| force | 4.70e-03 |
| divB_cleaning | 2.30e-03 |
+---------------+----------+
Info: cfl dt = 0.0013242145765217054 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 | 6.7256e+04 | 12514 | 1 | 1.861e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.226506466782833 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1911812411082255, dt = 0.0013242145765217054 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.7%)
patch tree reduce : 1.46 us (0.5%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.46 us (0.5%)
LB compute : 299.70 us (94.5%)
LB move op cnt : 0
LB apply : 3.17 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (66.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.688748601566245
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9605636032449113e-05,-1.0410150892459954e-07,5.440512086428638e-17)
sum a = (1.8421993135560037e-06,1.5398372296982015e-06,-6.147471291360181e-14)
sum e = 0.009952220819391287
sum de = 0.00033773629897986815
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.33e-03 |
| force | 4.70e-03 |
| divB_cleaning | 2.30e-03 |
+---------------+----------+
Info: cfl dt = 0.0013313784252494754 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 | 8.3741e+04 | 12514 | 1 | 1.494e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.900943621991352 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.19250545568474722, dt = 0.0013313784252494754 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.7%)
patch tree reduce : 1.33 us (0.4%)
gen split merge : 622.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 299.86 us (94.6%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (63.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6918651110755953
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9603210387450244e-05,-1.0208992841291416e-07,-7.942553762656549e-17)
sum a = (1.8637251255181568e-06,1.482964607529961e-06,-2.8508368735545356e-13)
sum e = 0.00995072823122567
sum de = 0.00034187161083371704
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.35e-03 |
| force | 4.72e-03 |
| divB_cleaning | 2.30e-03 |
+---------------+----------+
Info: cfl dt = 0.001351344743704284 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 | 7.6622e+04 | 12514 | 1 | 1.633e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.346954298253493 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1938368341099967, dt = 0.001351344743704284 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.7%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 321.00 us (94.4%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.692824037078471
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9600677522797443e-05,-1.0012379147574973e-07,-6.135259670025265e-16)
sum a = (1.8725647619008082e-06,1.4727450537995586e-06,-5.420268169884893e-13)
sum e = 0.009949338314571322
sum de = 0.00034526728013963215
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.31e-03 |
| force | 4.70e-03 |
| divB_cleaning | 2.30e-03 |
+---------------+----------+
Info: cfl dt = 0.0013121233175363697 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 | 8.4155e+04 | 12514 | 1 | 1.487e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.71554488393852 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.195188178853701, dt = 0.0013121233175363697 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.04 us (1.5%)
patch tree reduce : 1.20 us (0.4%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 315.17 us (94.8%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (67.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6942624260827874
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.959821451421163e-05,-9.819827342058376e-08,-1.4983412044513772e-15)
sum a = (1.892397161749539e-06,1.5382397901410488e-06,-8.950373152871473e-13)
sum e = 0.009948040895455392
sum de = 0.0003477247271328116
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.34e-03 |
| force | 4.72e-03 |
| divB_cleaning | 2.30e-03 |
+---------------+----------+
Info: cfl dt = 0.0013397864187826307 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 | 8.5227e+04 | 12514 | 1 | 1.468e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.17063659565292 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.19650030217123735, dt = 0.0013397864187826307 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.5%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 329.51 us (94.5%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (66.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6935432315806302
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.959566609491815e-05,-9.609439205517029e-08,-2.9290968269372144e-15)
sum a = (1.9588138654618214e-06,1.6260212237333853e-06,-8.73415932092419e-13)
sum e = 0.009946891097105857
sum de = 0.0003498057115707178
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.38e-03 |
| force | 4.73e-03 |
| divB_cleaning | 2.30e-03 |
+---------------+----------+
Info: cfl dt = 0.0013760236168013904 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 | 8.5220e+04 | 12514 | 1 | 1.468e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.846098962981756 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.19784008859001997, dt = 0.0013760236168013904 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.6%)
patch tree reduce : 1.27 us (0.4%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 319.15 us (94.6%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.695940546587821
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.95929262286797e-05,-9.379814426398863e-08,-4.116453717253784e-15)
sum a = (2.1206885242698043e-06,1.7040006552199235e-06,-3.2721647026052487e-13)
sum e = 0.009945836068199888
sum de = 0.0003511494470214473
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.37e-03 |
| force | 4.72e-03 |
| divB_cleaning | 2.31e-03 |
+---------------+----------+
Info: cfl dt = 0.0013692827194063538 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 | 7.8861e+04 | 12514 | 1 | 1.587e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.217437228795482 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.19921611220682137, dt = 0.000783887793178617 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.07 us (1.7%)
patch tree reduce : 1.27 us (0.4%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.38 us (0.4%)
LB compute : 329.54 us (94.6%)
LB move op cnt : 0
LB apply : 3.27 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.24 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.697858398593575
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.959115247515553e-05,-9.240874818065732e-08,-3.9971631704998206e-15)
sum a = (2.2351268696434142e-06,1.751991634998412e-06,7.240365586095615e-13)
sum e = 0.0099448023051295
sum de = 0.0003503480862288989
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.36e-03 |
| force | 4.71e-03 |
| divB_cleaning | 2.31e-03 |
+---------------+----------+
Info: cfl dt = 0.0013563307672919782 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 | 5.9922e+04 | 12514 | 1 | 2.088e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.512899567196934 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 131 [SPH][rank=0]
Info: time since start : 59.219671005 (s) [SPH][rank=0]
Info: dump to _to_trash/orztang_00008.vtk [VTK Dump][rank=0]
- took 2.18 ms, bandwidth = 321.87 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 851.78 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 855.98 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/rho_slice_0000008.npy
Saving metadata to _to_trash/plots/rho_slice_0000008.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 875.20 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/vy_slice_0000008.npy
Saving metadata to _to_trash/plots/vy_slice_0000008.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.005850732 s
Info: compute_slice took 828.60 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/By_slice_0000008.npy
Saving metadata to _to_trash/plots/By_slice_0000008.json
Info: evolve_until (target_time = 0.22s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.19999999999999998, dt = 0.0013563307672919782 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.29 us (2.2%)
patch tree reduce : 1.64 us (0.4%)
gen split merge : 911.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 406.93 us (94.4%)
LB move op cnt : 0
LB apply : 4.11 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (70.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7004954451014855
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9588076050402544e-05,-9.001365825043559e-08,-2.6030978590035097e-15)
sum a = (2.4384460974957244e-06,1.8392997819858988e-06,4.2873239836548834e-13)
sum e = 0.009944349806272972
sum de = 0.0003512443098612117
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.33e-03 |
| force | 4.69e-03 |
| divB_cleaning | 2.31e-03 |
+---------------+----------+
Info: cfl dt = 0.0013288005370191988 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 | 8.3956e+04 | 12514 | 1 | 1.491e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.75856261190121 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.20135633076729195, dt = 0.0013288005370191988 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
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 : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 296.28 us (94.3%)
LB move op cnt : 0
LB apply : 3.74 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (66.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.703132491609397
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9584697957856367e-05,-8.751038634962986e-08,-2.2336630979421198e-15)
sum a = (2.663803354543424e-06,1.944270360289763e-06,1.8760602042960353e-12)
sum e = 0.009943564193840928
sum de = 0.0003499255219946315
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.36e-03 |
| force | 4.71e-03 |
| divB_cleaning | 2.31e-03 |
+---------------+----------+
Info: cfl dt = 0.0013568089413379808 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 | 8.1378e+04 | 12514 | 1 | 1.538e-01 | 0.0% | 1.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.107957651172192 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.20268513130431115, dt = 0.0013568089413379808 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.6%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 341.92 us (94.7%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (68.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.704091417612275
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9580933958224908e-05,-8.480264045963185e-08,1.2733973755376064e-15)
sum a = (2.856289131897406e-06,2.010476385448538e-06,2.0333173115861667e-12)
sum e = 0.009942927413931085
sum de = 0.000348099505137293
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.36e-03 |
| force | 4.73e-03 |
| divB_cleaning | 2.31e-03 |
+---------------+----------+
Info: cfl dt = 0.0013640406201079988 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 | 7.2057e+04 | 12514 | 1 | 1.737e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.125424702162494 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.20404194024564914, dt = 0.0013640406201079988 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.5%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 652.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 347.67 us (94.8%)
LB move op cnt : 0
LB apply : 3.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (67.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.707207927121624
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.957690728061433e-05,-8.201535454128403e-08,4.1536085147177546e-15)
sum a = (3.035964329938181e-06,2.0749309450516387e-06,2.2645675510449195e-12)
sum e = 0.009942385304647416
sum de = 0.0003458882247392628
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.35e-03 |
| force | 4.72e-03 |
| divB_cleaning | 2.32e-03 |
+---------------+----------+
Info: cfl dt = 0.0013450271018836857 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 | 8.3964e+04 | 12514 | 1 | 1.490e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.947916228397155 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.20540598086575715, dt = 0.0013450271018836857 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.7%)
patch tree reduce : 1.26 us (0.4%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 301.44 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.91 us (64.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.710084705130254
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9572701284175863e-05,-7.918055686670876e-08,7.357230640653614e-15)
sum a = (3.224106707205583e-06,2.115571174646014e-06,2.387986932934844e-12)
sum e = 0.00994194022912702
sum de = 0.00034384773825635437
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.37e-03 |
| force | 4.69e-03 |
| divB_cleaning | 2.32e-03 |
+---------------+----------+
Info: cfl dt = 0.0013680258763999252 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 | 8.4312e+04 | 12514 | 1 | 1.484e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.62319354242804 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.20675100796764084, dt = 0.0013680258763999252 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.6%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 299.97 us (94.6%)
LB move op cnt : 0
LB apply : 3.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (65.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7105641681316928
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9568164094474028e-05,-7.625906965192975e-08,1.0707059746259485e-14)
sum a = (3.3701023742349645e-06,2.12077722495798e-06,5.9251571789180364e-12)
sum e = 0.009941647704045705
sum de = 0.00034231779319709733
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.36e-03 |
| force | 4.70e-03 |
| divB_cleaning | 2.32e-03 |
+---------------+----------+
Info: cfl dt = 0.001362792911381044 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 | 7.0477e+04 | 12514 | 1 | 1.776e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.73643029229769 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.20811903384404076, dt = 0.001362792911381044 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.07 us (1.5%)
patch tree reduce : 1.39 us (0.4%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 317.02 us (94.6%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (67.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7120025571360076
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.956347147992264e-05,-7.336532847660198e-08,2.1201292127003893e-14)
sum a = (3.4583204502936386e-06,2.127423099155754e-06,6.481422988294918e-12)
sum e = 0.009941448105649415
sum de = 0.00034093706542885627
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.37e-03 |
| force | 4.69e-03 |
| divB_cleaning | 2.32e-03 |
+---------------+----------+
Info: cfl dt = 0.0013655961857509413 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 | 6.9972e+04 | 12514 | 1 | 1.788e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.432100174810085 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.20948182675542182, dt = 0.0013655961857509413 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.6%)
patch tree reduce : 1.24 us (0.4%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 318.79 us (94.7%)
LB move op cnt : 0
LB apply : 3.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (66.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7117628256352884
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9558688699222296e-05,-7.045559913246692e-08,3.0431336220297544e-14)
sum a = (3.5289737603142917e-06,2.1362223564773176e-06,7.673172045587542e-12)
sum e = 0.009941375563089739
sum de = 0.00033951034374742756
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.35e-03 |
| force | 4.71e-03 |
| divB_cleaning | 2.32e-03 |
+---------------+----------+
Info: cfl dt = 0.0013540762035323215 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 | 8.3690e+04 | 12514 | 1 | 1.495e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.87764640763072 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.21084742294117276, dt = 0.0013540762035323215 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.6%)
patch tree reduce : 1.20 us (0.4%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.3%)
LB compute : 315.70 us (94.8%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7141601406424805
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.95538619578852e-05,-6.755698315749484e-08,4.16351198605754e-14)
sum a = (3.551142670364215e-06,2.1482276164266474e-06,1.102412150250298e-11)
sum e = 0.009941408134537696
sum de = 0.0003379788266704646
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.38e-03 |
| force | 4.70e-03 |
| divB_cleaning | 2.33e-03 |
+---------------+----------+
Info: cfl dt = 0.0013824154346610141 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 | 7.1104e+04 | 12514 | 1 | 1.760e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.69757019555272 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.21220149914470507, dt = 0.0013824154346610141 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.8%)
patch tree reduce : 1.43 us (0.5%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 295.54 us (94.3%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 us (68.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.716557455649672
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9548937794250146e-05,-6.457911212440506e-08,5.91437559516403e-14)
sum a = (3.5322471530655566e-06,2.1510711925941078e-06,1.3278192655032953e-11)
sum e = 0.009941603322645053
sum de = 0.0003365185113746622
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.34e-03 |
| force | 4.71e-03 |
| divB_cleaning | 2.33e-03 |
+---------------+----------+
Info: cfl dt = 0.001338789544152428 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 | 8.3632e+04 | 12514 | 1 | 1.496e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.25978795811787 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2135839145793661, dt = 0.001338789544152428 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.9%)
patch tree reduce : 1.23 us (0.4%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 274.51 us (94.0%)
LB move op cnt : 0
LB apply : 3.67 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (66.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.719673965159022
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9544221919421703e-05,-6.169731500109442e-08,7.847849275598044e-14)
sum a = (3.5045062231991263e-06,2.1667111651621023e-06,1.5746195131333225e-11)
sum e = 0.009941838666574271
sum de = 0.0003350095761525152
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.36e-03 |
| force | 4.66e-03 |
| divB_cleaning | 2.33e-03 |
+---------------+----------+
Info: cfl dt = 0.0013606115764408936 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 | 8.3172e+04 | 12514 | 1 | 1.505e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.03283611303214 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.21492270412351852, dt = 0.0013606115764408936 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.8%)
patch tree reduce : 1.32 us (0.4%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 284.74 us (94.1%)
LB move op cnt : 0
LB apply : 3.53 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (70.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.720393159661179
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.953947221731822e-05,-5.873879339179292e-08,1.0155501624355771e-13)
sum a = (3.4748650439751512e-06,2.2098846860482618e-06,1.8331886140380298e-11)
sum e = 0.009942259277990972
sum de = 0.00033404379391799473
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.36e-03 |
| force | 4.64e-03 |
| divB_cleaning | 2.33e-03 |
+---------------+----------+
Info: cfl dt = 0.0013590812907370783 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 | 8.3766e+04 | 12514 | 1 | 1.494e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.78744293434071 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.21628331569995943, dt = 0.0013590812907370783 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.15 us (1.6%)
patch tree reduce : 1.15 us (0.4%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 295.73 us (94.6%)
LB move op cnt : 0
LB apply : 3.14 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7218315486654947
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.953476975831491e-05,-5.570600926380768e-08,1.2822860014591715e-13)
sum a = (3.443400605354435e-06,2.2898745219584636e-06,1.4447599508174396e-11)
sum e = 0.009942773305006009
sum de = 0.0003336072099651246
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.35e-03 |
| force | 4.65e-03 |
| divB_cleaning | 2.33e-03 |
+---------------+----------+
Info: cfl dt = 0.001353784432185693 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 | 8.2232e+04 | 12514 | 1 | 1.522e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.15082288411499 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2176423969906965, dt = 0.001353784432185693 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.6%)
patch tree reduce : 1.19 us (0.4%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 316.51 us (94.8%)
LB move op cnt : 0
LB apply : 3.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (66.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.728064567684194
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9530129517546456e-05,-5.25516564396844e-08,1.4514800471032292e-13)
sum a = (3.3994560643265033e-06,2.4156523653189785e-06,7.746911401347278e-13)
sum e = 0.009943395108727727
sum de = 0.0003336316690291359
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.36e-03 |
| force | 4.63e-03 |
| divB_cleaning | 2.33e-03 |
+---------------+----------+
Info: cfl dt = 0.0013631278288311443 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 | 8.4245e+04 | 12514 | 1 | 1.485e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.80934982077971 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2189961814228822, dt = 0.0013631278288311443 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.64 us (1.4%)
patch tree reduce : 982.00 ns (0.3%)
gen split merge : 642.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 316.99 us (95.2%)
LB move op cnt : 0
LB apply : 3.14 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.729023493687071
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9525525370100133e-05,-4.917367543258645e-08,1.3694892261885726e-13)
sum a = (3.2850800260598614e-06,2.5941138540021836e-06,7.746142031697433e-12)
sum e = 0.00994414841667958
sum de = 0.0003336932844656141
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.38e-03 |
| force | 4.62e-03 |
| divB_cleaning | 2.33e-03 |
+---------------+----------+
Info: cfl dt = 0.001381791533543868 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 | 8.0000e+04 | 12514 | 1 | 1.564e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.37131925987634 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.22035930925171335, dt = 0.001381791533543868 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.8%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 642.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 292.98 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.06 us (66.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7309413456928238
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9521064028913402e-05,-4.5467517961589914e-08,1.524039653647728e-13)
sum a = (3.1290377563399395e-06,2.7962618482471205e-06,1.3815630650996005e-11)
sum e = 0.009945034762113553
sum de = 0.0003335441896593186
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.34e-03 |
| force | 4.58e-03 |
| divB_cleaning | 2.34e-03 |
+---------------+----------+
Info: cfl dt = 0.001342323565136173 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 | 7.5355e+04 | 12514 | 1 | 1.661e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.954285910234205 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.22174110078525722, dt = 0.001342323565136173 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.4%)
patch tree reduce : 1.38 us (0.4%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 349.10 us (95.0%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.21 us (71.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7316605401949823
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9516971656740467e-05,-4.157436659453432e-08,1.751423960285618e-13)
sum a = (2.918934892494803e-06,2.993615297632939e-06,5.0682435818446755e-12)
sum e = 0.009945945553621485
sum de = 0.00033311961792179895
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.35e-03 |
| force | 4.51e-03 |
| divB_cleaning | 2.34e-03 |
+---------------+----------+
Info: cfl dt = 0.0013502790103682534 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 | 8.3221e+04 | 12514 | 1 | 1.504e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.136252333810376 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.22308342435039338, dt = 0.0013502790103682534 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.6%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 329.57 us (94.5%)
LB move op cnt : 0
LB apply : 3.89 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (72.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7314208086942617
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.951317129323509e-05,-3.7399694600188375e-08,1.7611502707708986e-13)
sum a = (2.6700006086497005e-06,3.1852944869230503e-06,2.0096788989781566e-12)
sum e = 0.009947011316759917
sum de = 0.0003327734016338018
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.29e-03 |
| force | 4.47e-03 |
| divB_cleaning | 2.34e-03 |
+---------------+----------+
Info: cfl dt = 0.0012895568944412384 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 | 8.3311e+04 | 12514 | 1 | 1.502e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.36167382523444 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.22443370336076163, dt = 0.0005662966392383506 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.8%)
patch tree reduce : 1.22 us (0.4%)
gen split merge : 791.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 298.25 us (94.4%)
LB move op cnt : 0
LB apply : 3.21 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (8.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7326194661978587
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.951182734623293e-05,-3.546646284481607e-08,1.7518814377177448e-13)
sum a = (2.5816161184732286e-06,3.261320779387078e-06,4.110257436156168e-12)
sum e = 0.009946941435752614
sum de = 0.0003308158704300807
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.30e-03 |
| force | 4.47e-03 |
| divB_cleaning | 2.34e-03 |
+---------------+----------+
Info: cfl dt = 0.0012994274586434042 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 | 8.4293e+04 | 12514 | 1 | 1.485e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.732235085192269 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 150 [SPH][rank=0]
Info: time since start : 65.75026217700001 (s) [SPH][rank=0]
Info: dump to _to_trash/orztang_00009.vtk [VTK Dump][rank=0]
- took 2.46 ms, bandwidth = 284.95 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 841.43 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 844.16 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/rho_slice_0000009.npy
Saving metadata to _to_trash/plots/rho_slice_0000009.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 846.13 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/vy_slice_0000009.npy
Saving metadata to _to_trash/plots/vy_slice_0000009.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00579043 s
Info: compute_slice took 840.67 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/By_slice_0000009.npy
Saving metadata to _to_trash/plots/By_slice_0000009.json
Info: evolve_until (target_time = 0.25s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.22499999999999998, dt = 0.0012994274586434042 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.21 us (2.6%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 336.89 us (93.6%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (66.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7333386607000163
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.950849774928075e-05,-3.120708635533245e-08,1.8112390031739882e-13)
sum a = (2.380677163460402e-06,3.452133075269402e-06,7.486497773330383e-13)
sum e = 0.009948582356571855
sum de = 0.0003323196402051367
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.32e-03 |
| force | 4.45e-03 |
| divB_cleaning | 2.34e-03 |
+---------------+----------+
Info: cfl dt = 0.0013172798704699016 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 | 8.2408e+04 | 12514 | 1 | 1.519e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.805495078838536 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.22629942745864337, dt = 0.0013172798704699016 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.6%)
patch tree reduce : 1.25 us (0.4%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 293.12 us (94.3%)
LB move op cnt : 0
LB apply : 3.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (66.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7388524852165577
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9505492283972884e-05,-2.653568757692368e-08,1.7992599889697009e-13)
sum a = (2.2200683748352155e-06,3.655558008618726e-06,-2.531240647408447e-11)
sum e = 0.009949865745876264
sum de = 0.0003320225111534554
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.24e-03 |
| force | 4.37e-03 |
| divB_cleaning | 2.34e-03 |
+---------------+----------+
Info: cfl dt = 0.001236524381019018 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 | 8.4012e+04 | 12514 | 1 | 1.490e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.83666706469696 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.22761670732911327, dt = 0.001236524381019018 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.92 us (1.5%)
patch tree reduce : 1.21 us (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 304.83 us (94.6%)
LB move op cnt : 0
LB apply : 3.23 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (63.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7426881892280646
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9502852898661924e-05,-2.188151718781964e-08,1.3146173880008414e-13)
sum a = (2.150121413984585e-06,3.8169125587329984e-06,-4.264793447345705e-11)
sum e = 0.009951057164540398
sum de = 0.00033170852511250865
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.24e-03 |
| force | 4.32e-03 |
| divB_cleaning | 2.35e-03 |
+---------------+----------+
Info: cfl dt = 0.0012433271689877646 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 | 6.8683e+04 | 12514 | 1 | 1.822e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.43195170226744 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.22885323171013228, dt = 0.0012433271689877646 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.65 us (1.2%)
patch tree reduce : 1.35 us (0.3%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 376.22 us (95.4%)
LB move op cnt : 0
LB apply : 3.60 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (66.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7424484577273454
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9500222839852663e-05,-1.7036086684300434e-08,6.77185016694688e-14)
sum a = (2.138919305098402e-06,3.976898385113838e-06,-5.92078468441777e-11)
sum e = 0.009952411958439357
sum de = 0.00033168380056399085
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.24e-03 |
| force | 4.30e-03 |
| divB_cleaning | 2.35e-03 |
+---------------+----------+
Info: cfl dt = 0.0012418174034734728 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 | 7.5940e+04 | 12514 | 1 | 1.648e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.161893933467425 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.23009655887912003, dt = 0.0012418174034734728 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.5%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 722.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 334.94 us (94.7%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7479622822438867
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9497573656578288e-05,-1.199804769536142e-08,-1.6101527553301692e-14)
sum a = (2.173810549222172e-06,4.115587386684979e-06,-8.216132456982197e-11)
sum e = 0.00995383343162835
sum de = 0.0003314238826896506
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.24e-03 |
| force | 4.29e-03 |
| divB_cleaning | 2.35e-03 |
+---------------+----------+
Info: cfl dt = 0.0012410001708198866 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 | 7.8315e+04 | 12514 | 1 | 1.598e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.977677502836286 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.23133837628259352, dt = 0.0012410001708198866 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.03 us (1.5%)
patch tree reduce : 1.20 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 317.46 us (94.8%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (66.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7501198657503587
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9494854293038166e-05,-6.804489837385645e-09,-1.3231575927066577e-13)
sum a = (2.2186966532290784e-06,4.205371091880629e-06,-1.0311104077073684e-10)
sum e = 0.009955326784085892
sum de = 0.00033106398724192936
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.23e-03 |
| force | 4.23e-03 |
| divB_cleaning | 2.35e-03 |
+---------------+----------+
Info: cfl dt = 0.0012319854717199614 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 | 8.1539e+04 | 12514 | 1 | 1.535e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.11001336203635 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2325793764534134, dt = 0.0012319854717199614 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.64 us (1.4%)
patch tree reduce : 1.38 us (0.4%)
gen split merge : 652.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 308.76 us (94.9%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (67.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7515582547546744
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.949209303916389e-05,-1.5678229527318882e-09,-2.723463640832316e-13)
sum a = (2.2164650974227607e-06,4.264422660079831e-06,-9.764725675501853e-11)
sum e = 0.009956870859648175
sum de = 0.00033059809057012186
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.21e-03 |
| force | 4.18e-03 |
| divB_cleaning | 2.35e-03 |
+---------------+----------+
Info: cfl dt = 0.0012067968830693577 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 | 8.3666e+04 | 12514 | 1 | 1.496e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.652613769408006 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.23381136192513335, dt = 0.0012067968830693577 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.08 us (1.7%)
patch tree reduce : 1.35 us (0.4%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.3%)
LB compute : 289.28 us (94.5%)
LB move op cnt : 0
LB apply : 3.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (68.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7549144957647442
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.948941959061491e-05,3.6148443582285876e-09,-3.8682111794246695e-13)
sum a = (2.1472235964702032e-06,4.27359465333659e-06,-1.0731033713821397e-10)
sum e = 0.009958433202634235
sum de = 0.0003300535374022099
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.21e-03 |
| force | 4.18e-03 |
| divB_cleaning | 2.35e-03 |
+---------------+----------+
Info: cfl dt = 0.001206788443743999 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 | 8.4336e+04 | 12514 | 1 | 1.484e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.278775376781276 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2350181588082027, dt = 0.001206788443743999 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.6%)
patch tree reduce : 1.25 us (0.4%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.3%)
LB compute : 317.72 us (94.7%)
LB move op cnt : 0
LB apply : 3.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (68.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7568323477704966
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9486870126206492e-05,8.777703366302577e-09,-5.221526803618704e-13)
sum a = (2.0816547501981243e-06,4.2281013885194774e-06,-1.1767139919137419e-10)
sum e = 0.00996007864870882
sum de = 0.0003296828950210489
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.21e-03 |
| force | 4.18e-03 |
| divB_cleaning | 2.36e-03 |
+---------------+----------+
Info: cfl dt = 0.0012147511125464294 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 | 7.5297e+04 | 12514 | 1 | 1.662e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.140436862734834 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2362249472519467, dt = 0.0012147511125464294 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.6%)
patch tree reduce : 1.11 us (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 309.76 us (94.7%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (65.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.759469394278408
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9484380997645683e-05,1.3886343858579864e-08,-6.71345948404485e-13)
sum a = (2.0346776719184295e-06,4.160463489343447e-06,-1.289944444913448e-10)
sum e = 0.009961801978913753
sum de = 0.0003295508873365948
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.20e-03 |
| force | 4.13e-03 |
| divB_cleaning | 2.36e-03 |
+---------------+----------+
Info: cfl dt = 0.0012011719163728069 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 | 8.4400e+04 | 12514 | 1 | 1.483e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.49402159115488 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.23743969836449313, dt = 0.0012011719163728069 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.72 us (1.4%)
patch tree reduce : 1.14 us (0.3%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 313.23 us (94.9%)
LB move op cnt : 0
LB apply : 3.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.760668051782003
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9481965532696613e-05,1.8842694154213883e-08,-8.331677935569283e-13)
sum a = (2.0196246028278534e-06,4.1017455655088805e-06,-1.2210523218257915e-10)
sum e = 0.009963544453012438
sum de = 0.00032952129657289877
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.20e-03 |
| force | 4.13e-03 |
| divB_cleaning | 2.36e-03 |
+---------------+----------+
Info: cfl dt = 0.0011982444056763285 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 | 6.4123e+04 | 12514 | 1 | 1.952e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.1576319129118 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.23864087028086595, dt = 0.0011982444056763285 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.6%)
patch tree reduce : 1.47 us (0.5%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 302.83 us (94.3%)
LB move op cnt : 0
LB apply : 3.80 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (67.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7630653667891956
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9479554569476398e-05,2.3722322671034184e-08,-9.753421409694847e-13)
sum a = (2.0782421140332265e-06,4.055251437198826e-06,-1.1951976046184938e-10)
sum e = 0.009965345842641787
sum de = 0.0003296720041578856
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.20e-03 |
| force | 4.09e-03 |
| divB_cleaning | 2.36e-03 |
+---------------+----------+
Info: cfl dt = 0.0012031812497108876 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 | 5.2588e+04 | 12514 | 1 | 2.380e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.127510109220815 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2398391146865423, dt = 0.0012031812497108876 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.5%)
patch tree reduce : 1.25 us (0.4%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 321.73 us (94.6%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (66.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7616269777848816
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9477018948480043e-05,2.8573669498789978e-08,-1.1175970622609827e-12)
sum a = (2.1638410196935033e-06,4.001279142379325e-06,-1.0877794584254745e-10)
sum e = 0.009967213815447578
sum de = 0.0003299634359641779
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.22e-03 |
| force | 4.08e-03 |
| divB_cleaning | 2.36e-03 |
+---------------+----------+
Info: cfl dt = 0.001216432450631894 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 | 8.4059e+04 | 12514 | 1 | 1.489e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.09526587701499 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.24104229593625318, dt = 0.001216432450631894 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.8%)
patch tree reduce : 1.25 us (0.4%)
gen split merge : 772.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 281.67 us (94.1%)
LB move op cnt : 0
LB apply : 3.77 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (67.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7661818762985457
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9474335286546628e-05,3.340848606494131e-08,-1.243455910654835e-12)
sum a = (2.275239069182505e-06,3.926475519003007e-06,-1.0369796681586555e-10)
sum e = 0.009969160722201035
sum de = 0.0003302708695795589
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.22e-03 |
| force | 4.08e-03 |
| divB_cleaning | 2.37e-03 |
+---------------+----------+
Info: cfl dt = 0.0012205966359656974 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 | 8.4120e+04 | 12514 | 1 | 1.488e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.43698767401252 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.24225872838688506, dt = 0.0012205966359656974 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.6%)
patch tree reduce : 1.25 us (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 315.16 us (94.5%)
LB move op cnt : 0
LB apply : 3.49 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (67.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.767620265302861
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9471490383291595e-05,3.815563209728807e-08,-1.3669395746193125e-12)
sum a = (2.400568637184628e-06,3.830009796210144e-06,-9.939372968724907e-11)
sum e = 0.009971156020584212
sum de = 0.00033040723710961716
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.19e-03 |
| force | 4.03e-03 |
| divB_cleaning | 2.37e-03 |
+---------------+----------+
Info: cfl dt = 0.0011921376678997492 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 | 7.1967e+04 | 12514 | 1 | 1.739e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.27029471634618 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.24347932502285075, dt = 0.0011921376678997492 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.7%)
patch tree reduce : 1.51 us (0.5%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 304.71 us (94.3%)
LB move op cnt : 0
LB apply : 3.20 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (67.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.771455969314367
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.946855208657011e-05,4.2662658175255345e-08,-1.4828037147297684e-12)
sum a = (2.500775897953635e-06,3.698030684833679e-06,-8.252394606279984e-11)
sum e = 0.009973122310498062
sum de = 0.00033035095003102394
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.19e-03 |
| force | 4.03e-03 |
| divB_cleaning | 2.37e-03 |
+---------------+----------+
Info: cfl dt = 0.0011903865215638072 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 | 8.3641e+04 | 12514 | 1 | 1.496e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.684977761543987 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2446714626907505, dt = 0.0011903865215638072 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.7%)
patch tree reduce : 1.26 us (0.4%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 301.92 us (94.5%)
LB move op cnt : 0
LB apply : 3.11 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (66.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7714559693143674
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9465515466222736e-05,4.6986075423782696e-08,-1.5709835556523938e-12)
sum a = (2.5208787376287713e-06,3.500509613045547e-06,-8.582105998861344e-11)
sum e = 0.009975151617625523
sum de = 0.0003303505140831566
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.20e-03 |
| force | 4.02e-03 |
| divB_cleaning | 2.37e-03 |
+---------------+----------+
Info: cfl dt = 0.001196420005837873 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 | 8.3751e+04 | 12514 | 1 | 1.494e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.680365515700394 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2458618492123143, dt = 0.001196420005837873 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.90 us (1.5%)
patch tree reduce : 1.43 us (0.5%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 300.41 us (94.7%)
LB move op cnt : 0
LB apply : 3.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (65.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7714559693143674
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.946248747139395e-05,5.1056591944955743e-08,-1.6756240088350624e-12)
sum a = (2.482574591519284e-06,3.249577352277702e-06,-7.571801144131123e-11)
sum e = 0.009977239953015754
sum de = 0.0003303024386638547
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.14e-03 |
| force | 3.96e-03 |
| divB_cleaning | 2.37e-03 |
+---------------+----------+
Info: cfl dt = 0.0011367618353850136 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 | 8.3870e+04 | 12514 | 1 | 1.492e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.866750223802597 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.24705826921815216, dt = 0.0011367618353850136 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.7%)
patch tree reduce : 1.27 us (0.4%)
gen split merge : 642.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 297.14 us (94.6%)
LB move op cnt : 0
LB apply : 3.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (66.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7714559693143674
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.945968828926819e-05,5.460047727155963e-08,-1.7556536098219421e-12)
sum a = (2.447602620371327e-06,2.9866256501316564e-06,-5.4476663729633356e-11)
sum e = 0.009979206373058797
sum de = 0.00032981447231762907
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.16e-03 |
| force | 3.93e-03 |
| divB_cleaning | 2.37e-03 |
+---------------+----------+
Info: cfl dt = 0.001156184061573556 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 | 8.2418e+04 | 12514 | 1 | 1.518e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.952416301056104 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.24819503105353719, dt = 0.001156184061573556 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.99 us (1.4%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 331.04 us (94.9%)
LB move op cnt : 0
LB apply : 4.11 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (69.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7733738213201202
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9456878287530494e-05,5.7904109516216506e-08,-1.8065654835502666e-12)
sum a = (2.3589258056054133e-06,2.7096845238969075e-06,-3.997802156892877e-11)
sum e = 0.009981307308699661
sum de = 0.0003294759548258185
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.18e-03 |
| force | 3.93e-03 |
| divB_cleaning | 2.37e-03 |
+---------------+----------+
Info: cfl dt = 0.0011832216732717102 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 | 6.8888e+04 | 12514 | 1 | 1.817e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.912650501360968 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.24935121511511074, dt = 0.0006487848848892308 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.6%)
patch tree reduce : 1.34 us (0.4%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 319.01 us (94.7%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (66.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7752916733258735
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9455399115483334e-05,5.9502014420189325e-08,-1.8241210700505332e-12)
sum a = (2.268352670848195e-06,2.549264301982664e-06,-3.5332329065789683e-11)
sum e = 0.009982164753375622
sum de = 0.0003276973878108629
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.20e-03 |
| force | 3.95e-03 |
| divB_cleaning | 2.38e-03 |
+---------------+----------+
Info: cfl dt = 0.0012041665457089125 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 | 6.0857e+04 | 12514 | 1 | 2.056e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.358473010000068 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 171 [SPH][rank=0]
Info: time since start : 72.73349610300001 (s) [SPH][rank=0]
Info: dump to _to_trash/orztang_00010.vtk [VTK Dump][rank=0]
- took 2.12 ms, bandwidth = 331.30 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 885.96 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 882.50 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/rho_slice_0000010.npy
Saving metadata to _to_trash/plots/rho_slice_0000010.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 876.49 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/vy_slice_0000010.npy
Saving metadata to _to_trash/plots/vy_slice_0000010.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.006720346 s
Info: compute_slice took 886.83 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/By_slice_0000010.npy
Saving metadata to _to_trash/plots/By_slice_0000010.json
Info: evolve_until (target_time = 0.27s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.24999999999999997, dt = 0.0012041665457089125 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.79 us (2.3%)
patch tree reduce : 1.69 us (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 393.25 us (94.2%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (69.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.777928719833785
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9452697022323526e-05,6.25197141011336e-08,-1.865160051203676e-12)
sum a = (2.0413550425424e-06,2.276888792652223e-06,-3.9557495989121514e-11)
sum e = 0.009984755147100396
sum de = 0.0003291334234882293
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.21e-03 |
| force | 3.90e-03 |
| divB_cleaning | 2.38e-03 |
+---------------+----------+
Info: cfl dt = 0.001207059671236539 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 | 8.2743e+04 | 12514 | 1 | 1.512e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.663102668256 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2512041665457089, dt = 0.001207059671236539 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.53 us (1.2%)
patch tree reduce : 1.02 us (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.2%)
LB compute : 349.46 us (95.4%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (69.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7796068403388206
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9450369656451823e-05,6.510406200070505e-08,-1.915452211437673e-12)
sum a = (1.74109793951891e-06,2.0306407397688596e-06,-6.142544157578494e-11)
sum e = 0.009987029724446667
sum de = 0.0003284297951257395
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.17e-03 |
| force | 3.92e-03 |
| divB_cleaning | 2.38e-03 |
+---------------+----------+
Info: cfl dt = 0.001172304433640577 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 | 6.9212e+04 | 12514 | 1 | 1.808e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.033484028075062 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2524112262169454, dt = 0.001172304433640577 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.32 us (1.3%)
patch tree reduce : 1.09 us (0.3%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 321.71 us (95.2%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (69.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7822438868467305
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9448509773738116e-05,6.733597309617776e-08,-2.0006594866549253e-12)
sum a = (1.4129130182724664e-06,1.7979535296473043e-06,-3.824141417904021e-11)
sum e = 0.00998923397455915
sum de = 0.00032778703096592867
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.18e-03 |
| force | 3.95e-03 |
| divB_cleaning | 2.38e-03 |
+---------------+----------+
Info: cfl dt = 0.0011816914869368562 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 | 7.5133e+04 | 12514 | 1 | 1.666e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.338287055983905 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.253583530650586, dt = 0.0011816914869368562 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.88 us (1.5%)
patch tree reduce : 1.16 us (0.4%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 314.03 us (94.7%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (67.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.783202812849608
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9447032512771747e-05,6.932420935222122e-08,-2.032259671169555e-12)
sum a = (1.1557453065697269e-06,1.5680734518064105e-06,-4.6190475109520685e-11)
sum e = 0.009991522913089697
sum de = 0.0003273734462970374
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.14e-03 |
| force | 3.94e-03 |
| divB_cleaning | 2.38e-03 |
+---------------+----------+
Info: cfl dt = 0.0011412192874830696 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 | 7.3307e+04 | 12514 | 1 | 1.707e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.920428692037778 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.25476522213752284, dt = 0.0011412192874830696 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.57 us (1.4%)
patch tree reduce : 1.07 us (0.3%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.3%)
LB compute : 322.08 us (95.2%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (67.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7846412018539217
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.944586550038423e-05,7.097790135396801e-08,-2.089669801151766e-12)
sum a = (1.0638913642573715e-06,1.32887280915273e-06,-2.905395021541816e-11)
sum e = 0.00999371955975892
sum de = 0.0003268773853466058
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.16e-03 |
| force | 3.90e-03 |
| divB_cleaning | 2.38e-03 |
+---------------+----------+
Info: cfl dt = 0.0011559325312204929 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 | 7.6542e+04 | 12514 | 1 | 1.635e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.129054086177344 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2559064414250059, dt = 0.0011559325312204929 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.73 us (1.4%)
patch tree reduce : 1.19 us (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 327.21 us (95.2%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7860795908582383
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.944468812649204e-05,7.237749847024009e-08,-2.1134759409115954e-12)
sum a = (1.1121229875675817e-06,1.1170281476729207e-06,-1.867393237798145e-11)
sum e = 0.009996015343722863
sum de = 0.0003266943304433765
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.18e-03 |
| force | 3.90e-03 |
| divB_cleaning | 2.38e-03 |
+---------------+----------+
Info: cfl dt = 0.0011781891212016549 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 | 8.3853e+04 | 12514 | 1 | 1.492e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.884165409990807 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2570623739562264, dt = 0.0011781891212016549 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.25 us (1.4%)
patch tree reduce : 1.48 us (0.5%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 291.37 us (94.9%)
LB move op cnt : 0
LB apply : 3.17 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (67.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7906344893719037
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9443349959035306e-05,7.357112981423796e-08,-2.129478064467805e-12)
sum a = (1.243363002863249e-06,9.511101830791301e-07,-3.2150531045052854e-11)
sum e = 0.009998387259296504
sum de = 0.0003264624490951488
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.17e-03 |
| force | 3.87e-03 |
| divB_cleaning | 2.39e-03 |
+---------------+----------+
Info: cfl dt = 0.0011740380124894592 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 | 7.3702e+04 | 12514 | 1 | 1.698e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.98045924018704 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.25824056307742804, dt = 0.0011740380124894592 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.00 us (1.6%)
patch tree reduce : 1.19 us (0.4%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 299.17 us (94.9%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (67.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.792552341377656
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9441812890827688e-05,7.459002795230187e-08,-2.175163001106769e-12)
sum a = (1.3623256322665582e-06,8.896119598015686e-07,-6.300646188269649e-11)
sum e = 0.010000752953736756
sum de = 0.0003259437902737985
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.12e-03 |
| force | 3.84e-03 |
| divB_cleaning | 2.39e-03 |
+---------------+----------+
Info: cfl dt = 0.0011152185244646276 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 | 6.3177e+04 | 12514 | 1 | 1.981e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.33778751938194 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2594146010899175, dt = 0.0011152185244646276 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.00 us (1.6%)
patch tree reduce : 1.26 us (0.4%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 302.85 us (94.7%)
LB move op cnt : 0
LB apply : 3.17 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (65.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7939907303819718
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.944022376672175e-05,7.554603906368582e-08,-2.263541992386997e-12)
sum a = (1.4443480548570226e-06,9.052042022139498e-07,-9.524163944119081e-11)
sum e = 0.01000297622034931
sum de = 0.0003251389403121238
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.12e-03 |
| force | 3.82e-03 |
| divB_cleaning | 2.39e-03 |
+---------------+----------+
Info: cfl dt = 0.0011221494856989119 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 | 8.3739e+04 | 12514 | 1 | 1.494e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.865312682934537 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2605298196143821, dt = 0.0011221494856989119 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.50 us (1.4%)
patch tree reduce : 1.47 us (0.5%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 300.24 us (94.9%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (64.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7966277768898826
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9438557255831912e-05,7.657050787264854e-08,-2.3883919827634067e-12)
sum a = (1.4673139632959468e-06,9.802651427215793e-07,-1.2092690101878765e-10)
sum e = 0.010005285266207573
sum de = 0.00032460292148795555
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.14e-03 |
| force | 3.84e-03 |
| divB_cleaning | 2.39e-03 |
+---------------+----------+
Info: cfl dt = 0.0011351866001136355 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 | 8.3994e+04 | 12514 | 1 | 1.490e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.11485315315663 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.261651969100081, dt = 0.0011351866001136355 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.93 us (1.5%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 321.77 us (94.8%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7995045548985127
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.943687869509166e-05,7.772540652483614e-08,-2.5400779317768725e-12)
sum a = (1.3556029284435706e-06,1.1175934695757095e-06,-1.3583835474180426e-10)
sum e = 0.010007645248533422
sum de = 0.0003240764181158546
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.16e-03 |
| force | 3.90e-03 |
| divB_cleaning | 2.39e-03 |
+---------------+----------+
Info: cfl dt = 0.001155904674145445 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 | 6.0472e+04 | 12514 | 1 | 2.069e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.74837047712444 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2627871557001946, dt = 0.001155904674145445 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.43 us (1.1%)
patch tree reduce : 1.25 us (0.3%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 371.81 us (95.6%)
LB move op cnt : 0
LB apply : 3.50 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (67.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7990250918970756
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9435375153765386e-05,7.90951846786142e-08,-2.70555776198581e-12)
sum a = (1.0988291613080568e-06,1.2627226124417928e-06,-1.3928572117980246e-10)
sum e = 0.010010072706409977
sum de = 0.0003234466272321863
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.19e-03 |
| force | 3.92e-03 |
| divB_cleaning | 2.39e-03 |
+---------------+----------+
Info: cfl dt = 0.0011852945358426117 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 | 6.8630e+04 | 12514 | 1 | 1.823e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.821467278027075 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.26394306037434007, dt = 0.0011852945358426117 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.81 us (1.2%)
patch tree reduce : 1.37 us (0.3%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 382.74 us (95.5%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (70.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7968675083906027
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.943422112056336e-05,8.067576061869415e-08,-2.872644779942817e-12)
sum a = (7.18545219637285e-07,1.370267881147228e-06,-1.4360554039581703e-10)
sum e = 0.010012586956037905
sum de = 0.00032276513168682483
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.23e-03 |
| force | 3.88e-03 |
| divB_cleaning | 2.39e-03 |
+---------------+----------+
Info: cfl dt = 0.0012251388469018654 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 | 6.3488e+04 | 12514 | 1 | 1.971e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.64841105716713 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.26512835491018266, dt = 0.0012251388469018654 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.5%)
patch tree reduce : 1.14 us (0.3%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 315.58 us (94.7%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (65.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7995045548985122
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9433566177140468e-05,8.24182654404768e-08,-3.051141635257782e-12)
sum a = (3.735997707318495e-07,1.3625581220212601e-06,-3.4518474165618677e-10)
sum e = 0.010015212474577971
sum de = 0.00032215334712597476
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.14e-03 |
| force | 3.89e-03 |
| divB_cleaning | 2.39e-03 |
+---------------+----------+
Info: cfl dt = 0.001142714031282996 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 | 8.2470e+04 | 12514 | 1 | 1.517e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.066234347500878 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2663534937570845, dt = 0.001142714031282996 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.50 us (1.2%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 367.36 us (95.5%)
LB move op cnt : 0
LB apply : 3.78 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (70.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.799264823397795
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9433350562475392e-05,8.397055696208285e-08,-3.569070337916573e-12)
sum a = (2.0679035773911112e-07,1.2092335181088696e-06,-3.737882528360317e-10)
sum e = 0.01001757694367578
sum de = 0.0003211481501765396
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.16e-03 |
| force | 3.92e-03 |
| divB_cleaning | 2.39e-03 |
+---------------+----------+
Info: cfl dt = 0.001164606915285857 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 | 8.3566e+04 | 12514 | 1 | 1.498e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.47090162464446 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2674962077883675, dt = 0.001164606915285857 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.88 us (1.4%)
patch tree reduce : 1.17 us (0.3%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 326.82 us (95.1%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (69.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.801182675403548
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.943320504072304e-05,8.529123559108632e-08,-4.020729538779831e-12)
sum a = (1.939267133131186e-07,9.108081088312971e-07,-3.8717848878544853e-10)
sum e = 0.01002008609013088
sum de = 0.00032075802035991843
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.16e-03 |
| force | 3.86e-03 |
| divB_cleaning | 2.39e-03 |
+---------------+----------+
Info: cfl dt = 0.0011643745800086669 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 | 8.4041e+04 | 12514 | 1 | 1.489e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.15631788438312 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2686608147036534, dt = 0.0011643745800086669 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.63 us (1.5%)
patch tree reduce : 1.26 us (0.4%)
gen split merge : 632.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 993.00 ns (0.3%)
LB compute : 291.86 us (94.8%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (65.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.8026210644078633
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.943298672793235e-05,8.617798325267674e-08,-4.479347509813421e-12)
sum a = (4.395778251548045e-07,4.895441396136556e-07,-4.183961552403075e-10)
sum e = 0.010022590866716438
sum de = 0.00032038114982872056
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.19e-03 |
| force | 3.85e-03 |
| divB_cleaning | 2.39e-03 |
+---------------+----------+
Info: cfl dt = 0.0011909612581130031 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 | 6.4508e+04 | 12514 | 1 | 1.940e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.607848697379904 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.26982518928366206, dt = 0.0011909612581130031 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.33 us (1.3%)
patch tree reduce : 1.18 us (0.4%)
gen split merge : 621.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 310.92 us (95.1%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (66.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.805737573917212
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9432320192817504e-05,8.651575682846705e-08,-4.995815649814371e-12)
sum a = (9.533324625056639e-07,-1.9087180819315027e-08,-3.9023118222931207e-10)
sum e = 0.010025186762350985
sum de = 0.00032015287925488194
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.23e-03 |
| force | 3.88e-03 |
| divB_cleaning | 2.39e-03 |
+---------------+----------+
Info: cfl dt = 0.0012267087455853712 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 | 7.8827e+04 | 12514 | 1 | 1.588e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.007293297450676 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2710161505417751, dt = 0.0012267087455853712 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.07 us (1.2%)
patch tree reduce : 1.07 us (0.3%)
gen split merge : 621.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.3%)
LB compute : 310.79 us (95.3%)
LB move op cnt : 0
LB apply : 3.28 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (65.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.805737573917212
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.943084480061375e-05,8.618946231848915e-08,-5.457743958171902e-12)
sum a = (1.5239648410919969e-06,-5.886275411994578e-07,-3.4357553997429976e-10)
sum e = 0.010027880294396715
sum de = 0.0003199216445094997
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.22e-03 |
| force | 3.91e-03 |
| divB_cleaning | 2.40e-03 |
+---------------+----------+
Info: cfl dt = 0.001217953914651436 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 | 8.2445e+04 | 12514 | 1 | 1.518e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.09451286629951 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2722428592873605, dt = 0.001217953914651436 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.79 us (1.6%)
patch tree reduce : 1.07 us (0.4%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 278.25 us (94.7%)
LB move op cnt : 0
LB apply : 3.16 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (63.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.805258110915775
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9428638681805045e-05,8.51232110295253e-08,-5.847586689881459e-12)
sum a = (2.0775396288768216e-06,-1.1426879247635656e-06,-2.333737976558182e-10)
sum e = 0.010030528617355837
sum de = 0.0003195930459422628
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.23e-03 |
| force | 3.93e-03 |
| divB_cleaning | 2.40e-03 |
+---------------+----------+
Info: cfl dt = 0.0012333651227995092 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 | 7.7303e+04 | 12514 | 1 | 1.619e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.085421426015095 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.27346081320201193, dt = 0.0012333651227995092 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.58 us (1.6%)
patch tree reduce : 1.30 us (0.4%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 274.58 us (94.6%)
LB move op cnt : 0
LB apply : 2.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (60.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.8090938149272806
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9425739202595644e-05,8.337644959043228e-08,-6.068311470858718e-12)
sum a = (2.503762428194313e-06,-1.6107054667768864e-06,-2.8143920238440846e-10)
sum e = 0.010033239838625722
sum de = 0.00031944699286723724
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.24e-03 |
| force | 3.90e-03 |
| divB_cleaning | 2.40e-03 |
+---------------+----------+
Info: cfl dt = 0.0012370002485079029 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 | 6.3147e+04 | 12514 | 1 | 1.982e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.40514518918416 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.27469417832481147, dt = 0.0003058216751885001 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.8%)
patch tree reduce : 1.52 us (0.5%)
gen split merge : 812.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 298.21 us (93.9%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (68.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.8088540834265614
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9424710653607933e-05,8.259524269006382e-08,-6.184022775998796e-12)
sum a = (2.5454424170124914e-06,-1.69530764103939e-06,-2.8413074092321827e-10)
sum e = 0.010033421005827305
sum de = 0.0003168998794791023
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.25e-03 |
| force | 3.90e-03 |
| divB_cleaning | 2.40e-03 |
+---------------+----------+
Info: cfl dt = 0.0012452666597638283 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 | 8.5193e+04 | 12514 | 1 | 1.469e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.495125434436688 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 193 [SPH][rank=0]
Info: time since start : 80.111560197 (s) [SPH][rank=0]
Info: dump to _to_trash/orztang_00011.vtk [VTK Dump][rank=0]
- took 2.38 ms, bandwidth = 295.03 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 895.67 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 897.62 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/rho_slice_0000011.npy
Saving metadata to _to_trash/plots/rho_slice_0000011.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 889.92 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/vy_slice_0000011.npy
Saving metadata to _to_trash/plots/vy_slice_0000011.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.005782216000000001 s
Info: compute_slice took 898.83 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/By_slice_0000011.npy
Saving metadata to _to_trash/plots/By_slice_0000011.json
Info: evolve_until (target_time = 0.30s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.27499999999999997, dt = 0.0012452666597638283 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.73 us (2.6%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 344.00 us (93.5%)
LB move op cnt : 0
LB apply : 4.23 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (68.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.8093335464279994
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.94215345257098e-05,8.047119601709977e-08,-6.538252880163732e-12)
sum a = (2.7086850726281356e-06,-1.9783607199892526e-06,-2.8399122510200636e-10)
sum e = 0.010036647471729917
sum de = 0.0003196459110066172
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.27e-03 |
| force | 3.89e-03 |
| divB_cleaning | 2.40e-03 |
+---------------+----------+
Info: cfl dt = 0.0012659534996751053 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 | 8.4294e+04 | 12514 | 1 | 1.485e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.19723446333553 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2762452666597638, dt = 0.0012659534996751053 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.16 us (1.2%)
patch tree reduce : 1.38 us (0.4%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 682.00 ns (0.2%)
LB compute : 320.24 us (95.4%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (68.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.808374620425124
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.941800381604414e-05,7.779044505888125e-08,-6.8976856982246565e-12)
sum a = (2.612674050575471e-06,-2.0380910900953006e-06,-3.053576532884187e-10)
sum e = 0.010039456981472404
sum de = 0.0003194479007453509
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.27e-03 |
| force | 3.94e-03 |
| divB_cleaning | 2.40e-03 |
+---------------+----------+
Info: cfl dt = 0.0012704733076565407 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 | 7.9755e+04 | 12514 | 1 | 1.569e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.045766211082608 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2775112201594389, dt = 0.0012704733076565407 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.38 us (1.5%)
patch tree reduce : 1.41 us (0.5%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 284.45 us (94.6%)
LB move op cnt : 0
LB apply : 3.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (65.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.8105322039315954
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9414745256145872e-05,7.516329679497793e-08,-7.299158898245371e-12)
sum a = (2.255487894798879e-06,-1.9292502777605384e-06,-2.874805302327433e-10)
sum e = 0.010042262185324287
sum de = 0.00031970703124863467
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.28e-03 |
| force | 4.00e-03 |
| divB_cleaning | 2.40e-03 |
+---------------+----------+
Info: cfl dt = 0.0012848501627949636 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 | 6.6310e+04 | 12514 | 1 | 1.887e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.23548755670656 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.27878169346709547, dt = 0.0012848501627949636 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.24 us (1.4%)
patch tree reduce : 982.00 ns (0.3%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.3%)
LB compute : 291.62 us (95.0%)
LB move op cnt : 0
LB apply : 3.25 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (65.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.812450055937349
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9412074189895628e-05,7.275363893481484e-08,-7.65717210043447e-12)
sum a = (1.8233754850510876e-06,-1.7238823361799903e-06,-2.552487558112823e-10)
sum e = 0.010045111238019067
sum de = 0.00032031697043672166
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.31e-03 |
| force | 3.99e-03 |
| divB_cleaning | 2.40e-03 |
+---------------+----------+
Info: cfl dt = 0.0013097684159370203 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 | 6.2866e+04 | 12514 | 1 | 1.991e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.23656929575439 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2800665436298904, dt = 0.0013097684159370203 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.04 us (1.3%)
patch tree reduce : 23.69 us (7.5%)
gen split merge : 571.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 279.66 us (88.0%)
LB move op cnt : 0
LB apply : 3.81 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (69.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.8105322039315968
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.940996359012485e-05,7.062768581461146e-08,-7.970782358676235e-12)
sum a = (1.4116197661464235e-06,-1.5583055259218929e-06,-2.15639267125369e-10)
sum e = 0.01004802597539414
sum de = 0.00032117593647435476
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.28e-03 |
| force | 4.01e-03 |
| divB_cleaning | 2.40e-03 |
+---------------+----------+
Info: cfl dt = 0.0012793861784181802 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 | 7.1727e+04 | 12514 | 1 | 1.745e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.02618337492366 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2813763120458274, dt = 0.0012793861784181802 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.61 us (1.1%)
patch tree reduce : 821.00 ns (0.3%)
gen split merge : 471.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 531.00 ns (0.2%)
LB compute : 308.60 us (95.7%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.8110116669330343
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.940842723562489e-05,6.874244490145581e-08,-8.220728627979527e-12)
sum a = (1.1499897830882938e-06,-1.5789314655019417e-06,-2.2967861196807647e-10)
sum e = 0.010050824263362386
sum de = 0.0003217779797044043
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.28e-03 |
| force | 4.01e-03 |
| divB_cleaning | 2.41e-03 |
+---------------+----------+
Info: cfl dt = 0.0012788971492164985 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 | 6.1028e+04 | 12514 | 1 | 2.051e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.46140836189242 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2826556982242456, dt = 0.0012788971492164985 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.6%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.2%)
LB compute : 322.01 us (94.6%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (66.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.8131692504395063
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9407123879861622e-05,6.670995968032077e-08,-8.523444821907197e-12)
sum a = (1.0814355075963439e-06,-1.7477091203898053e-06,-2.151209293656589e-10)
sum e = 0.010053643028630897
sum de = 0.00032259657126322046
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.29e-03 |
| force | 4.03e-03 |
| divB_cleaning | 2.41e-03 |
+---------------+----------+
Info: cfl dt = 0.0012922818516986944 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 | 6.9361e+04 | 12514 | 1 | 1.804e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.518531165379585 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.28393459537346205, dt = 0.0012922818516986944 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.56 us (1.4%)
patch tree reduce : 1.16 us (0.4%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.3%)
LB compute : 314.08 us (95.0%)
LB move op cnt : 0
LB apply : 3.83 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (70.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.811251398433753
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9405770197315106e-05,6.434350227107684e-08,-8.792132805644176e-12)
sum a = (1.3203814599926475e-06,-2.046640467193538e-06,-2.971120912703534e-10)
sum e = 0.010056497303160179
sum de = 0.00032355612353115765
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.26e-03 |
| force | 4.04e-03 |
| divB_cleaning | 2.41e-03 |
+---------------+----------+
Info: cfl dt = 0.0012594534078021503 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 | 6.5524e+04 | 12514 | 1 | 1.910e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.359102504391316 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.28522687722516077, dt = 0.0012594534078021503 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.08 us (1.2%)
patch tree reduce : 812.00 ns (0.2%)
gen split merge : 561.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 311.38 us (95.4%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.811011666933035
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.940395284562704e-05,6.157270218282263e-08,-9.219309486723246e-12)
sum a = (1.7507415597663744e-06,-2.385415424018303e-06,-2.8741317597239597e-10)
sum e = 0.010059232273291975
sum de = 0.00032435073120605214
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.27e-03 |
| force | 4.01e-03 |
| divB_cleaning | 2.41e-03 |
+---------------+----------+
Info: cfl dt = 0.0012718499054057229 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 | 8.1777e+04 | 12514 | 1 | 1.530e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.629186237758784 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2864863306329629, dt = 0.0012718499054057229 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.7%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 294.53 us (94.2%)
LB move op cnt : 0
LB apply : 3.66 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (65.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.8122103244366294
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9401455155892495e-05,5.8325476164542755e-08,-9.578748241272238e-12)
sum a = (2.1984066979197016e-06,-2.673752399280736e-06,-2.712282256848777e-10)
sum e = 0.010062022331465926
sum de = 0.00032537978310428627
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.29e-03 |
| force | 3.99e-03 |
| divB_cleaning | 2.41e-03 |
+---------------+----------+
Info: cfl dt = 0.0012882556495738065 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 | 6.7668e+04 | 12514 | 1 | 1.849e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.75840864036223 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.28775818053836866, dt = 0.0012882556495738065 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.65 us (1.3%)
patch tree reduce : 982.00 ns (0.3%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 328.84 us (95.5%)
LB move op cnt : 0
LB apply : 3.25 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (70.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.808614351925842
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9398338364612147e-05,5.469763885350648e-08,-9.917867121549769e-12)
sum a = (2.6141470615123372e-06,-2.870863640780232e-06,-3.188385250074382e-10)
sum e = 0.01006484005529846
sum de = 0.0003263585136325513
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.31e-03 |
| force | 4.03e-03 |
| divB_cleaning | 2.41e-03 |
+---------------+----------+
Info: cfl dt = 0.001309068011826024 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 | 7.2464e+04 | 12514 | 1 | 1.727e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.8554577035762 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.28904643618794246, dt = 0.001309068011826024 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.05 us (1.5%)
patch tree reduce : 1.07 us (0.3%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 320.61 us (95.0%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (66.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.810292472430877
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9394648478379536e-05,5.081251825953081e-08,-1.0365915554307283e-11)
sum a = (2.968454526511933e-06,-2.9925858603918255e-06,-2.8856443872052506e-10)
sum e = 0.010067692303395447
sum de = 0.0003273747168151196
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.28e-03 |
| force | 4.04e-03 |
| divB_cleaning | 2.41e-03 |
+---------------+----------+
Info: cfl dt = 0.0012800683345814022 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 | 7.8744e+04 | 12514 | 1 | 1.589e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.654352273260375 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.29035550419976847, dt = 0.0012800683345814022 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.35 us (1.4%)
patch tree reduce : 1.28 us (0.4%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 732.00 ns (0.2%)
LB compute : 289.30 us (94.6%)
LB move op cnt : 0
LB apply : 3.25 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (65.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.8095732779287204
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9390616747453217e-05,4.690213252927635e-08,-1.0715482335624402e-11)
sum a = (3.13337674646212e-06,-2.9833002095712595e-06,-4.204034835912825e-10)
sum e = 0.010070422819283298
sum de = 0.00032798458415695455
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.29e-03 |
| force | 4.08e-03 |
| divB_cleaning | 2.42e-03 |
+---------------+----------+
Info: cfl dt = 0.0012918600967751635 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 | 8.1836e+04 | 12514 | 1 | 1.529e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.135969167089073 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.29163557253434985, dt = 0.0012918600967751635 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.84 us (1.5%)
patch tree reduce : 1.21 us (0.4%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 275.80 us (87.7%)
LB move op cnt : 0
LB apply : 3.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (69.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.809093814927282
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9386463307210668e-05,4.305406916561212e-08,-1.1342966313949947e-11)
sum a = (3.0553820160037083e-06,-2.843570176504909e-06,-5.467309933783687e-10)
sum e = 0.010073193636867837
sum de = 0.0003286587363168113
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.30e-03 |
| force | 4.06e-03 |
| divB_cleaning | 2.42e-03 |
+---------------+----------+
Info: cfl dt = 0.0013035600527474874 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 | 8.3139e+04 | 12514 | 1 | 1.505e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.897914334936 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.29292743263112503, dt = 0.0013035600527474874 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.8%)
patch tree reduce : 1.20 us (0.4%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 267.17 us (94.1%)
LB move op cnt : 0
LB apply : 2.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (68.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.8050183794150554
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9382530812408763e-05,3.943756050329135e-08,-1.2137261730920207e-11)
sum a = (2.84194334574317e-06,-2.645506243138238e-06,-5.148011436448049e-10)
sum e = 0.010075968139979082
sum de = 0.00032918558995285313
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.28e-03 |
| force | 4.03e-03 |
| divB_cleaning | 2.42e-03 |
+---------------+----------+
Info: cfl dt = 0.001279279429557057 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 | 8.2889e+04 | 12514 | 1 | 1.510e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.083699147809984 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.29423099268387254, dt = 0.001279279429557057 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.7%)
patch tree reduce : 1.36 us (0.4%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 309.96 us (94.5%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (69.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.801422406904267
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9379034287808516e-05,3.618231290137554e-08,-1.277502500593397e-11)
sum a = (2.6668674284199037e-06,-2.4772388933033476e-06,-5.978857393548906e-10)
sum e = 0.010078637130818233
sum de = 0.00032941112923972623
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.28e-03 |
| force | 4.04e-03 |
| divB_cleaning | 2.42e-03 |
+---------------+----------+
Info: cfl dt = 0.0012821004463841375 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 | 8.2925e+04 | 12514 | 1 | 1.509e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.51821171571791 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2955102721134296, dt = 0.0012821004463841375 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.6%)
patch tree reduce : 1.25 us (0.4%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 322.31 us (94.7%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (68.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.8031005274093026
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.937572708139769e-05,3.3113874290345564e-08,-1.3594718786469723e-11)
sum a = (2.5703141059495896e-06,-2.457549413734141e-06,-5.445035141495712e-10)
sum e = 0.010081308292049129
sum de = 0.0003294098394100688
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.29e-03 |
| force | 4.10e-03 |
| divB_cleaning | 2.42e-03 |
+---------------+----------+
Info: cfl dt = 0.0012942969350090933 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 | 7.1804e+04 | 12514 | 1 | 1.743e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.48367330722295 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2967923725598138, dt = 0.0012942969350090933 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.07 us (1.4%)
patch tree reduce : 1.01 us (0.3%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 681.00 ns (0.2%)
LB compute : 284.15 us (95.1%)
LB move op cnt : 0
LB apply : 3.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (70.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.804778647914337
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.93724622272576e-05,2.994569756170599e-08,-1.4265247328449083e-11)
sum a = (2.570992091623167e-06,-2.633111170308228e-06,-6.653578995429602e-10)
sum e = 0.010083984135844135
sum de = 0.0003291480342741916
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.31e-03 |
| force | 4.21e-03 |
| divB_cleaning | 2.42e-03 |
+---------------+----------+
Info: cfl dt = 0.0013089684746168484 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 | 6.3828e+04 | 12514 | 1 | 1.961e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.765738906291297 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2980866694948229, dt = 0.0013089684746168484 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.75 us (1.4%)
patch tree reduce : 1.50 us (0.5%)
gen split merge : 642.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 314.24 us (94.7%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (69.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.802621064407864
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.936909644090386e-05,2.6385423527697867e-08,-1.5214390573669613e-11)
sum a = (2.6297903310001368e-06,-3.0418326907748963e-06,-6.402547380932035e-10)
sum e = 0.010086660338771347
sum de = 0.000328700744582437
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.33e-03 |
| force | 4.12e-03 |
| divB_cleaning | 2.42e-03 |
+---------------+----------+
Info: cfl dt = 0.0013296751182340905 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 | 7.4800e+04 | 12514 | 1 | 1.673e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.16675888320842 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.29939563796943974, dt = 0.000604362030560246 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.3%)
patch tree reduce : 1.38 us (0.4%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 374.54 us (95.3%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (69.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.801662138404987
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.936746861295852e-05,2.4279553553798366e-08,-1.5584906603787377e-11)
sum a = (2.6750851583684536e-06,-3.2814687835503205e-06,-6.270684181535772e-10)
sum e = 0.010087447405525963
sum de = 0.00032624437249266383
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.33e-03 |
| force | 4.10e-03 |
| divB_cleaning | 2.42e-03 |
+---------------+----------+
Info: cfl dt = 0.001329089324849358 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 | 8.3124e+04 | 12514 | 1 | 1.505e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.452019312529343 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 213 [SPH][rank=0]
Info: time since start : 87.24158484600001 (s) [SPH][rank=0]
Info: dump to _to_trash/orztang_00012.vtk [VTK Dump][rank=0]
- took 2.30 ms, bandwidth = 304.22 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 900.50 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 895.56 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/rho_slice_0000012.npy
Saving metadata to _to_trash/plots/rho_slice_0000012.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 896.58 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/vy_slice_0000012.npy
Saving metadata to _to_trash/plots/vy_slice_0000012.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.005663298000000001 s
Info: compute_slice took 909.46 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/By_slice_0000012.npy
Saving metadata to _to_trash/plots/By_slice_0000012.json
Info: evolve_until (target_time = 0.33s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.3, dt = 0.001329089324849358 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.15 us (2.8%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 339.96 us (93.6%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7999840178999538
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.936389949859451e-05,1.984577494563092e-08,-1.641435188865802e-11)
sum a = (2.7916565064977838e-06,-3.8121493840593786e-06,-9.813588978763516e-10)
sum e = 0.01009054051414192
sum de = 0.0003281140572505844
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.34e-03 |
| force | 4.08e-03 |
| divB_cleaning | 2.43e-03 |
+---------------+----------+
Info: cfl dt = 0.0013355004740159423 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 | 7.0064e+04 | 12514 | 1 | 1.786e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.78908490079701 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.30132908932484936, dt = 0.0013355004740159423 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.7%)
patch tree reduce : 1.18 us (0.4%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 288.76 us (94.4%)
LB move op cnt : 0
LB apply : 3.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (65.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7973469713920407
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9360093773139706e-05,1.4401986675666081e-08,-1.7960399009375643e-11)
sum a = (2.908170740278338e-06,-4.340482401790392e-06,-9.306554706230853e-10)
sum e = 0.010093174326210472
sum de = 0.00032716240314730144
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.37e-03 |
| force | 4.13e-03 |
| divB_cleaning | 2.43e-03 |
+---------------+----------+
Info: cfl dt = 0.0013698869932331332 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 | 6.5058e+04 | 12514 | 1 | 1.924e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.99495183803572 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3026645897988653, dt = 0.0013698869932331332 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (1.8%)
patch tree reduce : 1.39 us (0.4%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 310.73 us (92.8%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (67.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.793271535879814
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.93560321054612e-05,8.103221791643516e-09,-1.920143460799928e-11)
sum a = (3.0186930017808025e-06,-4.813445198835892e-06,-1.0489432611103683e-09)
sum e = 0.01009584882492135
sum de = 0.00032640658664382846
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.38e-03 |
| force | 4.16e-03 |
| divB_cleaning | 2.43e-03 |
+---------------+----------+
Info: cfl dt = 0.0013818222574976202 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 | 8.1515e+04 | 12514 | 1 | 1.535e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.123840086912445 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.30403447679209844, dt = 0.0013818222574976202 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.6%)
patch tree reduce : 1.23 us (0.3%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 337.53 us (94.9%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (66.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7903947578711854
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9351785106778676e-05,1.127943288302645e-09,-2.0731908205889263e-11)
sum a = (3.0958804881590696e-06,-5.184520349667639e-06,-8.998767418074095e-10)
sum e = 0.010098478179569059
sum de = 0.0003252756723323036
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.31e-03 |
| force | 4.09e-03 |
| divB_cleaning | 2.43e-03 |
+---------------+----------+
Info: cfl dt = 0.001308378052423974 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 | 7.7990e+04 | 12514 | 1 | 1.605e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.002402515318213 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.30541629904959605, dt = 0.001308378052423974 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.90 us (1.5%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 630.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 315.72 us (94.7%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (63.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.787278248361835
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9347681195001424e-05,-5.911749300750766e-09,-2.1806295467786463e-11)
sum a = (3.055479700767506e-06,-5.4479329341500275e-06,-7.798817737018836e-10)
sum e = 0.010100846759365534
sum de = 0.0003237909282404344
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.33e-03 |
| force | 4.07e-03 |
| divB_cleaning | 2.43e-03 |
+---------------+----------+
Info: cfl dt = 0.0013344210534419081 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 | 8.2804e+04 | 12514 | 1 | 1.511e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.166650388391723 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.30672467710202, dt = 0.0013344210534419081 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.3%)
patch tree reduce : 1.31 us (0.3%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.2%)
LB compute : 418.53 us (95.8%)
LB move op cnt : 0
LB apply : 3.53 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (68.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7827233498481707
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9343630328312597e-05,-1.3353907327948565e-08,-2.2768486734393806e-11)
sum a = (2.942579749207114e-06,-5.578464585616612e-06,-6.123170633024427e-10)
sum e = 0.010103293573698581
sum de = 0.0003227870402276829
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.34e-03 |
| force | 4.11e-03 |
| divB_cleaning | 2.43e-03 |
+---------------+----------+
Info: cfl dt = 0.0013383572697932213 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 | 7.1931e+04 | 12514 | 1 | 1.740e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.613064316850664 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3080590981554619, dt = 0.0013383572697932213 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.6%)
patch tree reduce : 1.31 us (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 315.79 us (94.7%)
LB move op cnt : 0
LB apply : 3.18 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7793671088381013
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9339767433348975e-05,-2.0906978052176246e-08,-2.3476184788933313e-11)
sum a = (2.868755116689442e-06,-5.694651945496013e-06,-4.168924938091288e-10)
sum e = 0.010105675156997288
sum de = 0.0003215683034424924
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.35e-03 |
| force | 4.20e-03 |
| divB_cleaning | 2.43e-03 |
+---------------+----------+
Info: cfl dt = 0.0013502894282905558 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 | 6.5413e+04 | 12514 | 1 | 1.913e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.1849368568294 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3093974554252551, dt = 0.0013502894282905558 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.6%)
patch tree reduce : 1.17 us (0.3%)
gen split merge : 632.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 325.46 us (95.0%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (66.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7781684513345057
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9335943185509326e-05,-2.8674156470995836e-08,-2.3908336369255323e-11)
sum a = (2.8919501392752354e-06,-5.849878063559844e-06,-6.826152009370429e-11)
sum e = 0.0101080252201033
sum de = 0.0003204626665308782
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.33e-03 |
| force | 4.27e-03 |
| divB_cleaning | 2.43e-03 |
+---------------+----------+
Info: cfl dt = 0.0013342768475946066 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 | 7.0404e+04 | 12514 | 1 | 1.777e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.3484434430771 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.31074774485354567, dt = 0.0013342768475946066 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.6%)
patch tree reduce : 1.35 us (0.4%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 318.90 us (94.7%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (67.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.772175163816527
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.933206886339715e-05,-3.658431342571314e-08,-2.3764039776030373e-11)
sum a = (3.046235580789368e-06,-6.101896614816359e-06,1.562084372301133e-10)
sum e = 0.010110263674235032
sum de = 0.0003194740759545125
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.35e-03 |
| force | 4.30e-03 |
| divB_cleaning | 2.43e-03 |
+---------------+----------+
Info: cfl dt = 0.0013460827733990798 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 | 7.5830e+04 | 12514 | 1 | 1.650e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.10665433179224 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3120820217011403, dt = 0.0013460827733990798 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.4%)
patch tree reduce : 1.76 us (0.4%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 389.70 us (95.7%)
LB move op cnt : 0
LB apply : 3.13 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (66.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7690586543071753
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9327865448412008e-05,-4.496610260295103e-08,-2.340401775605601e-11)
sum a = (3.3469357679480996e-06,-6.459282760987349e-06,3.706860406454033e-10)
sum e = 0.010112480019970182
sum de = 0.0003188352478480923
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.36e-03 |
| force | 4.23e-03 |
| divB_cleaning | 2.43e-03 |
+---------------+----------+
Info: cfl dt = 0.0013607766535210896 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 | 8.2602e+04 | 12514 | 1 | 1.515e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.986568475537407 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3134281044745394, dt = 0.0013607766535210896 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.8%)
patch tree reduce : 1.26 us (0.4%)
gen split merge : 632.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 275.80 us (93.9%)
LB move op cnt : 0
LB apply : 3.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (69.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.760428320281284
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9323108632687e-05,-5.3996279450035694e-08,-2.275524454248001e-11)
sum a = (3.695433155908663e-06,-6.831542065306295e-06,5.71338255141054e-10)
sum e = 0.010114654545910786
sum de = 0.0003185080063445189
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.37e-03 |
| force | 4.18e-03 |
| divB_cleaning | 2.43e-03 |
+---------------+----------+
Info: cfl dt = 0.0013689319575803764 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 | 8.0587e+04 | 12514 | 1 | 1.553e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.54716167190514 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.31478888112806047, dt = 0.0013689319575803764 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.29 us (2.7%)
patch tree reduce : 1.21 us (0.3%)
gen split merge : 632.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 356.42 us (94.0%)
LB move op cnt : 0
LB apply : 3.45 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (70.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.757072079271215
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.931781272258831e-05,-6.360147658779929e-08,-2.1836599921966532e-11)
sum a = (4.0604182092440645e-06,-7.158948396423095e-06,5.208680749880807e-10)
sum e = 0.01011676444427889
sum de = 0.00031852491198899034
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.36e-03 |
| force | 4.19e-03 |
| divB_cleaning | 2.43e-03 |
+---------------+----------+
Info: cfl dt = 0.0013550271708209624 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 | 5.6114e+04 | 12514 | 1 | 2.230e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.09842423233263 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.31615781308564084, dt = 0.0013550271708209624 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.5%)
patch tree reduce : 1.34 us (0.4%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 350.39 us (95.3%)
LB move op cnt : 0
LB apply : 3.89 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (68.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7501198657503605
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9312060925738203e-05,-7.35261446743412e-08,-2.1165354649328237e-11)
sum a = (4.383153562270938e-06,-7.346911184292949e-06,3.876728206456789e-10)
sum e = 0.010118761146312697
sum de = 0.0003189033867316617
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.37e-03 |
| force | 4.26e-03 |
| divB_cleaning | 2.43e-03 |
+---------------+----------+
Info: cfl dt = 0.0013741627629671866 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 | 6.9551e+04 | 12514 | 1 | 1.799e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.111860509481694 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3175128402564618, dt = 0.0013741627629671866 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (1.6%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 351.44 us (94.8%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (67.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7438868467316593
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9305819101742368e-05,-8.374934378881242e-08,-2.0722870689348974e-11)
sum a = (4.605423046232208e-06,-7.398850356148135e-06,-1.0808389569269183e-10)
sum e = 0.010120734305542453
sum de = 0.00031982300251650144
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.37e-03 |
| force | 4.32e-03 |
| divB_cleaning | 2.43e-03 |
+---------------+----------+
Info: cfl dt = 0.001367011458212184 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 | 8.2262e+04 | 12514 | 1 | 1.521e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.51956135188882 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.318887003019429, dt = 0.001367011458212184 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.7%)
patch tree reduce : 1.26 us (0.4%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 324.53 us (94.6%)
LB move op cnt : 0
LB apply : 3.30 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (68.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7366949017100843
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9299370718444027e-05,-9.389934344141959e-08,-2.1211247822850758e-11)
sum a = (4.6506795530437645e-06,-7.304795106289298e-06,-3.7867305373605263e-10)
sum e = 0.010122595194406234
sum de = 0.00032084001788351365
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.34e-03 |
| force | 4.36e-03 |
| divB_cleaning | 2.43e-03 |
+---------------+----------+
Info: cfl dt = 0.0013428576562894616 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 | 8.2266e+04 | 12514 | 1 | 1.521e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.35185141084505 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3202540144776412, dt = 0.0013428576562894616 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.9%)
patch tree reduce : 1.27 us (0.4%)
gen split merge : 821.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 296.75 us (94.3%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (69.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7297426881892277
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.929309458471744e-05,-1.0364435617549286e-07,-2.1904701072027404e-11)
sum a = (4.530145313557419e-06,-7.112061787995695e-06,-5.970605776601278e-10)
sum e = 0.01012432661396792
sum de = 0.0003219110933947581
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.36e-03 |
| force | 4.33e-03 |
| divB_cleaning | 2.43e-03 |
+---------------+----------+
Info: cfl dt = 0.0013633300291432892 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 | 8.2896e+04 | 12514 | 1 | 1.510e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.02344858447363 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3215968721339306, dt = 0.0013633300291432892 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.5%)
patch tree reduce : 1.29 us (0.4%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 317.04 us (94.6%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (67.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7218315486654943
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9286999431738532e-05,-1.1321103687398367e-07,-2.286532336586046e-11)
sum a = (4.341687747212845e-06,-6.7828752839042315e-06,-1.0657378890426172e-09)
sum e = 0.01012603249377432
sum de = 0.00032325951693385835
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.34e-03 |
| force | 4.34e-03 |
| divB_cleaning | 2.43e-03 |
+---------------+----------+
Info: cfl dt = 0.0013400010804738628 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 | 8.3316e+04 | 12514 | 1 | 1.502e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.67645121638578 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3229602021630739, dt = 0.0013400010804738628 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.99 us (1.5%)
patch tree reduce : 1.19 us (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 326.07 us (95.0%)
LB move op cnt : 0
LB apply : 3.23 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (65.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7136806776410425
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.928131003039595e-05,-1.2207570216010158e-07,-2.4612894214866297e-11)
sum a = (4.168407297145397e-06,-6.408838845998196e-06,-1.3615733482348854e-09)
sum e = 0.010127585163302765
sum de = 0.00032445775909706526
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.36e-03 |
| force | 4.38e-03 |
| divB_cleaning | 2.44e-03 |
+---------------+----------+
Info: cfl dt = 0.0013624720393857052 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 | 8.2636e+04 | 12514 | 1 | 1.514e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.855202647764177 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3243002032435478, dt = 0.000699796756452209 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.64 us (1.5%)
patch tree reduce : 1.25 us (0.4%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.3%)
LB compute : 285.88 us (94.9%)
LB move op cnt : 0
LB apply : 3.55 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.711283362633851
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9278509090484962e-05,-1.263099821816376e-07,-2.5763928745127374e-11)
sum a = (4.102073714578246e-06,-6.1873014616747695e-06,-1.7233210891408787e-09)
sum e = 0.01012797694964195
sum de = 0.00032310049942733786
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.38e-03 |
| force | 4.41e-03 |
| divB_cleaning | 2.44e-03 |
+---------------+----------+
Info: cfl dt = 0.0013806615208814073 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 | 8.4516e+04 | 12514 | 1 | 1.481e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.01433036353085 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 232 [SPH][rank=0]
Info: time since start : 94.147701622 (s) [SPH][rank=0]
Info: dump to _to_trash/orztang_00013.vtk [VTK Dump][rank=0]
- took 2.34 ms, bandwidth = 299.12 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 923.25 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 881.12 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/rho_slice_0000013.npy
Saving metadata to _to_trash/plots/rho_slice_0000013.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 881.51 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/vy_slice_0000013.npy
Saving metadata to _to_trash/plots/vy_slice_0000013.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.005762763000000001 s
Info: compute_slice took 884.31 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/By_slice_0000013.npy
Saving metadata to _to_trash/plots/By_slice_0000013.json
Info: evolve_until (target_time = 0.35s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.325, dt = 0.0013806615208814073 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.22 us (2.4%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 404.80 us (94.5%)
LB move op cnt : 0
LB apply : 3.97 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (68.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7084065846252203
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9272868725164495e-05,-1.3477503565646592e-07,-2.8269826808878427e-11)
sum a = (3.906753472532011e-06,-5.720146051787816e-06,-2.3536586913892325e-09)
sum e = 0.010129861355524815
sum de = 0.0003270174854575464
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.36e-03 |
| force | 4.44e-03 |
| divB_cleaning | 2.44e-03 |
+---------------+----------+
Info: cfl dt = 0.0013627610087032177 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 | 8.1684e+04 | 12514 | 1 | 1.532e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.4439055300568 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3263806615208814, dt = 0.0013627610087032177 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.6%)
patch tree reduce : 1.16 us (0.4%)
gen split merge : 642.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 306.95 us (94.8%)
LB move op cnt : 0
LB apply : 3.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (67.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.70529007511587
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9267679589432645e-05,-1.4224773591049584e-07,-3.1912442537489965e-11)
sum a = (3.939658550765451e-06,-5.3178477096498245e-06,-2.8466610353696144e-09)
sum e = 0.010131197718291398
sum de = 0.00032819692105537536
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.39e-03 |
| force | 4.43e-03 |
| divB_cleaning | 2.44e-03 |
+---------------+----------+
Info: cfl dt = 0.0013854555134086854 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 | 8.3019e+04 | 12514 | 1 | 1.507e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.54648483575588 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3277434225295846, dt = 0.0013854555134086854 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.99 us (1.4%)
patch tree reduce : 1.08 us (0.3%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 341.11 us (95.4%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (69.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.700974908102925
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.926219894689363e-05,-1.493412590921582e-07,-3.619228694961914e-11)
sum a = (4.073676282483564e-06,-4.989014943846408e-06,-3.268873650990136e-09)
sum e = 0.01013247180742834
sum de = 0.0003298897534655225
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.40e-03 |
| force | 4.34e-03 |
| divB_cleaning | 2.44e-03 |
+---------------+----------+
Info: cfl dt = 0.0013975199652706874 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 | 7.6201e+04 | 12514 | 1 | 1.642e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.37122009416883 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3291288780429933, dt = 0.0013975199652706874 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (1.9%)
patch tree reduce : 1.26 us (0.4%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.3%)
LB compute : 305.45 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.28 us (69.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.699057056097171
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9256413065154143e-05,-1.560857154988126e-07,-4.105308153892833e-11)
sum a = (4.3192837142625145e-06,-4.732588333638727e-06,-3.5589284534234373e-09)
sum e = 0.010133630745515994
sum de = 0.00033163572991784496
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.37e-03 |
| force | 4.30e-03 |
| divB_cleaning | 2.44e-03 |
+---------------+----------+
Info: cfl dt = 0.0013706728837819973 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 | 8.2051e+04 | 12514 | 1 | 1.525e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.98754112253284 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.330526398008264, dt = 0.0013706728837819973 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.6%)
patch tree reduce : 1.19 us (0.4%)
gen split merge : 621.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 299.79 us (94.7%)
LB move op cnt : 0
LB apply : 3.17 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (63.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.695461083586383
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9250321119444834e-05,-1.6239336534430343e-07,-4.613388695407279e-11)
sum a = (4.5684469249200105e-06,-4.5477088169946245e-06,-3.8437580598836116e-09)
sum e = 0.010134613903431244
sum de = 0.00033321517501263696
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.38e-03 |
| force | 4.31e-03 |
| divB_cleaning | 2.44e-03 |
+---------------+----------+
Info: cfl dt = 0.00138008438021277 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 | 8.3001e+04 | 12514 | 1 | 1.508e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.728420419905305 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.331897070892046, dt = 0.00138008438021277 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.7%)
patch tree reduce : 1.27 us (0.4%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 296.29 us (94.3%)
LB move op cnt : 0
LB apply : 3.62 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (68.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6928240370784726
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9243845516573384e-05,-1.6854288257818768e-07,-5.1633801522815083e-11)
sum a = (4.735687843154415e-06,-4.4394890524000885e-06,-4.1213544451172536e-09)
sum e = 0.010135510097741631
sum de = 0.00033504447335561474
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.39e-03 |
| force | 4.38e-03 |
| divB_cleaning | 2.45e-03 |
+---------------+----------+
Info: cfl dt = 0.0013915805598117275 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 | 8.3371e+04 | 12514 | 1 | 1.501e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.10001141085084 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.33327715527225876, dt = 0.0013915805598117275 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.01 us (1.6%)
patch tree reduce : 1.52 us (0.5%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 291.68 us (94.4%)
LB move op cnt : 0
LB apply : 3.65 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (65.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6906664535719993
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9237140022144428e-05,-1.746461130357788e-07,-5.756055146635779e-11)
sum a = (4.730776486746688e-06,-4.408424876824162e-06,-4.3413235883309726e-09)
sum e = 0.010136286035376052
sum de = 0.0003370345370738383
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.37e-03 |
| force | 4.51e-03 |
| divB_cleaning | 2.45e-03 |
+---------------+----------+
Info: cfl dt = 0.0013719345789418823 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 | 8.2938e+04 | 12514 | 1 | 1.509e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.20237674881124 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.33466873583207046, dt = 0.0013719345789418823 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.28 us (1.4%)
patch tree reduce : 1.18 us (0.4%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 284.78 us (95.0%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (66.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6839539715518623
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.923065312357112e-05,-1.806725694114077e-07,-6.366961580728916e-11)
sum a = (4.662000796764271e-06,-4.4030421028082326e-06,-4.526831131963085e-09)
sum e = 0.010136892519420602
sum de = 0.0003390272362974607
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.39e-03 |
| force | 4.50e-03 |
| divB_cleaning | 2.45e-03 |
+---------------+----------+
Info: cfl dt = 0.0013885138086313657 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 | 7.5720e+04 | 12514 | 1 | 1.653e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.88495603422279 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3360406704110123, dt = 0.0013885138086313657 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.9%)
patch tree reduce : 1.33 us (0.5%)
gen split merge : 611.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 269.04 us (94.1%)
LB move op cnt : 0
LB apply : 3.18 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (66.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.679399073038198
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9224227048962596e-05,-1.8678256176438816e-07,-7.008243545017673e-11)
sum a = (4.3640444544782684e-06,-4.367342031738978e-06,-4.554370130377454e-09)
sum e = 0.01013740155853016
sum de = 0.000341406879858935
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.41e-03 |
| force | 4.48e-03 |
| divB_cleaning | 2.45e-03 |
+---------------+----------+
Info: cfl dt = 0.0014125619213313505 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 | 7.0415e+04 | 12514 | 1 | 1.777e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.126887604941157 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3374291842196437, dt = 0.0014125619213313505 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.8%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 632.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 294.10 us (94.3%)
LB move op cnt : 0
LB apply : 3.18 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (68.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.674364711523094
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9218269424190607e-05,-1.929269177950243e-07,-7.653488441190611e-11)
sum a = (4.026989830340981e-06,-4.3058080376726794e-06,-4.45002264703338e-09)
sum e = 0.010137783055217469
sum de = 0.00034410663424310395
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.40e-03 |
| force | 4.51e-03 |
| divB_cleaning | 2.45e-03 |
+---------------+----------+
Info: cfl dt = 0.0014029734902027834 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 | 8.2900e+04 | 12514 | 1 | 1.510e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.68760039288197 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.338841746140975, dt = 0.0014029734902027834 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.8%)
patch tree reduce : 1.20 us (0.4%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 281.86 us (94.1%)
LB move op cnt : 0
LB apply : 3.46 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6736455170209363
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9212857719477452e-05,-1.989243920373799e-07,-8.27044495757156e-11)
sum a = (3.6947732041437952e-06,-4.2877821726145435e-06,-4.2183126410966255e-09)
sum e = 0.01013798559934283
sum de = 0.0003467711744249114
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.40e-03 |
| force | 4.60e-03 |
| divB_cleaning | 2.45e-03 |
+---------------+----------+
Info: cfl dt = 0.0013975000883493377 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 | 7.1934e+04 | 12514 | 1 | 1.740e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.03280841614421 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3402447196311778, dt = 0.0013975000883493377 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.84 us (1.6%)
patch tree reduce : 1.16 us (0.4%)
gen split merge : 611.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 293.35 us (94.7%)
LB move op cnt : 0
LB apply : 3.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (65.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6690906185072714
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9207927319157915e-05,-2.049039230969093e-07,-8.843700036663683e-11)
sum a = (3.387326534597046e-06,-4.305490104302379e-06,-3.826175941047504e-09)
sum e = 0.01013804308310209
sum de = 0.00034949606623591473
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.38e-03 |
| force | 4.65e-03 |
| divB_cleaning | 2.45e-03 |
+---------------+----------+
Info: cfl dt = 0.0013849626155900752 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 | 8.0566e+04 | 12514 | 1 | 1.553e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.39009146834818 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.34164221971952713, dt = 0.0013849626155900752 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.34 us (1.4%)
patch tree reduce : 1.14 us (0.4%)
gen split merge : 591.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 295.73 us (94.9%)
LB move op cnt : 0
LB apply : 3.65 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (67.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6686111555058334
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.920345082691484e-05,-2.1087923935120332e-07,-9.346210546908849e-11)
sum a = (3.249348615540365e-06,-4.414045082916614e-06,-3.2882385444395755e-09)
sum e = 0.010137946431990678
sum de = 0.0003521863199947042
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.39e-03 |
| force | 4.67e-03 |
| divB_cleaning | 2.45e-03 |
+---------------+----------+
Info: cfl dt = 0.0013913400154697943 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 | 7.0026e+04 | 12514 | 1 | 1.787e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.899849595406682 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3430271823351172, dt = 0.0013913400154697943 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.8%)
patch tree reduce : 1.21 us (0.4%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 287.47 us (94.0%)
LB move op cnt : 0
LB apply : 3.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (70.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.668850887006553
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9199025425291626e-05,-2.1709584919874358e-07,-9.766465174454175e-11)
sum a = (3.1925157065803323e-06,-4.529318982239756e-06,-2.7382158206933234e-09)
sum e = 0.010137717159819093
sum de = 0.0003549127252791324
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.41e-03 |
| force | 4.64e-03 |
| divB_cleaning | 2.46e-03 |
+---------------+----------+
Info: cfl dt = 0.0014069950866944935 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 | 7.6145e+04 | 12514 | 1 | 1.643e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.477700031269546 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.344418522350587, dt = 0.0014069950866944935 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.30 us (2.0%)
patch tree reduce : 1.34 us (0.4%)
gen split merge : 701.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 292.27 us (93.8%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6714879335144626
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9194573108328372e-05,-2.2354877134729945e-07,-1.0113467363812925e-10)
sum a = (3.0818881639347458e-06,-4.653600870082487e-06,-2.106070430271333e-09)
sum e = 0.010137341393242393
sum de = 0.0003575355756393021
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.36e-03 |
| force | 4.60e-03 |
| divB_cleaning | 2.46e-03 |
+---------------+----------+
Info: cfl dt = 0.0013590242675825775 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 | 7.5701e+04 | 12514 | 1 | 1.653e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.640885726858986 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3458255174372815, dt = 0.0013590242675825775 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (2.0%)
patch tree reduce : 1.46 us (0.5%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 275.32 us (93.4%)
LB move op cnt : 0
LB apply : 3.66 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (59.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6714879335144635
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9190462573727983e-05,-2.2996055986413435e-07,-1.0355216173267576e-10)
sum a = (2.9969493183071786e-06,-4.798542019979507e-06,-1.4504764233977003e-09)
sum e = 0.01013677583163467
sum de = 0.0003595212561981551
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.33e-03 |
| force | 4.62e-03 |
| divB_cleaning | 2.46e-03 |
+---------------+----------+
Info: cfl dt = 0.0013339177853311547 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 | 8.0161e+04 | 12514 | 1 | 1.561e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.339638408482113 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.34718454170486407, dt = 0.0013339177853311547 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.46 us (1.9%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 322.82 us (94.2%)
LB move op cnt : 0
LB apply : 3.90 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (69.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.670529007511587
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9186522606706756e-05,-2.3645990967828943e-07,-1.0504149394856419e-10)
sum a = (2.788867650889485e-06,-4.86210816552775e-06,-8.075369668163414e-10)
sum e = 0.010136101823590626
sum de = 0.0003612646312094282
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.38e-03 |
| force | 4.70e-03 |
| divB_cleaning | 2.46e-03 |
+---------------+----------+
Info: cfl dt = 0.0013764373417586666 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 | 8.1585e+04 | 12514 | 1 | 1.534e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.30737698018802 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3485184594901952, dt = 0.0013764373417586666 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.5%)
patch tree reduce : 1.54 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 345.73 us (95.0%)
LB move op cnt : 0
LB apply : 3.87 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (66.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.668371424005115
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9182822687049385e-05,-2.4319469292285227e-07,-1.0572420379671463e-10)
sum a = (2.509438387841932e-06,-4.816299722669109e-06,-1.9519997822652836e-10)
sum e = 0.01013532728447671
sum de = 0.00036300842943713413
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.41e-03 |
| force | 4.76e-03 |
| divB_cleaning | 2.46e-03 |
+---------------+----------+
Info: cfl dt = 0.0014056766589650978 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 | 8.0221e+04 | 12514 | 1 | 1.560e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.76515245131386 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3498948968319539, dt = 0.00010510316804612785 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.96 us (1.3%)
patch tree reduce : 1.23 us (0.3%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 355.64 us (95.0%)
LB move op cnt : 0
LB apply : 3.91 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (68.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6669330350008003
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.918275124556081e-05,-2.4366937505646107e-07,-1.0532329818447847e-10)
sum a = (2.493701168474261e-06,-4.796370050983987e-06,-2.15842279971677e-10)
sum e = 0.010134634294995346
sum de = 0.00036015504718003074
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.41e-03 |
| force | 4.76e-03 |
| divB_cleaning | 2.46e-03 |
+---------------+----------+
Info: cfl dt = 0.001411178396563375 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 | 5.9528e+04 | 12514 | 1 | 2.102e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.799874955206937 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 251 [SPH][rank=0]
Info: time since start : 100.941313475 (s) [SPH][rank=0]
Info: dump to _to_trash/orztang_00014.vtk [VTK Dump][rank=0]
- took 2.27 ms, bandwidth = 308.31 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 911.95 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 910.33 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/rho_slice_0000014.npy
Saving metadata to _to_trash/plots/rho_slice_0000014.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 889.54 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/vy_slice_0000014.npy
Saving metadata to _to_trash/plots/vy_slice_0000014.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.005825159000000001 s
Info: compute_slice took 898.60 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/By_slice_0000014.npy
Saving metadata to _to_trash/plots/By_slice_0000014.json
Info: evolve_until (target_time = 0.38s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.35000000000000003, dt = 0.001411178396563375 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.19 us (2.0%)
patch tree reduce : 1.99 us (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 445.12 us (95.0%)
LB move op cnt : 0
LB apply : 3.94 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (68.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6678919610036766
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9179233015360063e-05,-2.504368615184406e-07,-1.0562897493279899e-10)
sum a = (2.108641181542228e-06,-4.630414427469366e-06,3.4024358120631986e-10)
sum e = 0.010134299170046235
sum de = 0.0003648851896195103
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.39e-03 |
| force | 4.70e-03 |
| divB_cleaning | 2.46e-03 |
+---------------+----------+
Info: cfl dt = 0.0013890529881186479 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 | 7.8385e+04 | 12514 | 1 | 1.596e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.82167594488301 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3514111783965634, dt = 0.0013890529881186479 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.6%)
patch tree reduce : 1.13 us (0.3%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 321.95 us (94.7%)
LB move op cnt : 0
LB apply : 3.90 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (67.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.671008470513026
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.917657569519359e-05,-2.5675165601961696e-07,-1.0476399039276576e-10)
sum a = (1.8064376333896998e-06,-4.400522563513127e-06,7.205783617072356e-10)
sum e = 0.01013317873227817
sum de = 0.00036565236117684256
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.42e-03 |
| force | 4.69e-03 |
| divB_cleaning | 2.46e-03 |
+---------------+----------+
Info: cfl dt = 0.0014171791428849159 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 | 6.6529e+04 | 12514 | 1 | 1.881e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.58514630396767 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.35280023138468203, dt = 0.0014171791428849159 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.6%)
patch tree reduce : 1.36 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 320.81 us (94.8%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6690906185072705
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.917422553782747e-05,-2.6282831882431417e-07,-1.0347864918596095e-10)
sum a = (1.5811965184246855e-06,-4.175711760165729e-06,6.400296026520404e-10)
sum e = 0.010131946032622612
sum de = 0.00036684378172560287
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.38e-03 |
| force | 4.69e-03 |
| divB_cleaning | 2.46e-03 |
+---------------+----------+
Info: cfl dt = 0.0013754892120292884 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 | 7.3740e+04 | 12514 | 1 | 1.697e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.063100691831174 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.35421741052756694, dt = 0.0013754892120292884 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.7%)
patch tree reduce : 1.32 us (0.4%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 319.91 us (94.3%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (69.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.671008470513025
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.917221022257933e-05,-2.684126667123083e-07,-1.0265537138266297e-10)
sum a = (1.495831160582984e-06,-4.013120245865449e-06,2.1572912056566557e-10)
sum e = 0.010130570526538193
sum de = 0.0003677015504049098
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.40e-03 |
| force | 4.70e-03 |
| divB_cleaning | 2.46e-03 |
+---------------+----------+
Info: cfl dt = 0.0013960015812877918 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 | 6.5328e+04 | 12514 | 1 | 1.916e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.85003195679244 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.35559289973959624, dt = 0.0013960015812877918 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.6%)
patch tree reduce : 1.38 us (0.4%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 316.39 us (94.7%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (68.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.671727665015184
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9170180749478313e-05,-2.7390316748437085e-07,-1.026460235573141e-10)
sum a = (1.525030416490017e-06,-3.888216582399004e-06,9.370769417260759e-11)
sum e = 0.010129125341618936
sum de = 0.0003689145346534333
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.43e-03 |
| force | 4.74e-03 |
| divB_cleaning | 2.46e-03 |
+---------------+----------+
Info: cfl dt = 0.0014253260620404504 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 | 8.1158e+04 | 12514 | 1 | 1.542e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.59276488675768 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.356988901320884, dt = 0.0014253260620404504 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.7%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 313.21 us (94.5%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (65.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6734057855202185
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9167986702776574e-05,-2.7935796105825813e-07,-1.025976305905171e-10)
sum a = (1.6291900334064925e-06,-3.836493737142489e-06,-4.6057160823006456e-10)
sum e = 0.01012755917378482
sum de = 0.00037018730069147244
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.45e-03 |
| force | 4.76e-03 |
| divB_cleaning | 2.46e-03 |
+---------------+----------+
Info: cfl dt = 0.0014494635064733526 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 | 6.5053e+04 | 12514 | 1 | 1.924e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.674091613785013 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.35841422738292444, dt = 0.0014494635064733526 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.9%)
patch tree reduce : 1.35 us (0.5%)
gen split merge : 742.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.3%)
LB compute : 276.13 us (94.0%)
LB move op cnt : 0
LB apply : 3.13 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (70.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6738852485216555
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9165551020569623e-05,-2.848819577633386e-07,-1.0366022669647524e-10)
sum a = (1.8936524252779611e-06,-3.879500624542687e-06,-6.747216672814675e-10)
sum e = 0.010125871927439674
sum de = 0.00037145928042008145
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.38e-03 |
| force | 4.70e-03 |
| divB_cleaning | 2.46e-03 |
+---------------+----------+
Info: cfl dt = 0.001375407020861946 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 | 7.3418e+04 | 12514 | 1 | 1.704e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.61370114253705 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3598636908893978, dt = 0.001375407020861946 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.8%)
patch tree reduce : 1.44 us (0.5%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 298.82 us (94.3%)
LB move op cnt : 0
LB apply : 3.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (59.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6731660540194992
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9162754813435856e-05,-2.9024901861674235e-07,-1.0474344496249044e-10)
sum a = (2.232997424249785e-06,-4.037434507097432e-06,-7.77025555664714e-10)
sum e = 0.010124112279825685
sum de = 0.0003722345298224469
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.40e-03 |
| force | 4.69e-03 |
| divB_cleaning | 2.46e-03 |
+---------------+----------+
Info: cfl dt = 0.0013989450135562377 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 | 6.9133e+04 | 12514 | 1 | 1.810e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.353950906934738 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3612390979102597, dt = 0.0013989450135562377 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.5%)
patch tree reduce : 1.21 us (0.3%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 332.51 us (95.0%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (67.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.66980981300943
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9159397604076956e-05,-2.9600577917351094e-07,-1.059008157322196e-10)
sum a = (2.5052132708969243e-06,-4.260878705369527e-06,-1.0064703670795199e-09)
sum e = 0.010122352699593344
sum de = 0.0003733947887937836
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.43e-03 |
| force | 4.73e-03 |
| divB_cleaning | 2.46e-03 |
+---------------+----------+
Info: cfl dt = 0.001432363896345937 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 | 7.5568e+04 | 12514 | 1 | 1.656e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.411826817817296 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.36263804292381596, dt = 0.001432363896345937 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.0%)
patch tree reduce : 1.28 us (0.2%)
gen split merge : 701.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.34 us (0.2%)
LB compute : 546.56 us (96.4%)
LB move op cnt : 0
LB apply : 4.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.60 us (75.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6681316925043963
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9155618819534483e-05,-3.022652010713267e-07,-1.0750293788618587e-10)
sum a = (2.760333040984154e-06,-4.43568680958789e-06,-1.4294155708739551e-09)
sum e = 0.010120511661290814
sum de = 0.00037434528606208086
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.36e-03 |
| force | 4.68e-03 |
| divB_cleaning | 2.46e-03 |
+---------------+----------+
Info: cfl dt = 0.0013582671108289446 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 | 8.0793e+04 | 12514 | 1 | 1.549e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.29162108790397 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3640704068201619, dt = 0.0013582671108289446 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.4%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.39 us (0.4%)
LB compute : 360.43 us (95.1%)
LB move op cnt : 0
LB apply : 3.47 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (68.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6669330350007985
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.915168683777602e-05,-3.0841524298716317e-07,-1.0974737176371394e-10)
sum a = (2.921812965867061e-06,-4.460519884711872e-06,-1.4911431447034962e-09)
sum e = 0.010118640144690584
sum de = 0.00037449279390626737
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.39e-03 |
| force | 4.66e-03 |
| divB_cleaning | 2.46e-03 |
+---------------+----------+
Info: cfl dt = 0.0013918460688592297 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 | 7.2877e+04 | 12514 | 1 | 1.717e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.476140905674534 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3654286739309908, dt = 0.0013918460688592297 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.07 us (1.4%)
patch tree reduce : 1.26 us (0.4%)
gen split merge : 622.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 341.01 us (95.3%)
LB move op cnt : 0
LB apply : 3.25 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (66.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.668850887006554
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9147510457450267e-05,-3.146404650285228e-07,-1.1186473475465346e-10)
sum a = (3.041594197421165e-06,-4.387040614162833e-06,-1.5779418876430884e-09)
sum e = 0.010116788950914406
sum de = 0.00037475875086266793
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.41e-03 |
| force | 4.69e-03 |
| divB_cleaning | 2.46e-03 |
+---------------+----------+
Info: cfl dt = 0.0014102071768229147 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 | 6.7047e+04 | 12514 | 1 | 1.866e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.845715660702574 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.36682051999985005, dt = 0.0014102071768229147 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.4%)
patch tree reduce : 1.29 us (0.3%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.2%)
LB compute : 394.38 us (95.4%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.668371424005114
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.914313782096572e-05,-3.2077596527086617e-07,-1.1415036497378761e-10)
sum a = (3.1309232271775754e-06,-4.298901222711899e-06,-2.004493964713767e-09)
sum e = 0.010114883838939426
sum de = 0.00037457911127420615
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.44e-03 |
| force | 4.71e-03 |
| divB_cleaning | 2.46e-03 |
+---------------+----------+
Info: cfl dt = 0.0014376716149380466 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 | 8.0445e+04 | 12514 | 1 | 1.556e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.635427793114175 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.368230727176673, dt = 0.0014376716149380466 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.4%)
patch tree reduce : 1.26 us (0.3%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 370.90 us (95.3%)
LB move op cnt : 0
LB apply : 3.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6683714240051155
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.91385735952941e-05,-3.268942261328334e-07,-1.1733293244938454e-10)
sum a = (3.2807368962089213e-06,-4.1559403848159395e-06,-2.134045660264311e-09)
sum e = 0.010112939191750582
sum de = 0.0003740063505716409
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.48e-03 |
| force | 4.66e-03 |
| divB_cleaning | 2.46e-03 |
+---------------+----------+
Info: cfl dt = 0.001475213194846207 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 | 8.1068e+04 | 12514 | 1 | 1.544e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.52840311149822 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.36966839879161106, dt = 0.001475213194846207 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.6%)
patch tree reduce : 1.30 us (0.4%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 339.91 us (94.7%)
LB move op cnt : 0
LB apply : 3.88 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (68.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6678919610036753
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.913362611750613e-05,-3.329223588561338e-07,-1.205742311635291e-10)
sum a = (3.5056553171179487e-06,-3.989380100562487e-06,-2.2406223203535507e-09)
sum e = 0.010110949641429109
sum de = 0.0003730560797440437
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.41e-03 |
| force | 4.58e-03 |
| divB_cleaning | 2.46e-03 |
+---------------+----------+
Info: cfl dt = 0.0014124731088836677 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 | 7.1518e+04 | 12514 | 1 | 1.750e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.351295543824673 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3711436119864573, dt = 0.0014124731088836677 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.6%)
patch tree reduce : 1.35 us (0.4%)
gen split merge : 642.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 316.05 us (94.7%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (68.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.66405625699217
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9128508572330476e-05,-3.3843439500483603e-07,-1.238176615857007e-10)
sum a = (3.832336396994772e-06,-3.7994750989337885e-06,-2.52373989355393e-09)
sum e = 0.0101089663626826
sum de = 0.00037147689171986085
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.46e-03 |
| force | 4.56e-03 |
| divB_cleaning | 2.46e-03 |
+---------------+----------+
Info: cfl dt = 0.0014643592624084738 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 | 8.2284e+04 | 12514 | 1 | 1.521e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.43513913534455 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.37255608509534094, dt = 0.0014643592624084738 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.6%)
patch tree reduce : 1.29 us (0.4%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 322.06 us (94.7%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (67.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.663816525491449
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9122665940910757e-05,-3.438640737039995e-07,-1.2771327145408579e-10)
sum a = (4.112173489902007e-06,-3.620652320020293e-06,-2.437748601525214e-09)
sum e = 0.010107015871117859
sum de = 0.00037002260427851505
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.48e-03 |
| force | 4.60e-03 |
| divB_cleaning | 2.46e-03 |
+---------------+----------+
Info: cfl dt = 0.0014794918156170653 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 | 8.2032e+04 | 12514 | 1 | 1.526e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.55691197433815 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3740204443577494, dt = 0.0009795556422506624 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.4%)
patch tree reduce : 1.22 us (0.3%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 352.45 us (95.3%)
LB move op cnt : 0
LB apply : 3.25 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (68.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.660460284481382
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9118432947147326e-05,-3.4727977371662687e-07,-1.3003822077858257e-10)
sum a = (4.278270400629679e-06,-3.5172937052884483e-06,-2.6369201454080467e-09)
sum e = 0.010105356325739256
sum de = 0.0003672932864238138
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.48e-03 |
| force | 4.66e-03 |
| divB_cleaning | 2.46e-03 |
+---------------+----------+
Info: cfl dt = 0.0014766139204386536 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 | 7.7186e+04 | 12514 | 1 | 1.621e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.750738069402246 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 269 [SPH][rank=0]
Info: time since start : 107.73135966400001 (s) [SPH][rank=0]
Info: dump to _to_trash/orztang_00015.vtk [VTK Dump][rank=0]
- took 2.73 ms, bandwidth = 257.10 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 901.93 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 933.64 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/rho_slice_0000015.npy
Saving metadata to _to_trash/plots/rho_slice_0000015.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 898.49 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/vy_slice_0000015.npy
Saving metadata to _to_trash/plots/vy_slice_0000015.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.0066549 s
Info: compute_slice took 910.01 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/By_slice_0000015.npy
Saving metadata to _to_trash/plots/By_slice_0000015.json
Info: evolve_until (target_time = 0.40s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.37500000000000006, dt = 0.0014766139204386536 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.09 us (2.4%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.2%)
LB compute : 400.01 us (94.3%)
LB move op cnt : 0
LB apply : 4.08 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (72.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.657583506472751
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.911203424293513e-05,-3.5242283580688405e-07,-1.3402948357713619e-10)
sum a = (4.498732442629192e-06,-3.347190668237152e-06,-2.862067894035152e-09)
sum e = 0.010103712984607782
sum de = 0.0003669476938717734
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.46e-03 |
| force | 4.75e-03 |
| divB_cleaning | 2.46e-03 |
+---------------+----------+
Info: cfl dt = 0.0014649908493129388 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 | 8.2798e+04 | 12514 | 1 | 1.511e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.171646469181795 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3764766139204387, dt = 0.0014649908493129388 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.4%)
patch tree reduce : 1.37 us (0.4%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 347.74 us (95.1%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (69.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.66093974748282
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.91052808724131e-05,-3.572008512506528e-07,-1.3838861500178607e-10)
sum a = (4.705418141059837e-06,-3.2005137160090873e-06,-3.5419871349567288e-09)
sum e = 0.010101760854404196
sum de = 0.0003645774924855929
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.40e-03 |
| force | 4.76e-03 |
| divB_cleaning | 2.46e-03 |
+---------------+----------+
Info: cfl dt = 0.0013984973366044388 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 | 6.9355e+04 | 12514 | 1 | 1.804e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.229495367215645 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.37794160476975164, dt = 0.0013984973366044388 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.8%)
patch tree reduce : 1.33 us (0.4%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 296.58 us (94.2%)
LB move op cnt : 0
LB apply : 3.21 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (65.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6633370624900103
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9098548961346852e-05,-3.6156932096179373e-07,-1.4384011230928103e-10)
sum a = (4.9387467500108626e-06,-3.128431411958226e-06,-4.002694129203239e-09)
sum e = 0.010099868818448977
sum de = 0.0003621539932833431
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.44e-03 |
| force | 4.78e-03 |
| divB_cleaning | 2.46e-03 |
+---------------+----------+
Info: cfl dt = 0.0014357919307960792 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 | 8.2612e+04 | 12514 | 1 | 1.515e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.23627076380312 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3793401021063561, dt = 0.0014357919307960792 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.5%)
patch tree reduce : 1.16 us (0.3%)
gen split merge : 1.11 us (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 349.81 us (95.2%)
LB move op cnt : 0
LB apply : 3.37 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (67.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6645357199936073
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9091294793896028e-05,-3.6601069408413913e-07,-1.4990929699384048e-10)
sum a = (5.1834135153622195e-06,-3.109635292624739e-06,-4.279230414578415e-09)
sum e = 0.010098030003383114
sum de = 0.0003599556419205188
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.41e-03 |
| force | 4.77e-03 |
| divB_cleaning | 2.46e-03 |
+---------------+----------+
Info: cfl dt = 0.001409493725587354 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 | 8.2601e+04 | 12514 | 1 | 1.515e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.1180401984142 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3807758940371522, dt = 0.001409493725587354 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.7%)
patch tree reduce : 1.24 us (0.4%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 318.55 us (94.6%)
LB move op cnt : 0
LB apply : 4.12 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (68.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6599808214799414
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9083813159785143e-05,-3.7038021185957e-07,-1.5613936969706601e-10)
sum a = (5.4469148421135614e-06,-3.098424413084644e-06,-4.804999688405174e-09)
sum e = 0.010096197138147913
sum de = 0.00035742132714721754
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.46e-03 |
| force | 4.79e-03 |
| divB_cleaning | 2.46e-03 |
+---------------+----------+
Info: cfl dt = 0.0014558029021150911 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 | 8.2817e+04 | 12514 | 1 | 1.511e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.58044637093719 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3821853877627395, dt = 0.0014558029021150911 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.6%)
patch tree reduce : 1.35 us (0.4%)
gen split merge : 722.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 336.84 us (94.9%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (68.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6559053859677153
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9075697823617053e-05,-3.7488300627979603e-07,-1.6350503643454436e-10)
sum a = (5.703733693700756e-06,-3.1249946559031297e-06,-5.432452953486221e-09)
sum e = 0.010094380289671202
sum de = 0.00035500081206233205
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.49e-03 |
| force | 4.79e-03 |
| divB_cleaning | 2.47e-03 |
+---------------+----------+
Info: cfl dt = 0.0014857301939901282 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 | 8.0671e+04 | 12514 | 1 | 1.551e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.78530703730506 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.38364119066485464, dt = 0.0014857301939901282 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.98 us (1.3%)
patch tree reduce : 1.39 us (0.4%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.2%)
LB compute : 360.64 us (95.2%)
LB move op cnt : 0
LB apply : 3.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (69.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.65470672846412
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9067036675435203e-05,-3.795452457144255e-07,-1.7203291995692496e-10)
sum a = (5.949233365320005e-06,-3.1780792461689695e-06,-5.917041914944197e-09)
sum e = 0.01009253299239783
sum de = 0.0003523727684815556
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.47e-03 |
| force | 4.84e-03 |
| divB_cleaning | 2.46e-03 |
+---------------+----------+
Info: cfl dt = 0.0014707570684407878 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 | 7.9089e+04 | 12514 | 1 | 1.582e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.803687181983506 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.38512692085884476, dt = 0.0014707570684407878 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.7%)
patch tree reduce : 1.29 us (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 318.61 us (94.5%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (67.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6561451174684363
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9058104425273942e-05,-3.842588629191608e-07,-1.810954354035359e-10)
sum a = (6.206687824242067e-06,-3.2429531667583247e-06,-6.379773504181899e-09)
sum e = 0.010090684940778756
sum de = 0.00034965442905964407
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.47e-03 |
| force | 4.75e-03 |
| divB_cleaning | 2.46e-03 |
+---------------+----------+
Info: cfl dt = 0.001468101049384724 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 | 5.9492e+04 | 12514 | 1 | 2.103e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.171163978526664 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.38659767792728555, dt = 0.001468101049384724 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.7%)
patch tree reduce : 1.14 us (0.3%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 316.63 us (94.7%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (68.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6566245804698756
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9048803053883264e-05,-3.8906755275529323e-07,-1.9080187045774237e-10)
sum a = (6.450467288187887e-06,-3.3604128717153285e-06,-6.860072837651504e-09)
sum e = 0.010088862662219592
sum de = 0.00034703776165503724
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.48e-03 |
| force | 4.73e-03 |
| divB_cleaning | 2.46e-03 |
+---------------+----------+
Info: cfl dt = 0.0014771100346276478 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 | 8.2850e+04 | 12514 | 1 | 1.510e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.99098612980434 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3880657789766703, dt = 0.0014771100346276478 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.7%)
patch tree reduce : 1.27 us (0.4%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 294.74 us (94.6%)
LB move op cnt : 0
LB apply : 3.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (63.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6561451174684345
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9039096057480392e-05,-3.9411747368636655e-07,-2.012875168621305e-10)
sum a = (6.662448688848767e-06,-3.5221194423903303e-06,-6.903316898838403e-09)
sum e = 0.010087048515926416
sum de = 0.00034442763219741444
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.48e-03 |
| force | 4.78e-03 |
| divB_cleaning | 2.46e-03 |
+---------------+----------+
Info: cfl dt = 0.0014813385712962566 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 | 5.9554e+04 | 12514 | 1 | 2.101e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.306395419719607 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3895428890112979, dt = 0.0014813385712962566 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.52 us (1.2%)
patch tree reduce : 1.39 us (0.4%)
gen split merge : 481.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 821.00 ns (0.2%)
LB compute : 347.70 us (95.5%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (68.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.653747802461244
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9029070155331367e-05,-3.9945435426830257e-07,-2.1154560457254325e-10)
sum a = (6.780065130035914e-06,-3.7157509901312536e-06,-7.21849739097165e-09)
sum e = 0.01008523180597914
sum de = 0.00034160923117644093
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.50e-03 |
| force | 4.83e-03 |
| divB_cleaning | 2.46e-03 |
+---------------+----------+
Info: cfl dt = 0.0015026847815591828 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 | 8.0081e+04 | 12514 | 1 | 1.563e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.12644326412493 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.39102422758259414, dt = 0.0015026847815591828 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.7%)
patch tree reduce : 1.14 us (0.4%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 285.95 us (94.3%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (65.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6535080709605254
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9018794739757067e-05,-4.051813736735091e-07,-2.2262617525756875e-10)
sum a = (6.753768125135453e-06,-3.90220684490017e-06,-7.299413950837595e-09)
sum e = 0.010083404581413848
sum de = 0.00033852273835246934
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.50e-03 |
| force | 4.89e-03 |
| divB_cleaning | 2.46e-03 |
+---------------+----------+
Info: cfl dt = 0.0015024858572648939 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 | 7.0088e+04 | 12514 | 1 | 1.785e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.29845208181678 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3925269123641533, dt = 0.0015024858572648939 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.04 us (1.6%)
patch tree reduce : 1.10 us (0.4%)
gen split merge : 642.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 298.05 us (94.7%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (64.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.649672366949019
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.900866705672023e-05,-4.1118447645773617e-07,-2.336542375267544e-10)
sum a = (6.6499529189467376e-06,-4.027362517415329e-06,-7.485079109494282e-09)
sum e = 0.010081558904741075
sum de = 0.0003350642069086448
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.50e-03 |
| force | 4.93e-03 |
| divB_cleaning | 2.45e-03 |
+---------------+----------+
Info: cfl dt = 0.001497961178471333 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 | 6.7696e+04 | 12514 | 1 | 1.849e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.260374806877778 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3940293982214182, dt = 0.001497961178471333 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.6%)
patch tree reduce : 1.28 us (0.4%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 321.47 us (94.8%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (68.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6508710244526137
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8998783675848705e-05,-4.1731133147432504e-07,-2.450060750880671e-10)
sum a = (6.460894625895623e-06,-4.116208386881015e-06,-7.472648695993618e-09)
sum e = 0.010079707985485388
sum de = 0.00033149483436384423
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.45e-03 |
| force | 4.94e-03 |
| divB_cleaning | 2.45e-03 |
+---------------+----------+
Info: cfl dt = 0.001446850626007078 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 | 8.2796e+04 | 12514 | 1 | 1.511e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.67949499646291 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.39552735939988953, dt = 0.001446850626007078 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.6%)
patch tree reduce : 1.15 us (0.4%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 822.00 ns (0.3%)
LB compute : 309.81 us (94.8%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (68.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6491929039475792
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.898957732740635e-05,-4.2333341398725085e-07,-2.558085713934104e-10)
sum a = (6.287443913964482e-06,-4.180367131590207e-06,-7.375250141093601e-09)
sum e = 0.010077872390100518
sum de = 0.00032784144850204447
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.45e-03 |
| force | 4.93e-03 |
| divB_cleaning | 2.45e-03 |
+---------------+----------+
Info: cfl dt = 0.0014490826264844609 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 | 6.6348e+04 | 12514 | 1 | 1.886e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.615705198948696 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3969742100258966, dt = 0.0014490826264844609 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.44 us (1.3%)
patch tree reduce : 1.07 us (0.3%)
gen split merge : 652.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 821.00 ns (0.2%)
LB compute : 320.40 us (95.3%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (68.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6530286079590844
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8980591780301098e-05,-4.294375254300955e-07,-2.6642545765850855e-10)
sum a = (6.131616796944232e-06,-4.255572609542323e-06,-6.986140408565671e-09)
sum e = 0.010076055743307444
sum de = 0.00032440731765264017
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.46e-03 |
| force | 4.91e-03 |
| divB_cleaning | 2.45e-03 |
+---------------+----------+
Info: cfl dt = 0.0014622588327545354 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 | 5.3063e+04 | 12514 | 1 | 2.358e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.120484001972645 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3984232926523811, dt = 0.0014622588327545354 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.52 us (1.1%)
patch tree reduce : 1.15 us (0.3%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 413.31 us (96.1%)
LB move op cnt : 0
LB apply : 3.54 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.46 us (89.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6525491449576477
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8971738672664714e-05,-4.357147635423778e-07,-2.7635907710119543e-10)
sum a = (5.948154244572244e-06,-4.385386709335166e-06,-6.610336796718971e-09)
sum e = 0.010074207265054059
sum de = 0.0003210538919110385
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.49e-03 |
| force | 4.86e-03 |
| divB_cleaning | 2.45e-03 |
+---------------+----------+
Info: cfl dt = 0.0014873259120090896 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 | 7.9633e+04 | 12514 | 1 | 1.571e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.49836591321874 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3998855514851356, dt = 0.0001144485148644736 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.09 us (1.5%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 328.77 us (95.0%)
LB move op cnt : 0
LB apply : 3.80 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (66.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6532683394598062
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8971192050113898e-05,-4.3631157544547153e-07,-2.76840859254949e-10)
sum a = (5.946813843430328e-06,-4.422709525750402e-06,-6.585292311264236e-09)
sum e = 0.010073523851223565
sum de = 0.00031847373660648035
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.49e-03 |
| force | 4.87e-03 |
| divB_cleaning | 2.45e-03 |
+---------------+----------+
Info: cfl dt = 0.0014948876226655954 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 | 8.4231e+04 | 12514 | 1 | 1.486e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.773251384911172 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 287 [SPH][rank=0]
Info: time since start : 114.593324843 (s) [SPH][rank=0]
Info: dump to _to_trash/orztang_00016.vtk [VTK Dump][rank=0]
- took 2.44 ms, bandwidth = 286.99 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 907.18 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 910.86 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/rho_slice_0000016.npy
Saving metadata to _to_trash/plots/rho_slice_0000016.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 901.68 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/vy_slice_0000016.npy
Saving metadata to _to_trash/plots/vy_slice_0000016.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.006685426 s
Info: compute_slice took 909.29 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/By_slice_0000016.npy
Saving metadata to _to_trash/plots/By_slice_0000016.json
Info: evolve_until (target_time = 0.43s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.4000000000000001, dt = 0.0014948876226655954 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.31 us (2.1%)
patch tree reduce : 1.85 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 418.02 us (94.7%)
LB move op cnt : 0
LB apply : 4.15 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.653987533961963
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8962302308408655e-05,-4.4292516494472956e-07,-2.8668369807082123e-10)
sum a = (5.693871905529118e-06,-4.577109115680606e-06,-6.226614150369554e-09)
sum e = 0.010072143942326502
sum de = 0.00031791511699951597
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.49e-03 |
| force | 4.87e-03 |
| divB_cleaning | 2.45e-03 |
+---------------+----------+
Info: cfl dt = 0.001488413594465288 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 | 7.0097e+04 | 12514 | 1 | 1.785e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.144812976562854 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.40149488762266566, dt = 0.001488413594465288 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.94 us (1.3%)
patch tree reduce : 1.33 us (0.4%)
gen split merge : 692.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.38 us (0.4%)
LB compute : 353.43 us (95.1%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (70.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.652788876458366
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8954016531945573e-05,-4.4985320139380164e-07,-2.956833834478638e-10)
sum a = (5.4549418472952206e-06,-4.7599353352755135e-06,-5.674922723845463e-09)
sum e = 0.010070182659358815
sum de = 0.00031467866061748984
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.52e-03 |
| force | 4.94e-03 |
| divB_cleaning | 2.44e-03 |
+---------------+----------+
Info: cfl dt = 0.0015199361923019326 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 | 6.7846e+04 | 12514 | 1 | 1.844e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.05074212226552 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.40298330121713094, dt = 0.0015199361923019326 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.54 us (1.3%)
patch tree reduce : 1.15 us (0.3%)
gen split merge : 642.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 322.76 us (95.3%)
LB move op cnt : 0
LB apply : 3.07 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (67.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6527888764583656
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8945903181778203e-05,-4.5722405989822415e-07,-3.03898331374822e-10)
sum a = (5.1855282065121565e-06,-4.980293789500627e-06,-5.245535605089259e-09)
sum e = 0.010068155211768813
sum de = 0.00031201251980224917
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.44e-03 |
| force | 4.99e-03 |
| divB_cleaning | 2.44e-03 |
+---------------+----------+
Info: cfl dt = 0.001437414690501528 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 | 7.5171e+04 | 12514 | 1 | 1.665e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.86848124811041 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4045032374094329, dt = 0.001437414690501528 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.89 us (1.5%)
patch tree reduce : 1.27 us (0.4%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 314.24 us (95.1%)
LB move op cnt : 0
LB apply : 2.98 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (65.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.652788876458366
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8938654173127988e-05,-4.6455027274904034e-07,-3.111120208019198e-10)
sum a = (4.940287065787311e-06,-5.24685916728735e-06,-5.2797612978823796e-09)
sum e = 0.010066107845439123
sum de = 0.0003094318407750547
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.47e-03 |
| force | 5.02e-03 |
| divB_cleaning | 2.44e-03 |
+---------------+----------+
Info: cfl dt = 0.0014741483498019506 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 | 8.3117e+04 | 12514 | 1 | 1.506e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.369869130338174 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4059406520999344, dt = 0.0014741483498019506 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.31 us (1.4%)
patch tree reduce : 1.15 us (0.4%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 293.66 us (95.1%)
LB move op cnt : 0
LB apply : 3.11 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.28 us (70.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.653268339459804
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.893154771371161e-05,-4.7247650402738143e-07,-3.1891977046351927e-10)
sum a = (4.687541815062941e-06,-5.543865227797517e-06,-5.140672927462429e-09)
sum e = 0.0100640409226832
sum de = 0.00030742298854218215
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.52e-03 |
| force | 4.95e-03 |
| divB_cleaning | 2.43e-03 |
+---------------+----------+
Info: cfl dt = 0.0015156376368532954 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 | 8.2306e+04 | 12514 | 1 | 1.520e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.90415509885945 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4074148004497364, dt = 0.0015156376368532954 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.82 us (1.4%)
patch tree reduce : 1.19 us (0.3%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 328.43 us (95.2%)
LB move op cnt : 0
LB apply : 3.24 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (65.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6523094134569285
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.892462939090948e-05,-4.810979103171761e-07,-3.2660864938526347e-10)
sum a = (4.37058107157951e-06,-5.830156147503514e-06,-4.868132429040001e-09)
sum e = 0.010061858276002675
sum de = 0.0003055320607260564
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.56e-03 |
| force | 4.94e-03 |
| divB_cleaning | 2.43e-03 |
+---------------+----------+
Info: cfl dt = 0.001558463816552954 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 | 8.1820e+04 | 12514 | 1 | 1.529e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.67487655253227 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4089304380865897, dt = 0.001558463816552954 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.89 us (1.6%)
patch tree reduce : 1.20 us (0.4%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 284.75 us (94.3%)
LB move op cnt : 0
LB apply : 3.64 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (62.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6530286079590852
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.89180581972681e-05,-4.904009543644037e-07,-3.3398892131149124e-10)
sum a = (4.046533916118912e-06,-6.10989440774842e-06,-4.677250683226962e-09)
sum e = 0.010059544629279065
sum de = 0.0003038535900019999
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.45e-03 |
| force | 4.92e-03 |
| divB_cleaning | 2.43e-03 |
+---------------+----------+
Info: cfl dt = 0.0014480736172409428 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 | 7.3343e+04 | 12514 | 1 | 1.706e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.88226187008808 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.41048890190314263, dt = 0.0014480736172409428 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.41 us (1.3%)
patch tree reduce : 1.25 us (0.4%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 329.53 us (95.2%)
LB move op cnt : 0
LB apply : 3.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (67.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6499120984497364
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.891245102614616e-05,-4.994665122386811e-07,-3.406131834801132e-10)
sum a = (3.7161127993190217e-06,-6.321334086882474e-06,-4.593366696505391e-09)
sum e = 0.010057217762505406
sum de = 0.0003022187910121842
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.48e-03 |
| force | 4.91e-03 |
| divB_cleaning | 2.43e-03 |
+---------------+----------+
Info: cfl dt = 0.0014815315450070964 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 | 6.9714e+04 | 12514 | 1 | 1.795e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.04116274745601 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.41193697552038355, dt = 0.0014815315450070964 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.5%)
patch tree reduce : 1.17 us (0.3%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 332.62 us (95.0%)
LB move op cnt : 0
LB apply : 3.59 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (71.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6472750519418264
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.890718472486017e-05,-5.089848582053363e-07,-3.473576660447987e-10)
sum a = (3.3759440044644473e-06,-6.466182063810012e-06,-4.292042738527993e-09)
sum e = 0.01005487242492698
sum de = 0.0003014347821597088
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.53e-03 |
| force | 4.97e-03 |
| divB_cleaning | 2.43e-03 |
+---------------+----------+
Info: cfl dt = 0.0015257204303230434 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 | 8.2414e+04 | 12514 | 1 | 1.518e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.12533553237865 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.41341850706539063, dt = 0.0015257204303230434 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.8%)
patch tree reduce : 1.18 us (0.4%)
gen split merge : 771.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 278.05 us (94.0%)
LB move op cnt : 0
LB apply : 3.53 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (67.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.647514783442545
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8902285963521085e-05,-5.189577427099363e-07,-3.536829128641523e-10)
sum a = (3.0783855444719194e-06,-6.529837611112852e-06,-4.443755108757144e-09)
sum e = 0.010052393433770202
sum de = 0.00030093359221011057
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.55e-03 |
| force | 4.99e-03 |
| divB_cleaning | 2.42e-03 |
+---------------+----------+
Info: cfl dt = 0.0015522857784048632 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 | 8.2796e+04 | 12514 | 1 | 1.511e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.340546887848944 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4149442274957137, dt = 0.0015522857784048632 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.72 us (1.5%)
patch tree reduce : 1.24 us (0.4%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 292.93 us (94.8%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (66.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.643918810931756
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.889773442493078e-05,-5.291424770534448e-07,-3.606966260535968e-10)
sum a = (2.826512675411091e-06,-6.521681368644778e-06,-4.539899335190585e-09)
sum e = 0.0100497835108308
sum de = 0.00030063449074249865
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.54e-03 |
| force | 5.02e-03 |
| divB_cleaning | 2.42e-03 |
+---------------+----------+
Info: cfl dt = 0.001544360675774086 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 | 8.2479e+04 | 12514 | 1 | 1.517e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.83177988363972 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4164965132741186, dt = 0.001544360675774086 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.77 us (1.4%)
patch tree reduce : 1.22 us (0.4%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.3%)
LB compute : 328.17 us (95.3%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (69.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.640802301422407
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8893564759241838e-05,-5.392079748895364e-07,-3.677824897165373e-10)
sum a = (2.633419892478833e-06,-6.4378623125518e-06,-4.953780958412575e-09)
sum e = 0.010047088871335881
sum de = 0.00030028438959353154
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.52e-03 |
| force | 5.03e-03 |
| divB_cleaning | 2.42e-03 |
+---------------+----------+
Info: cfl dt = 0.0015197635499943573 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 | 8.2466e+04 | 12514 | 1 | 1.517e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.63782724098585 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.41804087394989264, dt = 0.0015197635499943573 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.43 us (1.5%)
patch tree reduce : 921.00 ns (0.3%)
gen split merge : 652.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 282.40 us (94.8%)
LB move op cnt : 0
LB apply : 3.22 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (69.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6412817644238458
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8889711686127468e-05,-5.489272799450673e-07,-3.7563065670351193e-10)
sum a = (2.4643943271235494e-06,-6.36261033351302e-06,-5.606967024537789e-09)
sum e = 0.010044357289112476
sum de = 0.00029979973115407414
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.56e-03 |
| force | 5.09e-03 |
| divB_cleaning | 2.42e-03 |
+---------------+----------+
Info: cfl dt = 0.0015603193518760764 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 | 8.2794e+04 | 12514 | 1 | 1.511e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.19790616374884 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.419560637499887, dt = 0.0015603193518760764 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.45 us (1.3%)
patch tree reduce : 1.20 us (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 317.95 us (94.8%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (67.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6403228384209685
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8885994883414878e-05,-5.587978013694458e-07,-3.848756600446015e-10)
sum a = (2.347365784006783e-06,-6.248602545541592e-06,-5.763270637444807e-09)
sum e = 0.010041536916139232
sum de = 0.0002992286492657213
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.56e-03 |
| force | 5.08e-03 |
| divB_cleaning | 2.42e-03 |
+---------------+----------+
Info: cfl dt = 0.0015634468230873559 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 | 8.3256e+04 | 12514 | 1 | 1.503e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.371098041077964 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.42112095685176304, dt = 0.0015634468230873559 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.76 us (1.6%)
patch tree reduce : 1.54 us (0.5%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 811.00 ns (0.3%)
LB compute : 282.43 us (94.6%)
LB move op cnt : 0
LB apply : 3.45 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 24.99 us (93.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.642480421927442
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8882416202787614e-05,-5.684782148889728e-07,-3.940081689891693e-10)
sum a = (2.3117234478389225e-06,-6.096953747325969e-06,-5.958251650515155e-09)
sum e = 0.010038626712286154
sum de = 0.0002982050182717889
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.58e-03 |
| force | 5.09e-03 |
| divB_cleaning | 2.42e-03 |
+---------------+----------+
Info: cfl dt = 0.0015780311733989074 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 | 8.3167e+04 | 12514 | 1 | 1.505e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.40592176839224 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4226844036748504, dt = 0.0015780311733989074 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.10 us (1.4%)
patch tree reduce : 1.18 us (0.4%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 278.11 us (95.0%)
LB move op cnt : 0
LB apply : 3.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.641761227425284
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.887879609357112e-05,-5.779808505491536e-07,-4.0356289705537924e-10)
sum a = (2.2831192452806716e-06,-5.938713645857539e-06,-6.441607492842723e-09)
sum e = 0.010035645774586214
sum de = 0.0002968842871794548
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.59e-03 |
| force | 5.00e-03 |
| divB_cleaning | 2.42e-03 |
+---------------+----------+
Info: cfl dt = 0.0015947905770161076 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 | 8.2957e+04 | 12514 | 1 | 1.508e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.659598849111674 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.42426243484824927, dt = 0.0007375651517508297 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.70 us (1.3%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 551.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 359.11 us (95.6%)
LB move op cnt : 0
LB apply : 3.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (68.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.643918810931757
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8877134713540154e-05,-5.822361848741615e-07,-4.086953775569763e-10)
sum a = (2.2660075866284537e-06,-5.8887625647281235e-06,-6.661173115564306e-09)
sum e = 0.010033773526391733
sum de = 0.00029434449268041056
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.60e-03 |
| force | 4.96e-03 |
| divB_cleaning | 2.42e-03 |
+---------------+----------+
Info: cfl dt = 0.001598665798491838 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 | 8.3560e+04 | 12514 | 1 | 1.498e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.72978212685592 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 304 [SPH][rank=0]
Info: time since start : 121.061805788 (s) [SPH][rank=0]
Info: dump to _to_trash/orztang_00017.vtk [VTK Dump][rank=0]
- took 2.30 ms, bandwidth = 304.61 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 932.40 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 938.39 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/rho_slice_0000017.npy
Saving metadata to _to_trash/plots/rho_slice_0000017.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 925.28 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/vy_slice_0000017.npy
Saving metadata to _to_trash/plots/vy_slice_0000017.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.005753664 s
Info: compute_slice took 932.59 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/By_slice_0000017.npy
Saving metadata to _to_trash/plots/By_slice_0000017.json
Info: evolve_until (target_time = 0.45s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.4250000000000001, dt = 0.001598665798491838 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.54 us (2.4%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.2%)
LB compute : 375.10 us (94.2%)
LB move op cnt : 0
LB apply : 3.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6424804219274414
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8873518435193874e-05,-5.916319270933847e-07,-4.194253391705217e-10)
sum a = (2.325312842623822e-06,-5.747123791919741e-06,-6.772804842130282e-09)
sum e = 0.010031143179120443
sum de = 0.0002947447817153925
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.60e-03 |
| force | 4.89e-03 |
| divB_cleaning | 2.42e-03 |
+---------------+----------+
Info: cfl dt = 0.0016008577874534063 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 | 8.2508e+04 | 12514 | 1 | 1.517e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.94541372421335 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4265986657984919, dt = 0.0016008577874534063 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.15 us (1.3%)
patch tree reduce : 1.25 us (0.4%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 310.37 us (94.9%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6379255234137755
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.886974853537927e-05,-6.00719038440246e-07,-4.3035686745650437e-10)
sum a = (2.380985826498875e-06,-5.500698279757217e-06,-7.103635970009462e-09)
sum e = 0.010028022809160235
sum de = 0.0002923151962946373
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.62e-03 |
| force | 4.91e-03 |
| divB_cleaning | 2.42e-03 |
+---------------+----------+
Info: cfl dt = 0.0016151684201304397 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 | 7.7407e+04 | 12514 | 1 | 1.617e-01 | 0.0% | 1.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.64825932098831 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4281995235859453, dt = 0.0016151684201304397 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.62 us (1.4%)
patch tree reduce : 1.17 us (0.4%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 311.60 us (95.0%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (67.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6352884769058655
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.886585827999869e-05,-6.094063464903859e-07,-4.4209524273708134e-10)
sum a = (2.4878041402259553e-06,-5.214582362385484e-06,-7.4040135875349886e-09)
sum e = 0.010024851993069024
sum de = 0.00028983642973878814
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.51e-03 |
| force | 5.00e-03 |
| divB_cleaning | 2.42e-03 |
+---------------+----------+
Info: cfl dt = 0.0015125567405687107 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 | 7.9207e+04 | 12514 | 1 | 1.580e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.803309692043435 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.42981469200607575, dt = 0.0015125567405687107 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.89 us (1.5%)
patch tree reduce : 1.12 us (0.3%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.3%)
LB compute : 318.09 us (95.1%)
LB move op cnt : 0
LB apply : 3.20 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (64.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.633610356400831
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.886200907029367e-05,-6.170626354944625e-07,-4.535368136171841e-10)
sum a = (2.659517485395241e-06,-5.056750345867416e-06,-7.692279466160145e-09)
sum e = 0.010021785597267317
sum de = 0.00028690577341356144
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.52e-03 |
| force | 4.95e-03 |
| divB_cleaning | 2.42e-03 |
+---------------+----------+
Info: cfl dt = 0.001519963272043716 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 | 7.2744e+04 | 12514 | 1 | 1.720e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.652828259529908 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.43132724874664446, dt = 0.001519963272043716 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.91 us (1.3%)
patch tree reduce : 1.20 us (0.3%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 350.20 us (95.2%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (71.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6348090139044276
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.885783683830564e-05,-6.246293453560623e-07,-4.6544680513264267e-10)
sum a = (2.8328598505623493e-06,-4.94874249032217e-06,-7.81485746270032e-09)
sum e = 0.01001877476847778
sum de = 0.00028412064667862207
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.54e-03 |
| force | 4.96e-03 |
| divB_cleaning | 2.43e-03 |
+---------------+----------+
Info: cfl dt = 0.001538182802649892 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 | 7.2750e+04 | 12514 | 1 | 1.720e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.810835015688966 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4328472120186882, dt = 0.001538182802649892 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.05 us (1.5%)
patch tree reduce : 1.14 us (0.3%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 317.57 us (94.9%)
LB move op cnt : 0
LB apply : 3.11 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (66.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.634809013904428
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.885334764498704e-05,-6.32159331962683e-07,-4.775606415134399e-10)
sum a = (2.9803412491352835e-06,-4.803955552787659e-06,-7.539505696604714e-09)
sum e = 0.010015735461119434
sum de = 0.0002810733797539941
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.57e-03 |
| force | 5.04e-03 |
| divB_cleaning | 2.43e-03 |
+---------------+----------+
Info: cfl dt = 0.0015693932393084176 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 | 8.1415e+04 | 12514 | 1 | 1.537e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.02643957660725 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4343853948213381, dt = 0.0015693932393084176 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.47 us (1.2%)
patch tree reduce : 1.00 us (0.3%)
gen split merge : 601.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 344.17 us (95.8%)
LB move op cnt : 0
LB apply : 3.18 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (68.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.635767939907304
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8848556890904135e-05,-6.395872729403509e-07,-4.891813201057235e-10)
sum a = (3.104189559600837e-06,-4.646489425605976e-06,-7.20552981304852e-09)
sum e = 0.010012647506951446
sum de = 0.0002779254088969396
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.60e-03 |
| force | 5.10e-03 |
| divB_cleaning | 2.43e-03 |
+---------------+----------+
Info: cfl dt = 0.0015997732375335593 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 | 5.4816e+04 | 12514 | 1 | 2.283e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.748122741124853 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4359547880606465, dt = 0.0015997732375335593 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.45 us (1.1%)
patch tree reduce : 1.22 us (0.3%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 395.98 us (95.9%)
LB move op cnt : 0
LB apply : 3.38 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (67.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6331308933993927
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.884349370817191e-05,-6.468970392343476e-07,-5.00446464115778e-10)
sum a = (3.227663105205728e-06,-4.4615673299953215e-06,-6.591083393894062e-09)
sum e = 0.010009508385293228
sum de = 0.00027476881203323964
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.60e-03 |
| force | 5.06e-03 |
| divB_cleaning | 2.43e-03 |
+---------------+----------+
Info: cfl dt = 0.0016036741184477733 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 | 7.4709e+04 | 12514 | 1 | 1.675e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.38241706618796 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4375545612981801, dt = 0.0016036741184477733 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.6%)
patch tree reduce : 1.30 us (0.4%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 320.89 us (94.9%)
LB move op cnt : 0
LB apply : 3.08 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (63.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6319322358957966
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8838218823550153e-05,-6.53904022579351e-07,-5.105249264984986e-10)
sum a = (3.30761087188399e-06,-4.299857702222534e-06,-5.638328006359917e-09)
sum e = 0.010006356388805863
sum de = 0.0002716208692816904
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.58e-03 |
| force | 5.07e-03 |
| divB_cleaning | 2.43e-03 |
+---------------+----------+
Info: cfl dt = 0.0015827847337492775 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 | 7.3230e+04 | 12514 | 1 | 1.709e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.78405938652 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.43915823541662785, dt = 0.0015827847337492775 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.4%)
patch tree reduce : 1.31 us (0.3%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 373.95 us (95.4%)
LB move op cnt : 0
LB apply : 3.99 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (65.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6295349208886036
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.883291948247498e-05,-6.605801069354486e-07,-5.1868523141244e-10)
sum a = (3.383822472756366e-06,-4.148330759334786e-06,-4.6838135536267495e-09)
sum e = 0.010003244477854913
sum de = 0.000268567417867126
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.59e-03 |
| force | 5.11e-03 |
| divB_cleaning | 2.44e-03 |
+---------------+----------+
Info: cfl dt = 0.0015851739171326806 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 | 7.3904e+04 | 12514 | 1 | 1.693e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.650647315295174 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.44074102015037714, dt = 0.0015851739171326806 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (1.6%)
patch tree reduce : 1.39 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 353.73 us (94.9%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.48 us (72.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6273773373821316
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8827495222071675e-05,-6.670360153885158e-07,-5.253544950383326e-10)
sum a = (3.4851755997741384e-06,-4.000651143618271e-06,-4.181678220936818e-09)
sum e = 0.010000163033948158
sum de = 0.00026565845638295074
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.60e-03 |
| force | 5.08e-03 |
| divB_cleaning | 2.44e-03 |
+---------------+----------+
Info: cfl dt = 0.001600776861272193 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 | 7.5336e+04 | 12514 | 1 | 1.661e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.354703531646585 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.44232619406750984, dt = 0.001600776861272193 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.8%)
patch tree reduce : 1.26 us (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 289.21 us (94.1%)
LB move op cnt : 0
LB apply : 3.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (72.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.627377337382131
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8821835902447275e-05,-6.733231162319392e-07,-5.316504428595511e-10)
sum a = (3.6068113960965573e-06,-3.8506860885658965e-06,-3.024817056278807e-09)
sum e = 0.009997082182874498
sum de = 0.000262734618135364
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.57e-03 |
| force | 5.10e-03 |
| divB_cleaning | 2.44e-03 |
+---------------+----------+
Info: cfl dt = 0.0015736630416200961 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 | 7.1599e+04 | 12514 | 1 | 1.748e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.9718854815976 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.443926970928782, dt = 0.0015736630416200961 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.20 us (1.5%)
patch tree reduce : 1.15 us (0.4%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 272.27 us (94.8%)
LB move op cnt : 0
LB apply : 3.05 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (67.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.626178679878536
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.881606264077108e-05,-6.792627683194769e-07,-5.354845473766055e-10)
sum a = (3.830204403390116e-06,-3.692165087315454e-06,-1.9482216023112806e-09)
sum e = 0.009994046762775316
sum de = 0.00025974133906841567
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.59e-03 |
| force | 5.08e-03 |
| divB_cleaning | 2.44e-03 |
+---------------+----------+
Info: cfl dt = 0.0015914405825121734 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 | 8.1306e+04 | 12514 | 1 | 1.539e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.807944386846344 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4455006339704021, dt = 0.0015914405825121734 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.83 us (1.6%)
patch tree reduce : 911.00 ns (0.3%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.3%)
LB compute : 287.64 us (95.0%)
LB move op cnt : 0
LB apply : 3.10 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (64.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6268978743806937
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.880979132538454e-05,-6.850139003560788e-07,-5.377379270596136e-10)
sum a = (4.16954193905214e-06,-3.5558095700881428e-06,-8.088138674753242e-10)
sum e = 0.009991031383345941
sum de = 0.0002569215275432775
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.57e-03 |
| force | 5.14e-03 |
| divB_cleaning | 2.44e-03 |
+---------------+----------+
Info: cfl dt = 0.0015715060207161713 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 | 7.5475e+04 | 12514 | 1 | 1.658e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.554072330185406 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4470920745529143, dt = 0.0015715060207161713 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.16 us (1.7%)
patch tree reduce : 1.23 us (0.4%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 283.77 us (94.3%)
LB move op cnt : 0
LB apply : 3.27 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (64.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.624500559373501
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.880296884736091e-05,-6.904933756520272e-07,-5.381023330674287e-10)
sum a = (4.487442353834278e-06,-3.516409091980656e-06,1.4183993943280597e-10)
sum e = 0.009988053609568956
sum de = 0.0002541105559581333
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.61e-03 |
| force | 5.15e-03 |
| divB_cleaning | 2.44e-03 |
+---------------+----------+
Info: cfl dt = 0.0016133806328158414 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 | 7.3898e+04 | 12514 | 1 | 1.693e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.40837684751674 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4486635805736304, dt = 0.001336419426369695 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.7%)
patch tree reduce : 1.20 us (0.4%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 294.36 us (94.4%)
LB move op cnt : 0
LB apply : 3.64 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (66.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6254594853763793
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8796721951016667e-05,-6.951618140294263e-07,-5.37165796326343e-10)
sum a = (4.757453817912701e-06,-3.4867733758984422e-06,1.0052303387416491e-09)
sum e = 0.009985405293758588
sum de = 0.00025129596382677356
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.65e-03 |
| force | 5.17e-03 |
| divB_cleaning | 2.45e-03 |
+---------------+----------+
Info: cfl dt = 0.0016494985153961412 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 | 8.2272e+04 | 12514 | 1 | 1.521e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.630088804431207 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 320 [SPH][rank=0]
Info: time since start : 127.61559503900001 (s) [SPH][rank=0]
Info: dump to _to_trash/orztang_00018.vtk [VTK Dump][rank=0]
- took 2.29 ms, bandwidth = 306.02 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 936.00 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 930.49 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/rho_slice_0000018.npy
Saving metadata to _to_trash/plots/rho_slice_0000018.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 928.09 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/vy_slice_0000018.npy
Saving metadata to _to_trash/plots/vy_slice_0000018.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.005701737 s
Info: compute_slice took 938.38 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/By_slice_0000018.npy
Saving metadata to _to_trash/plots/By_slice_0000018.json
Info: evolve_until (target_time = 0.48s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.4500000000000001, dt = 0.0016494985153961412 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.24 us (2.1%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 1.20 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.2%)
LB compute : 408.19 us (94.7%)
LB move op cnt : 0
LB apply : 3.87 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.624260827872782
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.878869411372405e-05,-7.008934386632404e-07,-5.34930744523776e-10)
sum a = (5.01148952310984e-06,-3.5022799477719317e-06,1.5349942584064118e-09)
sum e = 0.009982538813457053
sum de = 0.00024953782033574213
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.59e-03 |
| force | 5.24e-03 |
| divB_cleaning | 2.45e-03 |
+---------------+----------+
Info: cfl dt = 0.0015914305720091477 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 | 7.7631e+04 | 12514 | 1 | 1.612e-01 | 0.0% | 1.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.83764858112244 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.45164949851539626, dt = 0.0015914305720091477 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.6%)
patch tree reduce : 1.25 us (0.4%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 325.32 us (94.8%)
LB move op cnt : 0
LB apply : 3.92 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.624260827872782
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8780509160326297e-05,-7.064798630775086e-07,-5.320509853332576e-10)
sum a = (5.191774975767569e-06,-3.6164127372684965e-06,1.2551392645937203e-09)
sum e = 0.009979574425629011
sum de = 0.0002467133016407086
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.60e-03 |
| force | 5.24e-03 |
| divB_cleaning | 2.45e-03 |
+---------------+----------+
Info: cfl dt = 0.001597912789376665 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 | 8.0355e+04 | 12514 | 1 | 1.557e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.78812364346822 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.45324092908740543, dt = 0.001597912789376665 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.65 us (1.4%)
patch tree reduce : 802.00 ns (0.2%)
gen split merge : 591.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 761.00 ns (0.2%)
LB compute : 327.44 us (95.7%)
LB move op cnt : 0
LB apply : 3.23 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (69.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6249800223749404
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8772069700802475e-05,-7.123493924470232e-07,-5.302680671465837e-10)
sum a = (5.280844489538058e-06,-3.869668766591394e-06,2.3502146578395965e-09)
sum e = 0.009976663089378538
sum de = 0.000244264545094401
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.62e-03 |
| force | 5.23e-03 |
| divB_cleaning | 2.45e-03 |
+---------------+----------+
Info: cfl dt = 0.0016175475074374016 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 | 6.5831e+04 | 12514 | 1 | 1.901e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.261333840010003 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4548388418767821, dt = 0.0016175475074374016 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.53 us (1.4%)
patch tree reduce : 1.24 us (0.4%)
gen split merge : 642.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 301.25 us (94.9%)
LB move op cnt : 0
LB apply : 3.28 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (65.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.624740290874219
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.876345652130361e-05,-7.18811106039364e-07,-5.255915657967876e-10)
sum a = (5.347764053178215e-06,-4.236287783992513e-06,3.2048374213913475e-09)
sum e = 0.009973751522708844
sum de = 0.0002418094767480225
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.65e-03 |
| force | 5.30e-03 |
| divB_cleaning | 2.45e-03 |
+---------------+----------+
Info: cfl dt = 0.0016511936451010245 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 | 8.1923e+04 | 12514 | 1 | 1.528e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.12122084023149 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4564563893842195, dt = 0.0016511936451010245 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.83 us (1.4%)
patch tree reduce : 1.07 us (0.3%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 831.00 ns (0.2%)
LB compute : 335.24 us (95.3%)
LB move op cnt : 0
LB apply : 3.71 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (70.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.619466197858399
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8754572204496886e-05,-7.261025493457589e-07,-5.196085621526042e-10)
sum a = (5.429512431761547e-06,-4.750422534214143e-06,3.873941663855114e-09)
sum e = 0.009970815354625929
sum de = 0.00023933054730531695
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.66e-03 |
| force | 5.31e-03 |
| divB_cleaning | 2.45e-03 |
+---------------+----------+
Info: cfl dt = 0.0016624971911912815 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 | 7.6992e+04 | 12514 | 1 | 1.625e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.57187980176847 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.45810758302932053, dt = 0.0016624971911912815 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.44 us (1.4%)
patch tree reduce : 1.07 us (0.3%)
gen split merge : 592.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.3%)
LB compute : 307.64 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.59 us (69.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6158702253476123
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8745478164127957e-05,-7.344245814821299e-07,-5.126157346811685e-10)
sum a = (5.560675025115072e-06,-5.4171106571978815e-06,4.536899816714093e-09)
sum e = 0.009967870139893113
sum de = 0.00023676079246888574
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.57e-03 |
| force | 5.35e-03 |
| divB_cleaning | 2.45e-03 |
+---------------+----------+
Info: cfl dt = 0.0015672324982499552 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 | 6.1407e+04 | 12514 | 1 | 2.038e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.36873223167776 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4597700802205118, dt = 0.0015672324982499552 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.6%)
patch tree reduce : 1.40 us (0.4%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 318.25 us (94.6%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.53 us (68.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.611315326833946
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.873665426479482e-05,-7.434686369168369e-07,-5.049542748136576e-10)
sum a = (5.7616352473887285e-06,-6.162000155932949e-06,4.806677513493782e-09)
sum e = 0.009965045655187948
sum de = 0.00023409980411779244
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.59e-03 |
| force | 5.33e-03 |
| divB_cleaning | 2.45e-03 |
+---------------+----------+
Info: cfl dt = 0.0015937605476666842 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 | 8.2442e+04 | 12514 | 1 | 1.518e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.16944278179186 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.46133731271876177, dt = 0.0015937605476666842 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.85 us (1.5%)
patch tree reduce : 1.24 us (0.4%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 306.99 us (94.8%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (68.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6096372063289133
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8727314122151984e-05,-7.538730971750122e-07,-4.970821796403906e-10)
sum a = (6.020933261406154e-06,-7.043811267282006e-06,5.126405901891379e-09)
sum e = 0.009962275316755661
sum de = 0.00023181558337696283
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.63e-03 |
| force | 5.38e-03 |
| divB_cleaning | 2.46e-03 |
+---------------+----------+
Info: cfl dt = 0.0016329898226056236 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 | 8.1749e+04 | 12514 | 1 | 1.531e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.48092664022284 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.46293107326642846, dt = 0.0016329898226056236 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.5%)
patch tree reduce : 1.34 us (0.4%)
gen split merge : 722.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 346.13 us (94.8%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (69.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6065206968195636
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8717275369940945e-05,-7.66078267166697e-07,-4.88456025730333e-10)
sum a = (6.306516563090112e-06,-8.074463261985245e-06,4.6271282843096e-09)
sum e = 0.009959468404596742
sum de = 0.0002295475645253152
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.59e-03 |
| force | 5.42e-03 |
| divB_cleaning | 2.46e-03 |
+---------------+----------+
Info: cfl dt = 0.0015937425336438702 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 | 8.1981e+04 | 12514 | 1 | 1.526e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.51254566296949 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4645640630890341, dt = 0.0015937425336438702 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.8%)
patch tree reduce : 1.23 us (0.4%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 293.27 us (94.5%)
LB move op cnt : 0
LB apply : 2.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (68.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6050823078152465
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8706991228942693e-05,-7.797884048125953e-07,-4.814892322090503e-10)
sum a = (6.588812814516425e-06,-9.19905236876204e-06,4.447347311288254e-09)
sum e = 0.009956699306599348
sum de = 0.0002272906769823042
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.62e-03 |
| force | 5.46e-03 |
| divB_cleaning | 2.46e-03 |
+---------------+----------+
Info: cfl dt = 0.0016229925307084077 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 | 7.4392e+04 | 12514 | 1 | 1.682e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.1075932241305 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.46615780562267795, dt = 0.0016229925307084077 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.39 us (1.3%)
patch tree reduce : 1.26 us (0.4%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 314.14 us (94.8%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (67.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.607479622822439
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8696072681187083e-05,-7.956145508430338e-07,-4.744144830331405e-10)
sum a = (6.894720754306746e-06,-1.0336107449151899e-05,5.067520550461603e-09)
sum e = 0.009953944496759161
sum de = 0.00022531422937514125
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.66e-03 |
| force | 5.45e-03 |
| divB_cleaning | 2.46e-03 |
+---------------+----------+
Info: cfl dt = 0.001664557691552942 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 | 6.2888e+04 | 12514 | 1 | 1.990e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.362299316370414 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.46778079815338636, dt = 0.001664557691552942 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.53 us (1.5%)
patch tree reduce : 1.17 us (0.4%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 772.00 ns (0.3%)
LB compute : 279.90 us (94.5%)
LB move op cnt : 0
LB apply : 3.08 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (66.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.608918011826752
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.868434777757361e-05,-8.13742313949205e-07,-4.6547603445639613e-10)
sum a = (7.221433259274957e-06,-1.148052692680923e-05,4.793981393110094e-09)
sum e = 0.009951149757924055
sum de = 0.00022338064415776456
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.72e-03 |
| force | 5.41e-03 |
| divB_cleaning | 2.46e-03 |
+---------------+----------+
Info: cfl dt = 0.0017202094614297747 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 | 8.2677e+04 | 12514 | 1 | 1.514e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.590465618007315 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4694453558449393, dt = 0.0017202094614297747 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.98 us (1.6%)
patch tree reduce : 1.35 us (0.4%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 290.90 us (94.3%)
LB move op cnt : 0
LB apply : 3.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (67.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6079590858238766
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.867165348384943e-05,-8.344437011130125e-07,-4.5745704316028674e-10)
sum a = (7.63178345809389e-06,-1.2630525605365125e-05,4.162292949524557e-09)
sum e = 0.009948294000233181
sum de = 0.0002214552688583802
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.75e-03 |
| force | 5.40e-03 |
| divB_cleaning | 2.46e-03 |
+---------------+----------+
Info: cfl dt = 0.0017515211640536882 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 | 8.2816e+04 | 12514 | 1 | 1.511e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.98271534241028 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.47116556530636905, dt = 0.0017515211640536882 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.5%)
patch tree reduce : 1.15 us (0.3%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 334.63 us (95.1%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (69.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6070001598209993
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8657933309455867e-05,-8.575554533276483e-07,-4.50710017187084e-10)
sum a = (8.091904115856688e-06,-1.3775724658083344e-05,2.9924781767154504e-09)
sum e = 0.00994539456335295
sum de = 0.0002194306072223159
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.70e-03 |
| force | 5.48e-03 |
| divB_cleaning | 2.46e-03 |
+---------------+----------+
Info: cfl dt = 0.0016996706873750572 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 | 8.2453e+04 | 12514 | 1 | 1.518e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.545977899902596 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.47291708647042274, dt = 0.0016996706873750572 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.10 us (1.2%)
patch tree reduce : 1.28 us (0.4%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.3%)
LB compute : 328.64 us (95.5%)
LB move op cnt : 0
LB apply : 3.06 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (70.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6050823078152456
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.864377678169014e-05,-8.819725689152582e-07,-4.466482674137328e-10)
sum a = (8.62481084675142e-06,-1.4873117516984973e-05,1.7000420205540902e-09)
sum e = 0.009942550222231412
sum de = 0.00021738120309405253
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.74e-03 |
| force | 5.58e-03 |
| divB_cleaning | 2.46e-03 |
+---------------+----------+
Info: cfl dt = 0.0017358395059787098 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 | 6.1045e+04 | 12514 | 1 | 2.050e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.848593890304684 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4746167571577978, dt = 0.00038324284220236926 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.43 us (1.3%)
patch tree reduce : 1.21 us (0.4%)
gen split merge : 622.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 782.00 ns (0.2%)
LB compute : 324.59 us (95.2%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (67.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6029247243087728
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8640018501692922e-05,-8.886051879823282e-07,-4.4709509640321307e-10)
sum a = (8.758824789756536e-06,-1.5096315622548353e-05,1.1128638038311656e-09)
sum e = 0.00994140545710763
sum de = 0.00021527542929928431
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.74e-03 |
| force | 5.59e-03 |
| divB_cleaning | 2.46e-03 |
+---------------+----------+
Info: cfl dt = 0.0017423854936311797 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 | 8.4671e+04 | 12514 | 1 | 1.478e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.33496955752216 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 336 [SPH][rank=0]
Info: time since start : 134.146423016 (s) [SPH][rank=0]
Info: dump to _to_trash/orztang_00019.vtk [VTK Dump][rank=0]
- took 2.28 ms, bandwidth = 307.33 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 940.29 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 940.66 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/rho_slice_0000019.npy
Saving metadata to _to_trash/plots/rho_slice_0000019.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 930.89 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/vy_slice_0000019.npy
Saving metadata to _to_trash/plots/vy_slice_0000019.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.005808249000000001 s
Info: compute_slice took 937.92 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/By_slice_0000019.npy
Saving metadata to _to_trash/plots/By_slice_0000019.json
Info: evolve_until (target_time = 0.50s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.47500000000000014, dt = 0.0017423854936311797 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.65 us (2.7%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 1.22 us (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 336.64 us (93.3%)
LB move op cnt : 0
LB apply : 3.94 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (69.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6012466038037383
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.862473157249576e-05,-9.14951558868318e-07,-4.4526857457927316e-10)
sum a = (9.31040677327127e-06,-1.6192340661258978e-05,-1.1242264472407296e-09)
sum e = 0.009939087114467868
sum de = 0.0002159466596649183
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.74e-03 |
| force | 5.63e-03 |
| divB_cleaning | 2.46e-03 |
+---------------+----------+
Info: cfl dt = 0.0017425660505736267 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 | 8.0423e+04 | 12514 | 1 | 1.556e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.31149988558537 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.47674238549363135, dt = 0.0017425660505736267 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.00 us (1.6%)
patch tree reduce : 1.08 us (0.4%)
gen split merge : 682.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 286.49 us (94.4%)
LB move op cnt : 0
LB apply : 3.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (64.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.597890362793671
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8608027039512328e-05,-9.441226310483104e-07,-4.491765502200825e-10)
sum a = (9.87483293700264e-06,-1.7179443597146896e-05,-3.25823203338671e-09)
sum e = 0.009936265560513068
sum de = 0.00021384874381105972
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.73e-03 |
| force | 5.62e-03 |
| divB_cleaning | 2.46e-03 |
+---------------+----------+
Info: cfl dt = 0.001731994125455547 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 | 7.1518e+04 | 12514 | 1 | 1.750e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.851871864637786 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.47848495154420495, dt = 0.001731994125455547 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.6%)
patch tree reduce : 1.09 us (0.3%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 306.92 us (94.9%)
LB move op cnt : 0
LB apply : 3.11 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (68.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.593095732779286
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.859043211194e-05,-9.747373724692463e-07,-4.566791118041613e-10)
sum a = (1.04191974305712e-05,-1.8066441907758002e-05,-5.0597450469770016e-09)
sum e = 0.00993347096043692
sum de = 0.00021237061737368595
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.72e-03 |
| force | 5.59e-03 |
| divB_cleaning | 2.46e-03 |
+---------------+----------+
Info: cfl dt = 0.001724880488904103 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 | 6.8479e+04 | 12514 | 1 | 1.827e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.12023474595354 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4802169456696605, dt = 0.001724880488904103 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.72 us (1.3%)
patch tree reduce : 1.21 us (0.3%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 351.90 us (95.4%)
LB move op cnt : 0
LB apply : 3.41 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (66.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5899792232699363
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8571988823529506e-05,-1.0066679635516134e-06,-4.669666722927191e-10)
sum a = (1.0882001905601855e-05,-1.887838720407313e-05,-6.4804472435904995e-09)
sum e = 0.009930714517269975
sum de = 0.00021102340522206683
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.71e-03 |
| force | 5.59e-03 |
| divB_cleaning | 2.46e-03 |
+---------------+----------+
Info: cfl dt = 0.0017145362722677461 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 | 6.4997e+04 | 12514 | 1 | 1.925e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.2521023078418 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4819418261585646, dt = 0.0017145362722677461 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.01 us (1.4%)
patch tree reduce : 1.38 us (0.4%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 330.40 us (95.0%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.58638325075915
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8552932095342968e-05,-1.0397358974747085e-06,-4.793029049020496e-10)
sum a = (1.1253760773244654e-05,-1.9608216246299238e-05,-7.748515167968481e-09)
sum e = 0.00992799644211583
sum de = 0.00020979363305498794
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.74e-03 |
| force | 5.48e-03 |
| divB_cleaning | 2.46e-03 |
+---------------+----------+
Info: cfl dt = 0.001738490629866708 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 | 5.4002e+04 | 12514 | 1 | 2.317e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.63559240943658 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4836563624308324, dt = 0.001738490629866708 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.3%)
patch tree reduce : 1.26 us (0.3%)
gen split merge : 622.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 371.84 us (95.5%)
LB move op cnt : 0
LB apply : 3.84 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (66.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.587342176762027
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8533048840656343e-05,-1.0744502568700407e-06,-4.938607001429821e-10)
sum a = (1.1509634401120172e-05,-2.024652803872887e-05,-9.623025516920387e-09)
sum e = 0.00992528505754999
sum de = 0.00020873524208163044
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.76e-03 |
| force | 5.39e-03 |
| divB_cleaning | 2.46e-03 |
+---------------+----------+
Info: cfl dt = 0.0017642822997329265 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 | 8.1724e+04 | 12514 | 1 | 1.531e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.87238347773318 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.48539485306069907, dt = 0.0017642822997329265 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.09 us (1.1%)
patch tree reduce : 1.40 us (0.4%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 341.08 us (95.7%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (68.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5883011027649028
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8512520179453817e-05,-1.1107256974547304e-06,-5.124678430711979e-10)
sum a = (1.1663039886804539e-05,-2.075348447610792e-05,-1.0998784434759912e-08)
sum e = 0.009922559656568276
sum de = 0.0002077205591627583
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.75e-03 |
| force | 5.38e-03 |
| divB_cleaning | 2.47e-03 |
+---------------+----------+
Info: cfl dt = 0.0017463357391540445 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 | 8.0990e+04 | 12514 | 1 | 1.545e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.1060663039819 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.487159135360432, dt = 0.0017463357391540445 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.39 us (1.5%)
patch tree reduce : 1.52 us (0.5%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 811.00 ns (0.3%)
LB compute : 278.55 us (94.8%)
LB move op cnt : 0
LB apply : 2.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (66.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.584944861754834
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8492017270780663e-05,-1.1474154562419892e-06,-5.328890269707236e-10)
sum a = (1.164988597954746e-05,-2.110922363866254e-05,-1.1765268529430368e-08)
sum e = 0.009919861410494512
sum de = 0.00020682038052862811
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.77e-03 |
| force | 5.44e-03 |
| divB_cleaning | 2.47e-03 |
+---------------+----------+
Info: cfl dt = 0.0017686790933585561 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 | 8.2545e+04 | 12514 | 1 | 1.516e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.46921381109828 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.48890547109958604, dt = 0.0017686790933585561 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.75 us (1.5%)
patch tree reduce : 1.30 us (0.4%)
gen split merge : 682.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.3%)
LB compute : 301.09 us (94.7%)
LB move op cnt : 0
LB apply : 3.20 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (65.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.584705130254115
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8471423846577888e-05,-1.1850615187754517e-06,-5.543672807304523e-10)
sum a = (1.1477800915784117e-05,-2.1322123953681585e-05,-1.3100853937639485e-08)
sum e = 0.009917177980074736
sum de = 0.00020621017459264207
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.78e-03 |
| force | 5.56e-03 |
| divB_cleaning | 2.47e-03 |
+---------------+----------+
Info: cfl dt = 0.0017770043317740937 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 | 8.1803e+04 | 12514 | 1 | 1.530e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.62227940983146 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4906741501929446, dt = 0.0017770043317740937 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.61 us (1.5%)
patch tree reduce : 1.37 us (0.5%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 285.24 us (94.5%)
LB move op cnt : 0
LB apply : 3.55 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (66.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5859037877577107
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8451179926258578e-05,-1.2231393015717258e-06,-5.788286659218617e-10)
sum a = (1.1164121888143325e-05,-2.140891642375225e-05,-1.3990841860029592e-08)
sum e = 0.009914500363646439
sum de = 0.00020570927734797701
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.72e-03 |
| force | 5.65e-03 |
| divB_cleaning | 2.47e-03 |
+---------------+----------+
Info: cfl dt = 0.0017177139522745264 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 | 8.2717e+04 | 12514 | 1 | 1.513e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.2853187616752 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.49245115452471866, dt = 0.0017177139522745264 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.28 us (1.2%)
patch tree reduce : 1.06 us (0.3%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 343.20 us (95.6%)
LB move op cnt : 0
LB apply : 3.98 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.584705130254114
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.843228186282173e-05,-1.2599908113137084e-06,-6.036516863856938e-10)
sum a = (1.0754869337323181e-05,-2.137775673154947e-05,-1.341862247548191e-08)
sum e = 0.009911899560225663
sum de = 0.00020522347575528555
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.75e-03 |
| force | 5.69e-03 |
| divB_cleaning | 2.48e-03 |
+---------------+----------+
Info: cfl dt = 0.0017545385482825827 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 | 5.6787e+04 | 12514 | 1 | 2.204e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.061424985190715 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4941688684769932, dt = 0.0017545385482825827 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.78 us (1.2%)
patch tree reduce : 1.07 us (0.3%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 389.91 us (95.9%)
LB move op cnt : 0
LB apply : 3.82 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (71.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.584705130254114
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8413763519396163e-05,-1.2974721478558655e-06,-6.267037221733371e-10)
sum a = (1.0272608183673491e-05,-2.1261412169507128e-05,-1.3401597918398498e-08)
sum e = 0.009909321927169801
sum de = 0.00020491589561216634
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.73e-03 |
| force | 5.73e-03 |
| divB_cleaning | 2.48e-03 |
+---------------+----------+
Info: cfl dt = 0.0017340305211563458 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 | 8.1508e+04 | 12514 | 1 | 1.535e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.1404825870021 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.49592340702527576, dt = 0.0017340305211563458 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.25 us (1.2%)
patch tree reduce : 851.00 ns (0.2%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 351.04 us (95.8%)
LB move op cnt : 0
LB apply : 3.35 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (70.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5825475467476435
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.839637357616593e-05,-1.3342380199712849e-06,-6.499275668751158e-10)
sum a = (9.755571015107735e-06,-2.1086287591837773e-05,-1.3293065966163131e-08)
sum e = 0.009906769040791458
sum de = 0.00020429024963437368
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.77e-03 |
| force | 5.67e-03 |
| divB_cleaning | 2.48e-03 |
+---------------+----------+
Info: cfl dt = 0.0017683785869889168 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 | 7.8965e+04 | 12514 | 1 | 1.585e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.39128359992515 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4976574375464321, dt = 0.0017683785869889168 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.38 us (1.5%)
patch tree reduce : 1.22 us (0.4%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 792.00 ns (0.3%)
LB compute : 271.60 us (94.8%)
LB move op cnt : 0
LB apply : 2.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (67.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.58038996324117
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8379570312394337e-05,-1.371374723746417e-06,-6.733406412263448e-10)
sum a = (9.195186695067621e-06,-2.0848304865419e-05,-1.3406826072854574e-08)
sum e = 0.009904220012237626
sum de = 0.00020356407900876691
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.82e-03 |
| force | 5.63e-03 |
| divB_cleaning | 2.48e-03 |
+---------------+----------+
Info: cfl dt = 0.0018169072976163623 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 | 8.2121e+04 | 12514 | 1 | 1.524e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.77662250110514 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.499425816133421, dt = 0.0005741838665790922 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.96 us (1.6%)
patch tree reduce : 1.19 us (0.4%)
gen split merge : 622.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 812.00 ns (0.3%)
LB compute : 293.78 us (94.7%)
LB move op cnt : 0
LB apply : 3.12 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (64.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5791913057375733
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.837478607035996e-05,-1.3831350622671077e-06,-6.811392099278486e-10)
sum a = (9.012047561224474e-06,-2.0754978439532864e-05,-1.3439875371670225e-08)
sum e = 0.009902971712113654
sum de = 0.0002020123261179616
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.82e-03 |
| force | 5.64e-03 |
| divB_cleaning | 2.48e-03 |
+---------------+----------+
Info: cfl dt = 0.0018207011272069035 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 | 8.4275e+04 | 12514 | 1 | 1.485e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.920515266982141 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 351 [SPH][rank=0]
Info: time since start : 140.57226570400002 (s) [SPH][rank=0]
Info: dump to _to_trash/orztang_00020.vtk [VTK Dump][rank=0]
- took 2.31 ms, bandwidth = 303.33 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 965.31 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 949.97 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/rho_slice_0000020.npy
Saving metadata to _to_trash/plots/rho_slice_0000020.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 938.79 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/vy_slice_0000020.npy
Saving metadata to _to_trash/plots/vy_slice_0000020.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.006418079 s
Info: compute_slice took 955.00 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/By_slice_0000020.npy
Saving metadata to _to_trash/plots/By_slice_0000020.json
Info: evolve_until (target_time = 0.53s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.5000000000000001, dt = 0.0018207011272069035 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.34 us (2.3%)
patch tree reduce : 1.61 us (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 376.26 us (94.4%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (68.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5760747962282253
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.835843040297476e-05,-1.4208968816428373e-06,-7.056186943537156e-10)
sum a = (8.423279203929085e-06,-2.044706267050452e-05,-1.4006219383692199e-08)
sum e = 0.009900803228974624
sum de = 0.00020267942875459372
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.81e-03 |
| force | 5.62e-03 |
| divB_cleaning | 2.49e-03 |
+---------------+----------+
Info: cfl dt = 0.0018135930657633731 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 | 7.7549e+04 | 12514 | 1 | 1.614e-01 | 0.0% | 2.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.61843015691591 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.501820701127207, dt = 0.0018135930657633731 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.56 us (1.3%)
patch tree reduce : 1.21 us (0.4%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 329.14 us (95.4%)
LB move op cnt : 0
LB apply : 3.09 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (64.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5743966757231904
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.834368998782539e-05,-1.4576992214235688e-06,-7.315358482960294e-10)
sum a = (7.817291754101865e-06,-2.0104300331132016e-05,-1.5569997856783066e-08)
sum e = 0.009898231786630168
sum de = 0.00020047738873867223
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.80e-03 |
| force | 5.62e-03 |
| divB_cleaning | 2.49e-03 |
+---------------+----------+
Info: cfl dt = 0.001795425493479044 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 | 8.1052e+04 | 12514 | 1 | 1.544e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.28731970169858 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5036342941929703, dt = 0.001795425493479044 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.48 us (1.5%)
patch tree reduce : 1.32 us (0.4%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 288.66 us (94.6%)
LB move op cnt : 0
LB apply : 3.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (67.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.572239092216717
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8330204130238543e-05,-1.4934841790656703e-06,-7.609086482792623e-10)
sum a = (7.198085848811897e-06,-1.9780488478631486e-05,-1.7686769345983125e-08)
sum e = 0.009895697332461774
sum de = 0.000198424199006286
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.81e-03 |
| force | 5.65e-03 |
| divB_cleaning | 2.49e-03 |
+---------------+----------+
Info: cfl dt = 0.0018119703359947808 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 | 8.2018e+04 | 12514 | 1 | 1.526e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.36256086732772 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5054297196864493, dt = 0.0018119703359947808 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.5%)
patch tree reduce : 1.33 us (0.4%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 315.79 us (94.8%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (66.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.568882851206649
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.831771728123879e-05,-1.5290351473927192e-06,-7.948568024213535e-10)
sum a = (6.576369120756967e-06,-1.943562283892254e-05,-2.062037363178086e-08)
sum e = 0.009893181446437672
sum de = 0.00019588423526126033
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.79e-03 |
| force | 5.68e-03 |
| divB_cleaning | 2.50e-03 |
+---------------+----------+
Info: cfl dt = 0.0017911884425443221 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 | 8.2200e+04 | 12514 | 1 | 1.522e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.84765203004788 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5072416900224441, dt = 0.0017911884425443221 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.91 us (1.3%)
patch tree reduce : 811.00 ns (0.3%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 296.95 us (95.4%)
LB move op cnt : 0
LB apply : 2.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (66.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.566485536199456
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8306501031009813e-05,-1.5635355672410633e-06,-8.344495793232934e-10)
sum a = (5.943273236380963e-06,-1.911860886396577e-05,-2.2181130370612176e-08)
sum e = 0.009890698173341185
sum de = 0.00019272743313165284
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.84e-03 |
| force | 5.71e-03 |
| divB_cleaning | 2.50e-03 |
+---------------+----------+
Info: cfl dt = 0.0018367376998159035 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 | 8.2062e+04 | 12514 | 1 | 1.525e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.28557650015204 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5090328784649885, dt = 0.0018367376998159035 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.88 us (1.2%)
patch tree reduce : 992.00 ns (0.3%)
gen split merge : 591.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 741.00 ns (0.2%)
LB compute : 315.52 us (95.7%)
LB move op cnt : 0
LB apply : 3.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (62.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.568643119705928
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.829615179401198e-05,-1.5983675210254892e-06,-8.765883024154424e-10)
sum a = (5.263580382653689e-06,-1.8798546728250832e-05,-2.439259287926572e-08)
sum e = 0.009888208444113603
sum de = 0.0001889924077816749
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.89e-03 |
| force | 5.70e-03 |
| divB_cleaning | 2.50e-03 |
+---------------+----------+
Info: cfl dt = 0.001892197870099673 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 | 5.5439e+04 | 12514 | 1 | 2.257e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.29309030384533 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5108696161648043, dt = 0.001892197870099673 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.07 us (1.4%)
patch tree reduce : 1.25 us (0.3%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 355.17 us (95.3%)
LB move op cnt : 0
LB apply : 3.43 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (67.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.570081508710244
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8286816267167103e-05,-1.6336441560102258e-06,-9.247748529886109e-10)
sum a = (4.5543935540699404e-06,-1.8443934285784618e-05,-2.6899512360864516e-08)
sum e = 0.009885674289589986
sum de = 0.00018447978934051353
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.84e-03 |
| force | 5.77e-03 |
| divB_cleaning | 2.51e-03 |
+---------------+----------+
Info: cfl dt = 0.0018399219939925146 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 | 7.3823e+04 | 12514 | 1 | 1.695e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.184838314079585 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.512761814034904, dt = 0.0018399219939925146 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.49 us (1.2%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 347.05 us (95.5%)
LB move op cnt : 0
LB apply : 3.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (66.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.567923925203771
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.827910749920107e-05,-1.6672440579041767e-06,-9.766396512607702e-10)
sum a = (3.846258104471176e-06,-1.8098906113740828e-05,-2.9465903552704764e-08)
sum e = 0.009883182415934649
sum de = 0.00017935339238877497
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.89e-03 |
| force | 5.78e-03 |
| divB_cleaning | 2.51e-03 |
+---------------+----------+
Info: cfl dt = 0.0018916690498601986 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 | 7.6314e+04 | 12514 | 1 | 1.640e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.39343765401026 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5146017360288965, dt = 0.0018916690498601986 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.3%)
patch tree reduce : 1.25 us (0.3%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 378.02 us (95.6%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (68.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5643279526929827
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.827248310878125e-05,-1.7011637859747364e-06,-1.0347403688371397e-09)
sum a = (3.1425267607822884e-06,-1.778754909018249e-05,-3.2105941878426385e-08)
sum e = 0.009880702540585217
sum de = 0.000173769449460517
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.92e-03 |
| force | 5.81e-03 |
| divB_cleaning | 2.52e-03 |
+---------------+----------+
Info: cfl dt = 0.0019217034246859926 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 | 6.5965e+04 | 12514 | 1 | 1.897e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.89735677445373 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5164934050787566, dt = 0.0019217034246859926 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.4%)
patch tree reduce : 1.35 us (0.4%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 354.95 us (94.9%)
LB move op cnt : 0
LB apply : 4.10 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (66.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.564088221192264
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.826710971774412e-05,-1.735051687755533e-06,-1.0989355066934108e-09)
sum a = (2.486263290519339e-06,-1.7553092800340416e-05,-3.402680814031393e-08)
sum e = 0.009878207118031298
sum de = 0.0001673886679114141
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.86e-03 |
| force | 5.76e-03 |
| divB_cleaning | 2.52e-03 |
+---------------+----------+
Info: cfl dt = 0.0018566086079759784 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 | 8.1033e+04 | 12514 | 1 | 1.544e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.79752449437865 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5184151085034426, dt = 0.0018566086079759784 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 26.90 us (7.2%)
patch tree reduce : 1.09 us (0.3%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 332.86 us (89.5%)
LB move op cnt : 0
LB apply : 3.59 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.559773054179319
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8263124271796204e-05,-1.7674156332177991e-06,-1.1639556392256646e-09)
sum a = (1.8899536443229816e-06,-1.742653752698829e-05,-3.640033008630994e-08)
sum e = 0.009875785227565171
sum de = 0.00016067765168842652
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.89e-03 |
| force | 5.71e-03 |
| divB_cleaning | 2.53e-03 |
+---------------+----------+
Info: cfl dt = 0.0018889455126460414 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 | 7.6119e+04 | 12514 | 1 | 1.644e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.65545052117715 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5202717171114186, dt = 0.0018889455126460414 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.33 us (1.2%)
patch tree reduce : 1.00 us (0.3%)
gen split merge : 551.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 345.43 us (95.6%)
LB move op cnt : 0
LB apply : 3.31 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (72.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5609717116829147
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.82601078091518e-05,-1.80021593127538e-06,-1.2349172300391205e-09)
sum a = (1.272177497559547e-06,-1.7403308068023232e-05,-3.8088285458079e-08)
sum e = 0.009873410697966838
sum de = 0.00015373778282347597
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.94e-03 |
| force | 5.73e-03 |
| divB_cleaning | 2.54e-03 |
+---------------+----------+
Info: cfl dt = 0.0019375647833327788 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 | 5.8395e+04 | 12514 | 1 | 2.143e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.73211197821057 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5221606626240647, dt = 0.0019375647833327788 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.53 us (1.1%)
patch tree reduce : 1.14 us (0.3%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 383.53 us (95.7%)
LB move op cnt : 0
LB apply : 3.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.562649832187949
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.825822635557441e-05,-1.833914028510332e-06,-1.3103099784627238e-09)
sum a = (6.757277971591846e-07,-1.752266067476279e-05,-4.076270265303466e-08)
sum e = 0.009871032977295729
sum de = 0.00014620977146295513
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.00e-03 |
| force | 5.84e-03 |
| divB_cleaning | 2.54e-03 |
+---------------+----------+
Info: cfl dt = 0.002004393697030797 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 | 8.1344e+04 | 12514 | 1 | 1.538e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.34076825999873 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5240982274073974, dt = 0.000901772592602712 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.97 us (1.4%)
patch tree reduce : 1.17 us (0.3%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 348.49 us (95.3%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (68.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5619306376857924
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.825819483273417e-05,-1.8498311103601786e-06,-1.3496595948019606e-09)
sum a = (4.4477980730172735e-07,-1.7631021784437126e-05,-4.188216841463327e-08)
sum e = 0.00986955767981173
sum de = 0.0001416944406513296
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.05e-03 |
| force | 5.87e-03 |
| divB_cleaning | 2.55e-03 |
+---------------+----------+
Info: cfl dt = 0.002045422747190031 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 | 8.2610e+04 | 12514 | 1 | 1.515e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.430758466786 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 365 [SPH][rank=0]
Info: time since start : 146.880742297 (s) [SPH][rank=0]
Info: dump to _to_trash/orztang_00021.vtk [VTK Dump][rank=0]
- took 2.31 ms, bandwidth = 303.92 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 941.45 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 950.98 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/rho_slice_0000021.npy
Saving metadata to _to_trash/plots/rho_slice_0000021.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 932.33 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/vy_slice_0000021.npy
Saving metadata to _to_trash/plots/vy_slice_0000021.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.005657107000000001 s
Info: compute_slice took 942.58 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/By_slice_0000021.npy
Saving metadata to _to_trash/plots/By_slice_0000021.json
Info: evolve_until (target_time = 0.55s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.5250000000000001, dt = 0.002045422747190031 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 14.64 us (3.8%)
patch tree reduce : 1.69 us (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 359.28 us (92.4%)
LB move op cnt : 0
LB apply : 4.06 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (66.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.55929359117788
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8257389201282627e-05,-1.885942861913713e-06,-1.4358310865497743e-09)
sum a = (-5.015361909440866e-08,-1.7956866023239533e-05,-4.4436883482835225e-08)
sum e = 0.009867536042347849
sum de = 0.00013494410471726265
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.06e-03 |
| force | 5.80e-03 |
| divB_cleaning | 2.55e-03 |
+---------------+----------+
Info: cfl dt = 0.0020637188923054335 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 | 7.9364e+04 | 12514 | 1 | 1.577e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.69934968698947 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5270454227471901, dt = 0.0020637188923054335 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.47 us (1.3%)
patch tree reduce : 1.18 us (0.4%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.3%)
LB compute : 316.41 us (95.1%)
LB move op cnt : 0
LB apply : 3.86 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (69.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.554498961163497
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8257998878298297e-05,-1.9233340301814097e-06,-1.530149058665036e-09)
sum a = (-3.990762953884542e-07,-1.836119229338395e-05,-4.787578753046789e-08)
sum e = 0.009865160258390609
sum de = 0.00012538842884423856
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.05e-03 |
| force | 5.81e-03 |
| divB_cleaning | 2.54e-03 |
+---------------+----------+
Info: cfl dt = 0.0020459139279036223 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 | 8.2072e+04 | 12514 | 1 | 1.525e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.724760838122585 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5291091416394955, dt = 0.0020459139279036223 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.23 us (1.2%)
patch tree reduce : 821.00 ns (0.2%)
gen split merge : 541.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 327.23 us (95.8%)
LB move op cnt : 0
LB apply : 2.85 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (73.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.551861914655586
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8259175393208948e-05,-1.9613166571083503e-06,-1.6316472648090457e-09)
sum a = (-6.248683470905578e-07,-1.878050064831542e-05,-4.930612231550196e-08)
sum e = 0.009862861036323537
sum de = 0.00011641787494259942
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.98e-03 |
| force | 5.90e-03 |
| divB_cleaning | 2.54e-03 |
+---------------+----------+
Info: cfl dt = 0.0019801435189311075 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 | 7.1566e+04 | 12514 | 1 | 1.749e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.12143788387532 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5311550555673992, dt = 0.0019801435189311075 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.30 us (1.4%)
patch tree reduce : 852.00 ns (0.3%)
gen split merge : 601.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 752.00 ns (0.2%)
LB compute : 299.09 us (95.4%)
LB move op cnt : 0
LB apply : 3.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (69.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.550663257151989
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8260643697768273e-05,-1.9989336781512496e-06,-1.730743634284979e-09)
sum a = (-7.095818176447655e-07,-1.9210851266417685e-05,-5.0865092806068424e-08)
sum e = 0.009860697770203476
sum de = 0.00010760734623046101
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.99e-03 |
| force | 6.05e-03 |
| divB_cleaning | 2.53e-03 |
+---------------+----------+
Info: cfl dt = 0.0019933113143791093 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 | 6.4023e+04 | 12514 | 1 | 1.955e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.47032962415141 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5331351990863302, dt = 0.0019933113143791093 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.48 us (1.5%)
patch tree reduce : 1.17 us (0.4%)
gen split merge : 601.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 274.93 us (94.5%)
LB move op cnt : 0
LB apply : 2.99 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (67.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5540194981620576
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.826214198764863e-05,-2.037652963332949e-06,-1.833677091938641e-09)
sum a = (-6.895639573574948e-07,-1.9658296241871237e-05,-5.194376310412793e-08)
sum e = 0.009858650193168925
sum de = 9.883084021450079e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.99e-03 |
| force | 6.16e-03 |
| divB_cleaning | 2.52e-03 |
+---------------+----------+
Info: cfl dt = 0.0019926317457768464 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 | 5.9038e+04 | 12514 | 1 | 2.120e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.85416946779971 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5351285104007093, dt = 0.0019926317457768464 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.78 us (1.5%)
patch tree reduce : 1.06 us (0.3%)
gen split merge : 601.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.3%)
LB compute : 310.98 us (95.1%)
LB move op cnt : 0
LB apply : 3.20 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.555937350167813
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8263496083767003e-05,-2.0772706570585763e-06,-1.9382569461500873e-09)
sum a = (-5.438397355846496e-07,-2.014032827084223e-05,-5.057318204380182e-08)
sum e = 0.009856696734783328
sum de = 8.990556864208783e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.01e-03 |
| force | 6.20e-03 |
| divB_cleaning | 2.51e-03 |
+---------------+----------+
Info: cfl dt = 0.0020082580400279213 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 | 6.7991e+04 | 12514 | 1 | 1.841e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.97508320163734 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5371211421464861, dt = 0.0020082580400279213 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.07 us (1.7%)
patch tree reduce : 1.35 us (0.5%)
gen split merge : 841.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 274.53 us (94.0%)
LB move op cnt : 0
LB apply : 3.18 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (69.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5554578871663742
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8264443066933403e-05,-2.1181978893990022e-06,-2.038455413933817e-09)
sum a = (-3.076817576168869e-07,-2.0694540390806053e-05,-5.063163413333641e-08)
sum e = 0.009854842541106166
sum de = 8.081110848561029e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.01e-03 |
| force | 6.18e-03 |
| divB_cleaning | 2.49e-03 |
+---------------+----------+
Info: cfl dt = 0.0020081445369598975 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 | 6.6990e+04 | 12514 | 1 | 1.868e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.70249710860906 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.539129400186514, dt = 0.0020081445369598975 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.76 us (1.6%)
patch tree reduce : 1.19 us (0.4%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.3%)
LB compute : 282.27 us (94.5%)
LB move op cnt : 0
LB apply : 3.62 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (7.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.554019498162058
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8264823803294827e-05,-2.160312018102638e-06,-2.1401897468556464e-09)
sum a = (2.264824207696629e-08,-2.1294378471190473e-05,-5.096012897658169e-08)
sum e = 0.009853095157064024
sum de = 7.152741713964789e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.04e-03 |
| force | 6.12e-03 |
| divB_cleaning | 2.48e-03 |
+---------------+----------+
Info: cfl dt = 0.0020449059553807446 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 | 6.4658e+04 | 12514 | 1 | 1.935e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.35299797773986 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5411375447234739, dt = 0.0020449059553807446 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.75 us (1.6%)
patch tree reduce : 1.04 us (0.4%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 275.10 us (94.4%)
LB move op cnt : 0
LB apply : 3.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5521016461563044
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8264445814577756e-05,-2.2044593002364696e-06,-2.2447282506492923e-09)
sum a = (4.56567380120064e-07,-2.1922043102598166e-05,-5.0717021283312265e-08)
sum e = 0.00985145627688644
sum de = 6.197633094232258e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.09e-03 |
| force | 6.09e-03 |
| divB_cleaning | 2.46e-03 |
+---------------+----------+
Info: cfl dt = 0.0020930336876526993 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 | 6.1160e+04 | 12514 | 1 | 2.046e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.9789070401999 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5431824506788546, dt = 0.0020930336876526993 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.54 us (1.3%)
patch tree reduce : 1.09 us (0.3%)
gen split merge : 611.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 782.00 ns (0.2%)
LB compute : 334.72 us (95.4%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.550902988652708
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.826304654175567e-05,-2.250984632523877e-06,-2.35063211854791e-09)
sum a = (1.0525280661321785e-06,-2.254967794075668e-05,-4.953187588617018e-08)
sum e = 0.009849918550816163
sum de = 5.2044940410850746e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.06e-03 |
| force | 6.08e-03 |
| divB_cleaning | 2.45e-03 |
+---------------+----------+
Info: cfl dt = 0.0020622916350910517 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 | 8.2442e+04 | 12514 | 1 | 1.518e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.63974722076251 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5452754843665073, dt = 0.0020622916350910517 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.24 us (1.2%)
patch tree reduce : 931.00 ns (0.3%)
gen split merge : 551.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 590.00 ns (0.2%)
LB compute : 338.18 us (96.1%)
LB move op cnt : 0
LB apply : 3.09 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (67.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5523413776570227
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8260252239033098e-05,-2.298145475145044e-06,-2.4515410172378785e-09)
sum a = (1.8044595608756693e-06,-2.3170027275453685e-05,-4.848137624693108e-08)
sum e = 0.009848504414477611
sum de = 4.213100060291147e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.07e-03 |
| force | 6.14e-03 |
| divB_cleaning | 2.44e-03 |
+---------------+----------+
Info: cfl dt = 0.0020655089138804416 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 | 8.2838e+04 | 12514 | 1 | 1.511e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.145479865745386 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5473377760015984, dt = 0.0020655089138804416 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.19 us (1.3%)
patch tree reduce : 541.00 ns (0.2%)
gen split merge : 561.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 430.00 ns (0.1%)
LB compute : 297.40 us (95.9%)
LB move op cnt : 0
LB apply : 2.84 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (66.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5523413776570245
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8255749760709478e-05,-2.3466430436393228e-06,-2.5505965137236464e-09)
sum a = (2.7086515488727243e-06,-2.3813093059016067e-05,-4.810171944162875e-08)
sum e = 0.009847242565182247
sum de = 3.237594941812639e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.04e-03 |
| force | 6.23e-03 |
| divB_cleaning | 2.42e-03 |
+---------------+----------+
Info: cfl dt = 0.002037254799761477 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 | 8.1949e+04 | 12514 | 1 | 1.527e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.694409869916974 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5494032849154789, dt = 0.0005967150845213043 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.39 us (1.4%)
patch tree reduce : 1.00 us (0.3%)
gen split merge : 581.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.2%)
LB compute : 309.88 us (95.4%)
LB move op cnt : 0
LB apply : 3.04 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (66.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.551142720153429
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.825319965916596e-05,-2.361516804530613e-06,-2.5789074430482428e-09)
sum a = (2.972953102892666e-06,-2.399602539995718e-05,-4.774594438079182e-08)
sum e = 0.009846476296867265
sum de = 2.8833382080267815e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.05e-03 |
| force | 6.24e-03 |
| divB_cleaning | 2.42e-03 |
+---------------+----------+
Info: cfl dt = 0.0020478304594163067 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 | 8.3162e+04 | 12514 | 1 | 1.505e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.2757441292506 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 378 [SPH][rank=0]
Info: time since start : 153.056267966 (s) [SPH][rank=0]
Info: dump to _to_trash/orztang_00022.vtk [VTK Dump][rank=0]
- took 2.34 ms, bandwidth = 299.68 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 947.87 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 951.05 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/rho_slice_0000022.npy
Saving metadata to _to_trash/plots/rho_slice_0000022.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 933.94 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/vy_slice_0000022.npy
Saving metadata to _to_trash/plots/vy_slice_0000022.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.006463405 s
Info: compute_slice took 945.51 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/By_slice_0000022.npy
Saving metadata to _to_trash/plots/By_slice_0000022.json
Info: evolve_until (target_time = 0.58s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.5500000000000002, dt = 0.0020478304594163067 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.42 us (2.5%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 358.13 us (94.0%)
LB move op cnt : 0
LB apply : 3.95 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (65.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5480262106440783
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8247032698885557e-05,-2.4107111754932413e-06,-2.6765768940921935e-09)
sum a = (3.976134150295393e-06,-2.471328809014717e-05,-4.63478525631518e-08)
sum e = 0.009845814866309891
sum de = 2.086505699010908e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.05e-03 |
| force | 6.16e-03 |
| divB_cleaning | 2.41e-03 |
+---------------+----------+
Info: cfl dt = 0.0020504820788799882 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 | 8.2500e+04 | 12514 | 1 | 1.517e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.601834014744924 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5520478304594164, dt = 0.0020504820788799882 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.48 us (1.5%)
patch tree reduce : 982.00 ns (0.3%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 751.00 ns (0.2%)
LB compute : 286.76 us (94.7%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (66.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5446699696340107
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.823785253471462e-05,-2.462119746024562e-06,-2.7701808076628923e-09)
sum a = (5.043724378960943e-06,-2.5446393692261856e-05,-4.353548976793411e-08)
sum e = 0.009844893320693148
sum de = 1.0921937543477395e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.01e-03 |
| force | 6.13e-03 |
| divB_cleaning | 2.39e-03 |
+---------------+----------+
Info: cfl dt = 0.002012676613636072 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 | 8.2180e+04 | 12514 | 1 | 1.523e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.476257777028856 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5540983125382964, dt = 0.002012676613636072 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.01 us (1.2%)
patch tree reduce : 791.00 ns (0.2%)
gen split merge : 531.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.3%)
LB compute : 312.70 us (95.7%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (68.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.543711043631132
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.822660661129551e-05,-2.5140867174600183e-06,-2.854920320026433e-09)
sum a = (6.179358671009555e-06,-2.616107677643268e-05,-4.0702597228105865e-08)
sum e = 0.00984410251333812
sum de = 2.0651686662557546e-06
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.06e-03 |
| force | 6.11e-03 |
| divB_cleaning | 2.39e-03 |
+---------------+----------+
Info: cfl dt = 0.002060113997186065 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 | 8.2298e+04 | 12514 | 1 | 1.521e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.65092673208947 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5561109891519325, dt = 0.002060113997186065 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.08 us (1.7%)
patch tree reduce : 1.18 us (0.4%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 284.48 us (94.2%)
LB move op cnt : 0
LB apply : 3.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (67.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.545149432635448
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.821273359571316e-05,-2.568700730873447e-06,-2.9359214620158282e-09)
sum a = (7.349879909587398e-06,-2.6875614982120637e-05,-4.0236521164631753e-08)
sum e = 0.009843471887399523
sum de = -6.609142441536082e-06
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.11e-03 |
| force | 6.15e-03 |
| divB_cleaning | 2.38e-03 |
+---------------+----------+
Info: cfl dt = 0.002114240846042125 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 | 8.2969e+04 | 12514 | 1 | 1.508e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.1712359696345 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5581711031491186, dt = 0.002114240846042125 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.59 us (1.3%)
patch tree reduce : 1.33 us (0.4%)
gen split merge : 652.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.2%)
LB compute : 324.61 us (95.0%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (68.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.544909701134729
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8195988475801107e-05,-2.626258268910569e-06,-3.0205110736537882e-09)
sum a = (8.547338223933794e-06,-2.7525926868836925e-05,-4.044576802257674e-08)
sum e = 0.00984297486308165
sum de = -1.5090521365183522e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.09e-03 |
| force | 6.20e-03 |
| divB_cleaning | 2.37e-03 |
+---------------+----------+
Info: cfl dt = 0.002093998379898644 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 | 7.0509e+04 | 12514 | 1 | 1.775e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.88506246260732 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5602853439951607, dt = 0.002093998379898644 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.07 us (1.4%)
patch tree reduce : 1.35 us (0.4%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 332.14 us (94.8%)
LB move op cnt : 0
LB apply : 4.01 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (71.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.541073997123221
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8176824505767778e-05,-2.684584973155968e-06,-3.1054256454940332e-09)
sum a = (9.667600087716007e-06,-2.809579822691177e-05,-4.0746107491000837e-08)
sum e = 0.009842592431848951
sum de = -2.301875333999248e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.16e-03 |
| force | 6.19e-03 |
| divB_cleaning | 2.36e-03 |
+---------------+----------+
Info: cfl dt = 0.002162054640638169 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 | 8.2673e+04 | 12514 | 1 | 1.514e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.80223092045431 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5623793423750594, dt = 0.002162054640638169 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.84 us (1.6%)
patch tree reduce : 1.11 us (0.4%)
gen split merge : 682.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.3%)
LB compute : 292.29 us (94.7%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (67.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5401150711203453
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.815474971287056e-05,-2.7459262789452046e-06,-3.1938354114629386e-09)
sum a = (1.0738432329219683e-05,-2.862067894010336e-05,-4.1389831844056835e-08)
sum e = 0.009842379317572324
sum de = -3.0571905623176415e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.12e-03 |
| force | 6.20e-03 |
| divB_cleaning | 2.36e-03 |
+---------------+----------+
Info: cfl dt = 0.0021195314902052883 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 | 7.0158e+04 | 12514 | 1 | 1.784e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.636613868741485 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5645413970156975, dt = 0.0021195314902052883 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.38 us (1.2%)
patch tree reduce : 1.25 us (0.4%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 832.00 ns (0.2%)
LB compute : 340.64 us (95.7%)
LB move op cnt : 0
LB apply : 3.31 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (66.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.54179319162538
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8130831668484688e-05,-2.8071561196205916e-06,-3.282258347043202e-09)
sum a = (1.1648698991293387e-05,-2.904102962906651e-05,-4.1208253415873595e-08)
sum e = 0.009842257688317596
sum de = -3.76094730973916e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.11e-03 |
| force | 6.07e-03 |
| divB_cleaning | 2.36e-03 |
+---------------+----------+
Info: cfl dt = 0.0021057480040703957 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 | 5.3037e+04 | 12514 | 1 | 2.359e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.338924545033485 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5666609285059028, dt = 0.0021057480040703957 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.66 us (1.3%)
patch tree reduce : 992.00 ns (0.3%)
gen split merge : 662.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 822.00 ns (0.2%)
LB compute : 348.79 us (95.6%)
LB move op cnt : 0
LB apply : 3.39 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (68.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.53867668211603
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.810533777440652e-05,-2.8687546830591805e-06,-3.3688401138266235e-09)
sum a = (1.241465241899045e-05,-2.9374140391412414e-05,-4.217290345433532e-08)
sum e = 0.009842273755002556
sum de = -4.38821359388767e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.00e-03 |
| force | 6.03e-03 |
| divB_cleaning | 2.35e-03 |
+---------------+----------+
Info: cfl dt = 0.0020048889802525907 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 | 8.2300e+04 | 12514 | 1 | 1.521e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.855597480106326 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5687666765099731, dt = 0.0020048889802525907 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.22 us (1.1%)
patch tree reduce : 1.08 us (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 362.06 us (96.0%)
LB move op cnt : 0
LB apply : 3.20 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (65.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5357999041074
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8079641322126973e-05,-2.9279972970960535e-06,-3.454407758174e-09)
sum a = (1.3005452412736956e-05,-2.963566026758621e-05,-4.220287194644825e-08)
sum e = 0.009842362503526927
sum de = -4.9480679511339063e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.00e-03 |
| force | 6.08e-03 |
| divB_cleaning | 2.35e-03 |
+---------------+----------+
Info: cfl dt = 0.002004833890827056 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 | 7.9553e+04 | 12514 | 1 | 1.573e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.883246601329276 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5707715654902258, dt = 0.002004833890827056 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.83 us (1.4%)
patch tree reduce : 1.32 us (0.4%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 316.67 us (95.1%)
LB move op cnt : 0
LB apply : 3.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (65.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5355601726066794
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8052975306165995e-05,-2.9876740323361772e-06,-3.539047547892434e-09)
sum a = (1.3431127819321044e-05,-2.9853717980575923e-05,-4.2574852506301346e-08)
sum e = 0.00984259499832294
sum de = -5.460905284436917e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.01e-03 |
| force | 6.21e-03 |
| divB_cleaning | 2.36e-03 |
+---------------+----------+
Info: cfl dt = 0.0020100700086091486 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 | 6.9616e+04 | 12514 | 1 | 1.798e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.150822762457175 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5727763993810528, dt = 0.0020100700086091486 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.85 us (1.5%)
patch tree reduce : 1.15 us (0.4%)
gen split merge : 632.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 309.65 us (94.7%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (68.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5353204411059616
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8025551094713705e-05,-3.047900680241045e-06,-3.6249988616528955e-09)
sum a = (1.364909280906928e-05,-3.005880708358698e-05,-4.3412911757542965e-08)
sum e = 0.009842927012917687
sum de = -5.9555402826179634e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.99e-03 |
| force | 6.21e-03 |
| divB_cleaning | 2.36e-03 |
+---------------+----------+
Info: cfl dt = 0.0019890687414074776 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 | 7.5345e+04 | 12514 | 1 | 1.661e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.56845667256415 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.574786469389662, dt = 0.0002135306103381307 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.70 us (1.6%)
patch tree reduce : 1.15 us (0.4%)
gen split merge : 621.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.3%)
LB compute : 285.45 us (94.7%)
LB move op cnt : 0
LB apply : 3.22 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (66.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.535080709605242
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8022417533151108e-05,-3.054525277391224e-06,-3.6351111260802e-09)
sum a = (1.3646633787283671e-05,-3.0085332544079266e-05,-4.344955637058208e-08)
sum e = 0.009842562297264183
sum de = -6.066227224841561e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.99e-03 |
| force | 6.22e-03 |
| divB_cleaning | 2.36e-03 |
+---------------+----------+
Info: cfl dt = 0.0019880703460281026 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 | 7.4775e+04 | 12514 | 1 | 1.674e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.593281560165756 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 391 [SPH][rank=0]
Info: time since start : 159.150747136 (s) [SPH][rank=0]
Info: dump to _to_trash/orztang_00023.vtk [VTK Dump][rank=0]
- took 2.40 ms, bandwidth = 291.97 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 955.17 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 948.64 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/rho_slice_0000023.npy
Saving metadata to _to_trash/plots/rho_slice_0000023.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 988.18 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/vy_slice_0000023.npy
Saving metadata to _to_trash/plots/vy_slice_0000023.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.005662185 s
Info: compute_slice took 948.30 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/By_slice_0000023.npy
Saving metadata to _to_trash/plots/By_slice_0000023.json
Info: evolve_until (target_time = 0.60s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.5750000000000002, dt = 0.0019880703460281026 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.50 us (2.1%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 380.61 us (94.6%)
LB move op cnt : 0
LB apply : 4.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (64.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.533402589100208
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7995287327733695e-05,-3.1143398668713754e-06,-3.72149581302194e-09)
sum a = (1.3683278487960346e-05,-3.0324855476245398e-05,-4.5113102465445254e-08)
sum e = 0.00984337398062019
sum de = -6.410169845609515e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.04e-03 |
| force | 6.13e-03 |
| divB_cleaning | 2.36e-03 |
+---------------+----------+
Info: cfl dt = 0.002042692271882913 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 | 7.7679e+04 | 12514 | 1 | 1.611e-01 | 0.0% | 1.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.42653134017485 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5769880703460283, dt = 0.002042692271882913 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.46 us (1.3%)
patch tree reduce : 972.00 ns (0.3%)
gen split merge : 621.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 812.00 ns (0.2%)
LB compute : 315.26 us (95.2%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5334025891002074
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.796730017439089e-05,-3.1765223090179168e-06,-3.815301622118885e-09)
sum a = (1.354821884298738e-05,-3.062773890987492e-05,-4.787138762969503e-08)
sum e = 0.009843922115426904
sum de = -6.930748446350954e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.04e-03 |
| force | 6.13e-03 |
| divB_cleaning | 2.37e-03 |
+---------------+----------+
Info: cfl dt = 0.0020388420697028064 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 | 8.2600e+04 | 12514 | 1 | 1.515e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.53874236133617 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5790307626179112, dt = 0.0020388420697028064 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.6%)
patch tree reduce : 1.15 us (0.3%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 822.00 ns (0.2%)
LB compute : 315.03 us (95.0%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (66.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.531484737094454
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7939815438490862e-05,-3.239276780431865e-06,-3.915720985047704e-09)
sum a = (1.3316800292762897e-05,-3.0908195004161774e-05,-5.219444996377952e-08)
sum e = 0.009844520580501023
sum de = -7.370003622594038e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.03e-03 |
| force | 6.18e-03 |
| divB_cleaning | 2.37e-03 |
+---------------+----------+
Info: cfl dt = 0.0020257545806079556 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 | 6.5774e+04 | 12514 | 1 | 1.903e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.57835766525578 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.581069604687614, dt = 0.0020257545806079556 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.35 us (1.4%)
patch tree reduce : 1.09 us (0.4%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 721.00 ns (0.2%)
LB compute : 286.02 us (94.9%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (69.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5334025891002088
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7913074782236877e-05,-3.302175100881714e-06,-4.02586115182252e-09)
sum a = (1.3037056223980193e-05,-3.115427643452091e-05,-5.5839173509468394e-08)
sum e = 0.009845187164147583
sum de = -7.778688650139751e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.03e-03 |
| force | 6.17e-03 |
| divB_cleaning | 2.38e-03 |
+---------------+----------+
Info: cfl dt = 0.0020268466344360424 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 | 8.2773e+04 | 12514 | 1 | 1.512e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.23729769371008 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.583095359268222, dt = 0.0020268466344360424 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.83 us (1.6%)
patch tree reduce : 1.16 us (0.4%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 287.72 us (94.6%)
LB move op cnt : 0
LB apply : 3.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (71.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.530765542592297
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7886934015120693e-05,-3.3655692915139615e-06,-4.142730250428697e-09)
sum a = (1.2699727254227498e-05,-3.139099152719011e-05,-5.7570973348503535e-08)
sum e = 0.009845932421462476
sum de = -8.149022993798748e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.97e-03 |
| force | 6.25e-03 |
| divB_cleaning | 2.39e-03 |
+---------------+----------+
Info: cfl dt = 0.0019655265595510943 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 | 8.3293e+04 | 12514 | 1 | 1.502e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.56638313257274 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5851222059026581, dt = 0.0019655265595510943 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.27 us (1.3%)
patch tree reduce : 972.00 ns (0.3%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.3%)
LB compute : 314.88 us (95.4%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (68.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.53004634809014
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7862314220947133e-05,-3.4275090116852166e-06,-4.257642573941947e-09)
sum a = (1.2296364668851752e-05,-3.167541685159923e-05,-5.621037569375096e-08)
sum e = 0.009846698884387608
sum de = -8.474041516045832e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.03e-03 |
| force | 6.32e-03 |
| divB_cleaning | 2.39e-03 |
+---------------+----------+
Info: cfl dt = 0.00203439369509047 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 | 7.6149e+04 | 12514 | 1 | 1.643e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.057439577530054 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5870877324622091, dt = 0.00203439369509047 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.40 us (1.4%)
patch tree reduce : 1.27 us (0.4%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.3%)
LB compute : 287.36 us (94.6%)
LB move op cnt : 0
LB apply : 3.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (69.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.523573597570722
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7837694984129415e-05,-3.492228802782345e-06,-4.3706594624382385e-09)
sum a = (1.1821915440319014e-05,-3.2039247438969314e-05,-5.315444133839901e-08)
sum e = 0.009847612083964235
sum de = -8.755945591803323e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.04e-03 |
| force | 6.40e-03 |
| divB_cleaning | 2.39e-03 |
+---------------+----------+
Info: cfl dt = 0.002040118127231435 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 | 7.2263e+04 | 12514 | 1 | 1.732e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.292115093422964 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5891221261572996, dt = 0.002040118127231435 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.42 us (1.5%)
patch tree reduce : 1.35 us (0.5%)
gen split merge : 591.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 711.00 ns (0.2%)
LB compute : 271.48 us (94.9%)
LB move op cnt : 0
LB apply : 2.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (65.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.519977625059934
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7814059488400733e-05,-3.5579627395919105e-06,-4.475992314963042e-09)
sum a = (1.1274627321081819e-05,-3.24725235668164e-05,-4.9833590103780194e-08)
sum e = 0.00984857560479932
sum de = -9.002083411303459e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.99e-03 |
| force | 6.37e-03 |
| divB_cleaning | 2.39e-03 |
+---------------+----------+
Info: cfl dt = 0.0019907603996879297 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 | 7.4860e+04 | 12514 | 1 | 1.672e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.9349088535821 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5911622442845311, dt = 0.0019907603996879297 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.07 us (1.6%)
patch tree reduce : 1.34 us (0.4%)
gen split merge : 672.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 292.09 us (94.5%)
LB move op cnt : 0
LB apply : 3.16 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.517340578552022
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.779217267301497e-05,-3.623049720828011e-06,-4.5718115883151936e-09)
sum a = (1.0698786442490823e-05,-3.29373827645064e-05,-4.8774454601515964e-08)
sum e = 0.009849564067587894
sum de = -9.18729688950313e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.00e-03 |
| force | 6.32e-03 |
| divB_cleaning | 2.39e-03 |
+---------------+----------+
Info: cfl dt = 0.00200481042696059 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 | 8.0412e+04 | 12514 | 1 | 1.556e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.051788311499074 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.593153004684219, dt = 0.00200481042696059 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.49 us (1.5%)
patch tree reduce : 1.18 us (0.4%)
gen split merge : 821.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 821.00 ns (0.3%)
LB compute : 286.46 us (94.9%)
LB move op cnt : 0
LB apply : 2.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (63.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5135048745405135
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.777129681500815e-05,-3.6895456408721983e-06,-4.668540880961634e-09)
sum a = (1.0164123364098345e-05,-3.34091305423351e-05,-4.623609087196326e-08)
sum e = 0.009850653111764342
sum de = -9.312511075444076e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.03e-03 |
| force | 6.32e-03 |
| divB_cleaning | 2.39e-03 |
+---------------+----------+
Info: cfl dt = 0.0020321378474573238 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 | 7.9813e+04 | 12514 | 1 | 1.568e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.03143649378905 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5951578151111796, dt = 0.0020321378474573238 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.64 us (1.5%)
patch tree reduce : 1.12 us (0.4%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 285.07 us (94.7%)
LB move op cnt : 0
LB apply : 3.07 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (67.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.514224069042672
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.775117786429103e-05,-3.7579104819297354e-06,-4.7599545221049325e-09)
sum a = (9.697806581432043e-06,-3.3875845912114224e-05,-4.290308165630319e-08)
sum e = 0.009851834857089126
sum de = -9.380518420315645e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.07e-03 |
| force | 6.34e-03 |
| divB_cleaning | 2.38e-03 |
+---------------+----------+
Info: cfl dt = 0.0020714164515024235 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 | 8.1233e+04 | 12514 | 1 | 1.541e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.48899991567279 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.597189952958637, dt = 0.0020714164515024235 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.32 us (1.1%)
patch tree reduce : 1.04 us (0.3%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 368.60 us (95.8%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (71.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5130254115390755
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.773156347818629e-05,-3.828555681444251e-06,-4.845438104181207e-09)
sum a = (9.332964147857563e-06,-3.4248736046431786e-05,-3.942760826498362e-08)
sum e = 0.009853121602343388
sum de = -9.396948183365871e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.08e-03 |
| force | 6.41e-03 |
| divB_cleaning | 2.37e-03 |
+---------------+----------+
Info: cfl dt = 0.0020775012575399323 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 | 6.8117e+04 | 12514 | 1 | 1.837e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.59088826650023 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5992613694101394, dt = 0.0007386305898607892 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.53 us (1.5%)
patch tree reduce : 1.11 us (0.4%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.3%)
LB compute : 285.99 us (95.0%)
LB move op cnt : 0
LB apply : 3.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (66.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5120664855361996
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7725047735681893e-05,-3.854239050931689e-06,-4.870960965350932e-09)
sum a = (9.244143943342341e-06,-3.434052090016842e-05,-3.794093579775474e-08)
sum e = 0.00985326668621252
sum de = -9.436288279661718e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.08e-03 |
| force | 6.43e-03 |
| divB_cleaning | 2.37e-03 |
+---------------+----------+
Info: cfl dt = 0.002077667536437992 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 | 8.2437e+04 | 12514 | 1 | 1.518e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.516803128333166 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 404 [SPH][rank=0]
Info: time since start : 165.239265079 (s) [SPH][rank=0]
Info: dump to _to_trash/orztang_00024.vtk [VTK Dump][rank=0]
- took 2.36 ms, bandwidth = 297.29 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 955.54 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 955.77 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/rho_slice_0000024.npy
Saving metadata to _to_trash/plots/rho_slice_0000024.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 938.62 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/vy_slice_0000024.npy
Saving metadata to _to_trash/plots/vy_slice_0000024.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.0064717080000000005 s
Info: compute_slice took 947.00 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/By_slice_0000024.npy
Saving metadata to _to_trash/plots/By_slice_0000024.json
Info: evolve_until (target_time = 0.63s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.6000000000000002, dt = 0.002077667536437992 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.21 us (2.2%)
patch tree reduce : 1.56 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 388.07 us (94.5%)
LB move op cnt : 0
LB apply : 3.90 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.515902189547706
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7705874280568925e-05,-3.925621133940726e-06,-4.949240565079322e-09)
sum a = (9.06077428256211e-06,-3.458096917959689e-05,-3.1985695349797547e-08)
sum e = 0.009854981586779915
sum de = -9.286494572144878e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.07e-03 |
| force | 6.50e-03 |
| divB_cleaning | 2.36e-03 |
+---------------+----------+
Info: cfl dt = 0.00206687395842724 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 | 8.2588e+04 | 12514 | 1 | 1.515e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.362704762904194 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6020776675364382, dt = 0.00206687395842724 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.58 us (1.4%)
patch tree reduce : 1.08 us (0.3%)
gen split merge : 621.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 322.82 us (95.2%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (69.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.514463800543392
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.768733729275662e-05,-3.997345424386831e-06,-5.0091644609648314e-09)
sum a = (8.98790165657076e-06,-3.47301613616386e-05,-2.89586372682905e-08)
sum e = 0.009856451259760266
sum de = -9.253844609465858e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.08e-03 |
| force | 6.58e-03 |
| divB_cleaning | 2.35e-03 |
+---------------+----------+
Info: cfl dt = 0.0020796046972926608 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 | 7.0859e+04 | 12514 | 1 | 1.766e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.13246971756728 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6041445414948654, dt = 0.0020796046972926608 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.13 us (1.4%)
patch tree reduce : 1.15 us (0.4%)
gen split merge : 621.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 274.80 us (94.7%)
LB move op cnt : 0
LB apply : 3.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (67.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5111075595333228
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7668721319519384e-05,-4.069724611810474e-06,-5.0662587052954236e-09)
sum a = (9.028424450209816e-06,-3.476458616420807e-05,-2.6788982011048215e-08)
sum e = 0.009858026893439733
sum de = -9.123439151983562e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.07e-03 |
| force | 6.58e-03 |
| divB_cleaning | 2.34e-03 |
+---------------+----------+
Info: cfl dt = 0.0020658906988045146 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 | 5.9798e+04 | 12514 | 1 | 2.093e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.774255210755136 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.606224146192158, dt = 0.0020658906988045146 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.6%)
patch tree reduce : 1.17 us (0.4%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 310.49 us (94.7%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (68.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.504634809013905
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7650027445726642e-05,-4.14158024200557e-06,-5.119345801430291e-09)
sum a = (9.111003741013312e-06,-3.4732929850650984e-05,-2.6280209866225104e-08)
sum e = 0.009859680076625103
sum de = -8.97637738209637e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.14e-03 |
| force | 6.62e-03 |
| divB_cleaning | 2.33e-03 |
+---------------+----------+
Info: cfl dt = 0.0021422759249227195 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 | 6.5245e+04 | 12514 | 1 | 1.918e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.7755521978853 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6082900368909625, dt = 0.0021422759249227195 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.67 us (1.3%)
patch tree reduce : 1.06 us (0.3%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.2%)
LB compute : 335.96 us (95.6%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5072718555218163
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7630423861866252e-05,-4.2159550621847165e-06,-5.175119728507576e-09)
sum a = (9.218012302004527e-06,-3.463829828294281e-05,-2.7394132470421e-08)
sum e = 0.009861532063622237
sum de = -8.795525540384962e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.11e-03 |
| force | 6.59e-03 |
| divB_cleaning | 2.32e-03 |
+---------------+----------+
Info: cfl dt = 0.0021139659590018738 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 | 5.9490e+04 | 12514 | 1 | 2.104e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.6629710176819 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6104323128158852, dt = 0.0021139659590018738 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.65 us (1.4%)
patch tree reduce : 1.16 us (0.4%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 311.98 us (95.0%)
LB move op cnt : 0
LB apply : 3.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (66.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.50918970752757
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7610822676718065e-05,-4.289077882167852e-06,-5.23422315681493e-09)
sum a = (9.334704319168432e-06,-3.4501200727457734e-05,-2.9318982018640625e-08)
sum e = 0.009863436623083529
sum de = -8.605819748849983e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.08e-03 |
| force | 6.54e-03 |
| divB_cleaning | 2.31e-03 |
+---------------+----------+
Info: cfl dt = 0.002078180613932908 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 | 6.1101e+04 | 12514 | 1 | 2.048e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.158036534523454 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6125462787748871, dt = 0.002078180613932908 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.56 us (1.3%)
patch tree reduce : 991.00 ns (0.3%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 344.38 us (95.8%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (67.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5060731980182203
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.759130013368936e-05,-4.3606326988946955e-06,-5.297187830077147e-09)
sum a = (9.403828752162667e-06,-3.4372405241070256e-05,-3.269491301713062e-08)
sum e = 0.0098654196743337
sum de = -8.395073622923278e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.14e-03 |
| force | 6.61e-03 |
| divB_cleaning | 2.31e-03 |
+---------------+----------+
Info: cfl dt = 0.0021417971716791336 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 | 6.0963e+04 | 12514 | 1 | 2.053e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.4463050386699 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.61462445938882, dt = 0.0021417971716791336 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.4%)
patch tree reduce : 1.13 us (0.3%)
gen split merge : 672.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 352.79 us (95.1%)
LB move op cnt : 0
LB apply : 3.90 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (70.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5039156145117465
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7571087213336506e-05,-4.434117589082378e-06,-5.370721599482883e-09)
sum a = (9.40677639552024e-06,-3.4316871230908145e-05,-3.609651913349643e-08)
sum e = 0.00986762062187711
sum de = -8.15398195065917e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.15e-03 |
| force | 6.61e-03 |
| divB_cleaning | 2.30e-03 |
+---------------+----------+
Info: cfl dt = 0.00215480417723578 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 | 6.7447e+04 | 12514 | 1 | 1.855e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.55706829182351 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6167662565604992, dt = 0.00215480417723578 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.81 us (1.4%)
patch tree reduce : 1.01 us (0.3%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 308.87 us (89.2%)
LB move op cnt : 0
LB apply : 24.74 us (7.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (64.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.501758031005274
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7550814295638147e-05,-4.508004255267602e-06,-5.452145304875051e-09)
sum a = (9.421175089515377e-06,-3.4301899178841874e-05,-3.657438358807023e-08)
sum e = 0.009869950891879559
sum de = -7.897462547681869e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.17e-03 |
| force | 6.65e-03 |
| divB_cleaning | 2.29e-03 |
+---------------+----------+
Info: cfl dt = 0.002169692113761228 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 | 8.3133e+04 | 12514 | 1 | 1.505e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.5334613433012 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.618921060737735, dt = 0.002169692113761228 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.53 us (1.5%)
patch tree reduce : 1.00 us (0.3%)
gen split merge : 741.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 278.00 us (94.4%)
LB move op cnt : 0
LB apply : 3.16 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5036758830110264
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7530357733160928e-05,-4.582412684482738e-06,-5.532015308673155e-09)
sum a = (9.526817030806693e-06,-3.429984701033967e-05,-3.4390181048048685e-08)
sum e = 0.009872436477051766
sum de = -7.612104317063976e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.21e-03 |
| force | 6.64e-03 |
| divB_cleaning | 2.29e-03 |
+---------------+----------+
Info: cfl dt = 0.0022080167847858215 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 | 8.3402e+04 | 12514 | 1 | 1.500e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.057231288905676 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6210907528514963, dt = 0.0022080167847858215 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.47 us (1.4%)
patch tree reduce : 892.00 ns (0.3%)
gen split merge : 612.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 811.00 ns (0.2%)
LB compute : 311.86 us (95.5%)
LB move op cnt : 0
LB apply : 2.99 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5036758830110264
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7509207756007897e-05,-4.658145096110044e-06,-5.6055798821459814e-09)
sum a = (9.717293495107768e-06,-3.428196004783012e-05,-3.144370955993318e-08)
sum e = 0.009875121545559268
sum de = -7.30820137842768e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.16e-03 |
| force | 6.70e-03 |
| divB_cleaning | 2.28e-03 |
+---------------+----------+
Info: cfl dt = 0.002161554257953797 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 | 7.0053e+04 | 12514 | 1 | 1.786e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.49755423023439 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6232987696362821, dt = 0.0017012303637181647 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.5%)
patch tree reduce : 1.18 us (0.3%)
gen split merge : 621.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 342.88 us (95.5%)
LB move op cnt : 0
LB apply : 3.17 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (67.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5055937350167814
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7492466113645725e-05,-4.716446860114281e-06,-5.655819946346537e-09)
sum a = (9.871734612414569e-06,-3.424097299565494e-05,-2.8439150321426715e-08)
sum e = 0.00987714498410454
sum de = -7.099822806916392e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.07e-03 |
| force | 6.62e-03 |
| divB_cleaning | 2.28e-03 |
+---------------+----------+
Info: cfl dt = 0.0020742300229639075 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 | 8.1757e+04 | 12514 | 1 | 1.531e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.0123519310156 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 416 [SPH][rank=0]
Info: time since start : 171.347675565 (s) [SPH][rank=0]
Info: dump to _to_trash/orztang_00025.vtk [VTK Dump][rank=0]
- took 2.32 ms, bandwidth = 302.12 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 974.35 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 948.89 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/rho_slice_0000025.npy
Saving metadata to _to_trash/plots/rho_slice_0000025.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 938.11 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/vy_slice_0000025.npy
Saving metadata to _to_trash/plots/vy_slice_0000025.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.005892487 s
Info: compute_slice took 954.29 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/By_slice_0000025.npy
Saving metadata to _to_trash/plots/By_slice_0000025.json
Info: evolve_until (target_time = 0.65s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.6250000000000002, dt = 0.0020742300229639075 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.42 us (2.2%)
patch tree reduce : 1.75 us (0.4%)
gen split merge : 891.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 396.27 us (94.5%)
LB move op cnt : 0
LB apply : 4.11 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (67.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5070321240210967
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7471858495374964e-05,-4.787435650108956e-06,-5.7122535620676295e-09)
sum a = (1.0049050120802899e-05,-3.4224628842897374e-05,-2.3202606650327706e-08)
sum e = 0.009880007591630501
sum de = -6.771621849395898e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.11e-03 |
| force | 6.60e-03 |
| divB_cleaning | 2.28e-03 |
+---------------+----------+
Info: cfl dt = 0.0021133120968476336 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 | 7.8851e+04 | 12514 | 1 | 1.587e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.05128445119095 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6270742300229641, dt = 0.0021133120968476336 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.79 us (1.5%)
patch tree reduce : 1.17 us (0.4%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 312.95 us (94.9%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (64.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5087102445261307
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7450437819617214e-05,-4.85974602148608e-06,-5.7558570133307e-09)
sum a = (1.0151603351361243e-05,-3.4255487549487914e-05,-1.985838701662118e-08)
sum e = 0.00988298489803603
sum de = -6.511115093196663e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.17e-03 |
| force | 6.61e-03 |
| divB_cleaning | 2.28e-03 |
+---------------+----------+
Info: cfl dt = 0.0021665574315552234 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 | 7.5975e+04 | 12514 | 1 | 1.647e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.18920814036804 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6291875421198118, dt = 0.0021665574315552234 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.77 us (1.4%)
patch tree reduce : 1.38 us (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 326.32 us (95.0%)
LB move op cnt : 0
LB apply : 3.11 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (68.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.510867828032603
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.742833542444286e-05,-4.933995109647231e-06,-5.795347659396932e-09)
sum a = (1.0183143530514158e-05,-3.433384568381231e-05,-2.0247904330447034e-08)
sum e = 0.009886198823299419
sum de = -6.237513142568748e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.23e-03 |
| force | 6.68e-03 |
| divB_cleaning | 2.28e-03 |
+---------------+----------+
Info: cfl dt = 0.0022264327558186277 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 | 6.2594e+04 | 12514 | 1 | 1.999e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.012765183191014 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.631354099551367, dt = 0.0022264327558186277 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.48 us (3.5%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 363.17 us (93.2%)
LB move op cnt : 0
LB apply : 4.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (63.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.510628096531885
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.740562917332471e-05,-5.010521992009634e-06,-5.840850212650597e-09)
sum a = (1.0123030509922138e-05,-3.4460735334423735e-05,-2.0193298575620612e-08)
sum e = 0.009889677269502371
sum de = -5.956979664717962e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.23e-03 |
| force | 6.75e-03 |
| divB_cleaning | 2.28e-03 |
+---------------+----------+
Info: cfl dt = 0.0022252463287767573 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 | 7.1665e+04 | 12514 | 1 | 1.746e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.90127301420751 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6335805323071856, dt = 0.0022252463287767573 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.38 us (1.3%)
patch tree reduce : 1.32 us (0.4%)
gen split merge : 621.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 731.00 ns (0.2%)
LB compute : 311.57 us (95.2%)
LB move op cnt : 0
LB apply : 3.09 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (68.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5103883650311656
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7383169855645214e-05,-5.087346872437295e-06,-5.885724488151376e-09)
sum a = (9.951936296309308e-06,-3.462998444933659e-05,-1.765878758085609e-08)
sum e = 0.009893319418846224
sum de = -5.675457389910335e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.22e-03 |
| force | 6.68e-03 |
| divB_cleaning | 2.28e-03 |
+---------------+----------+
Info: cfl dt = 0.0022197934814128266 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 | 6.8712e+04 | 12514 | 1 | 1.821e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.9865272683278 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6358057786359623, dt = 0.0022197934814128266 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.24 us (1.3%)
patch tree reduce : 962.00 ns (0.3%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.3%)
LB compute : 312.55 us (95.2%)
LB move op cnt : 0
LB apply : 3.03 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (68.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5154227265462685
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7361268975712592e-05,-5.164406596665145e-06,-5.922103394070024e-09)
sum a = (9.686674254615203e-06,-3.4813551361805774e-05,-1.5552289159226834e-08)
sum e = 0.009897141435880255
sum de = -5.37970189976639e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.29e-03 |
| force | 6.73e-03 |
| divB_cleaning | 2.28e-03 |
+---------------+----------+
Info: cfl dt = 0.0022846469047187764 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 | 6.9345e+04 | 12514 | 1 | 1.805e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.28259008853665 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6380255721173752, dt = 0.0022846469047187764 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.42 us (1.5%)
patch tree reduce : 1.13 us (0.4%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 270.89 us (94.4%)
LB move op cnt : 0
LB apply : 3.08 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (66.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5173405785520213
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7339432758835238e-05,-5.244147009344106e-06,-5.955296887626235e-09)
sum a = (9.29274820948264e-06,-3.500371158312321e-05,-1.2442740884786259e-08)
sum e = 0.009901302181896911
sum de = -5.046257857753302e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.26e-03 |
| force | 6.83e-03 |
| divB_cleaning | 2.29e-03 |
+---------------+----------+
Info: cfl dt = 0.0022563076621919115 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 | 6.6619e+04 | 12514 | 1 | 1.878e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.784784302295016 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.640310219022094, dt = 0.0022563076621919115 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.6%)
patch tree reduce : 1.17 us (0.4%)
gen split merge : 632.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 310.42 us (94.5%)
LB move op cnt : 0
LB apply : 3.95 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (66.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5168611155505842
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.731891545080724e-05,-5.323343376474298e-06,-5.979819429303237e-09)
sum a = (8.812918597269468e-06,-3.523957914432297e-05,-1.4493535546608039e-08)
sum e = 0.00990560101985443
sum de = -4.6993381723124046e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.29e-03 |
| force | 6.93e-03 |
| divB_cleaning | 2.29e-03 |
+---------------+----------+
Info: cfl dt = 0.002288676403602074 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 | 7.7282e+04 | 12514 | 1 | 1.619e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.163070022045005 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6425665266842858, dt = 0.002288676403602074 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.57 us (1.6%)
patch tree reduce : 1.48 us (0.5%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 271.11 us (94.3%)
LB move op cnt : 0
LB apply : 3.04 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (65.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5216557455649675
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7299286853582244e-05,-5.404261464627868e-06,-6.015304053968118e-09)
sum a = (8.265525070503925e-06,-3.5553233125240225e-05,-1.6515331725214782e-08)
sum e = 0.009910204487514554
sum de = -4.310285356098999e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.32e-03 |
| force | 6.93e-03 |
| divB_cleaning | 2.30e-03 |
+---------------+----------+
Info: cfl dt = 0.0023005564223226374 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 | 5.8835e+04 | 12514 | 1 | 2.127e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.73686250843506 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6448552030878879, dt = 0.0023005564223226374 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.40 us (1.4%)
patch tree reduce : 1.27 us (0.4%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 308.00 us (94.9%)
LB move op cnt : 0
LB apply : 3.77 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5240530605721587
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7280897950121344e-05,-5.486412609661063e-06,-6.055612125038988e-09)
sum a = (7.692353938766755e-06,-3.59387388686112e-05,-1.7160031977367094e-08)
sum e = 0.00991506362914217
sum de = -3.8980224637896564e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.32e-03 |
| force | 6.99e-03 |
| divB_cleaning | 2.31e-03 |
+---------------+----------+
Info: cfl dt = 0.002307233770836124 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 | 7.2743e+04 | 12514 | 1 | 1.720e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.14250688414624 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6471557595102105, dt = 0.002307233770836124 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.28 us (1.2%)
patch tree reduce : 921.00 ns (0.3%)
gen split merge : 621.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 762.00 ns (0.2%)
LB compute : 337.92 us (95.7%)
LB move op cnt : 0
LB apply : 3.16 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (67.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.522614671567844
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7263809197600766e-05,-5.569775120516638e-06,-6.095945914978577e-09)
sum a = (7.138074486072963e-06,-3.641385192225921e-05,-1.45987873269297e-08)
sum e = 0.009920178924713056
sum de = -3.466548320625227e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.29e-03 |
| force | 7.09e-03 |
| divB_cleaning | 2.31e-03 |
+---------------+----------+
Info: cfl dt = 0.002292855684880675 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 | 6.2980e+04 | 12514 | 1 | 1.987e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.80241727387845 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6494629932810466, dt = 0.0005370067189536254 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.49 us (1.4%)
patch tree reduce : 871.00 ns (0.3%)
gen split merge : 630.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 711.00 ns (0.2%)
LB compute : 303.51 us (95.2%)
LB move op cnt : 0
LB apply : 3.30 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (61.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.522135208566406
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7260615429777253e-05,-5.589877702103008e-06,-6.10083086678514e-09)
sum a = (7.022931729522682e-06,-3.652276318826979e-05,-1.4456787192138446e-08)
sum e = 0.009921115678607855
sum de = -3.418748312017801e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.28e-03 |
| force | 7.13e-03 |
| divB_cleaning | 2.32e-03 |
+---------------+----------+
Info: cfl dt = 0.0022833071385533316 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 | 5.8243e+04 | 12514 | 1 | 2.149e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.997645083585253 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 428 [SPH][rank=0]
Info: time since start : 177.51018679700002 (s) [SPH][rank=0]
Info: dump to _to_trash/orztang_00026.vtk [VTK Dump][rank=0]
- took 2.24 ms, bandwidth = 313.37 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 976.14 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 946.78 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/rho_slice_0000026.npy
Saving metadata to _to_trash/plots/rho_slice_0000026.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 946.73 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/vy_slice_0000026.npy
Saving metadata to _to_trash/plots/vy_slice_0000026.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.005820233 s
Info: compute_slice took 956.16 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/By_slice_0000026.npy
Saving metadata to _to_trash/plots/By_slice_0000026.json
Info: evolve_until (target_time = 0.68s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.6500000000000002, dt = 0.0022833071385533316 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.71 us (2.6%)
patch tree reduce : 1.97 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 342.58 us (93.5%)
LB move op cnt : 0
LB apply : 3.97 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (68.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.521655745564968
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7244610835842576e-05,-5.673299631050733e-06,-6.133802024668225e-09)
sum a = (6.503862750081433e-06,-3.707456128346577e-05,-1.2589409622065792e-08)
sum e = 0.009926748930842893
sum de = -2.849739631374283e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.29e-03 |
| force | 7.32e-03 |
| divB_cleaning | 2.32e-03 |
+---------------+----------+
Info: cfl dt = 0.0022949699427208653 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 | 8.2487e+04 | 12514 | 1 | 1.517e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.182459950344516 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6522833071385535, dt = 0.0022949699427208653 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.79 us (1.6%)
patch tree reduce : 1.07 us (0.4%)
gen split merge : 672.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 276.71 us (94.5%)
LB move op cnt : 0
LB apply : 3.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (67.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5259709125779137
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.723027726327262e-05,-5.759014597101418e-06,-6.160562443079336e-09)
sum a = (6.120445221220197e-06,-3.7642306584637e-05,-1.3918218647875599e-08)
sum e = 0.009932387168445356
sum de = -2.4479101913788763e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.32e-03 |
| force | 7.23e-03 |
| divB_cleaning | 2.33e-03 |
+---------------+----------+
Info: cfl dt = 0.00232265146211465 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 | 6.5753e+04 | 12514 | 1 | 1.903e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.41076029386072 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6545782770812744, dt = 0.00232265146211465 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.58 us (1.4%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 301.43 us (94.6%)
LB move op cnt : 0
LB apply : 3.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (66.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5290874220872626
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.721650156808283e-05,-5.8470960347281825e-06,-6.19441440235891e-09)
sum a = (5.829539919096551e-06,-3.821284797774419e-05,-1.7226969295759175e-08)
sum e = 0.009938333307640934
sum de = -1.9683472341219653e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.29e-03 |
| force | 7.11e-03 |
| divB_cleaning | 2.34e-03 |
+---------------+----------+
Info: cfl dt = 0.002285843842907695 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 | 7.2183e+04 | 12514 | 1 | 1.734e-01 | 0.0% | 1.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.23116102497945 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.656900928543389, dt = 0.002285843842907695 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.07 us (1.4%)
patch tree reduce : 902.00 ns (0.3%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.3%)
LB compute : 285.39 us (94.9%)
LB move op cnt : 0
LB apply : 3.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (68.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5302860795908586
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.720351398596452e-05,-5.935107222398844e-06,-6.237635101320589e-09)
sum a = (5.610898058052165e-06,-3.876318249363869e-05,-2.12560845886743e-08)
sum e = 0.009944398418662473
sum de = -1.5087142710842736e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.25e-03 |
| force | 7.11e-03 |
| divB_cleaning | 2.35e-03 |
+---------------+----------+
Info: cfl dt = 0.002245699045418485 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 | 6.4296e+04 | 12514 | 1 | 1.946e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.28001261575367 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6591867723862966, dt = 0.002245699045418485 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.38 us (1.5%)
patch tree reduce : 1.15 us (0.4%)
gen split merge : 652.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 275.43 us (94.6%)
LB move op cnt : 0
LB apply : 3.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (63.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5319642000958935
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.719116348812748e-05,-6.022786653704018e-06,-6.2899748343829e-09)
sum a = (5.402030480602536e-06,-3.925031134464355e-05,-2.4565794270912523e-08)
sum e = 0.00995056637220756
sum de = -1.0498840484004016e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.19e-03 |
| force | 7.13e-03 |
| divB_cleaning | 2.36e-03 |
+---------------+----------+
Info: cfl dt = 0.0021917335156180586 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 | 7.3717e+04 | 12514 | 1 | 1.698e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.62412486546069 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6614324714317151, dt = 0.0021917335156180586 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.57 us (1.5%)
patch tree reduce : 912.00 ns (0.3%)
gen split merge : 581.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 287.58 us (95.2%)
LB move op cnt : 0
LB apply : 2.85 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (65.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5329231260987695
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7179558203730623e-05,-6.109359848974734e-06,-6.347532814961157e-09)
sum a = (5.184335446941567e-06,-3.9618982905341535e-05,-2.9409216174871925e-08)
sum e = 0.009956772995416835
sum de = -5.979473600129388e-06
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.16e-03 |
| force | 7.05e-03 |
| divB_cleaning | 2.36e-03 |
+---------------+----------+
Info: cfl dt = 0.002163765484373295 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 | 7.8059e+04 | 12514 | 1 | 1.603e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.21714353250575 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6636242049473332, dt = 0.002163765484373295 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.82 us (1.5%)
patch tree reduce : 1.16 us (0.4%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 297.29 us (94.9%)
LB move op cnt : 0
LB apply : 3.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (68.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5377177561131523
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.716857908238176e-05,-6.195490051618925e-06,-6.4164752069014676e-09)
sum a = (4.925045405371504e-06,-3.988852717082481e-05,-3.456103890996077e-08)
sum e = 0.0099630799339832
sum de = -1.4778323426406655e-06
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.14e-03 |
| force | 7.05e-03 |
| divB_cleaning | 2.37e-03 |
+---------------+----------+
Info: cfl dt = 0.002143099537357333 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 | 7.9658e+04 | 12514 | 1 | 1.571e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.58441494309375 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6657879704317065, dt = 0.002143099537357333 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 25.38 us (7.1%)
patch tree reduce : 1.27 us (0.4%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 319.36 us (89.7%)
LB move op cnt : 0
LB apply : 2.99 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (68.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5413137286239396
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7158304741273066e-05,-6.2812667510338395e-06,-6.496116621507816e-09)
sum a = (4.6410279393444e-06,-4.004005493250109e-05,-4.12080891955166e-08)
sum e = 0.009969486672593775
sum de = 2.9937365122457396e-06
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.18e-03 |
| force | 7.14e-03 |
| divB_cleaning | 2.38e-03 |
+---------------+----------+
Info: cfl dt = 0.002184456460928472 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 | 6.7380e+04 | 12514 | 1 | 1.857e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.54113027540137 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6679310699690638, dt = 0.002184456460928472 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.6%)
patch tree reduce : 1.03 us (0.3%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 821.00 ns (0.2%)
LB compute : 312.16 us (94.9%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (67.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5429918491289754
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.714847095665576e-05,-6.36889487726499e-06,-6.593256543389207e-09)
sum a = (4.380326367277172e-06,-4.002184555395109e-05,-4.7741716828566624e-08)
sum e = 0.009976183473774115
sum de = 7.55013609940328e-06
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.22e-03 |
| force | 7.12e-03 |
| divB_cleaning | 2.39e-03 |
+---------------+----------+
Info: cfl dt = 0.0022240657357552977 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 | 5.0266e+04 | 12514 | 1 | 2.490e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.5884076714424 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6701155264299923, dt = 0.0022240657357552977 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.80 us (1.2%)
patch tree reduce : 1.17 us (0.3%)
gen split merge : 632.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 821.00 ns (0.2%)
LB compute : 380.56 us (95.8%)
LB move op cnt : 0
LB apply : 3.54 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (69.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5470672846412015
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.713901356848771e-05,-6.457886203846076e-06,-6.706573472502007e-09)
sum a = (4.210365946380193e-06,-3.98163620921332e-05,-5.647543411353497e-08)
sum e = 0.009983146309655555
sum de = 1.2097393418185375e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.23e-03 |
| force | 7.08e-03 |
| divB_cleaning | 2.40e-03 |
+---------------+----------+
Info: cfl dt = 0.0022306863848316396 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 | 8.1361e+04 | 12514 | 1 | 1.538e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.056170635160996 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6723395921657476, dt = 0.0022306863848316396 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.88 us (1.4%)
patch tree reduce : 632.00 ns (0.2%)
gen split merge : 551.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 731.00 ns (0.2%)
LB compute : 340.85 us (95.8%)
LB move op cnt : 0
LB apply : 3.00 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (69.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.547307016141922
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.712981056407012e-05,-6.5464755162951305e-06,-6.8422646351361394e-09)
sum a = (4.1833714761832055e-06,-3.937750643623673e-05,-6.432869551597111e-08)
sum e = 0.009990254073947179
sum de = 1.657301916536475e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.26e-03 |
| force | 6.95e-03 |
| divB_cleaning | 2.40e-03 |
+---------------+----------+
Info: cfl dt = 0.0022577508162792133 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 | 8.1003e+04 | 12514 | 1 | 1.545e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.98119585594934 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6745702785505792, dt = 0.00042972144942110546 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.07 us (1.3%)
patch tree reduce : 1.17 us (0.3%)
gen split merge : 571.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 369.01 us (95.4%)
LB move op cnt : 0
LB apply : 3.82 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (66.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5470672846412024
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7128042987714374e-05,-6.5629074007673695e-06,-6.87866713705617e-09)
sum a = (4.2309236333129635e-06,-3.921698783913003e-05,-6.52034261966909e-08)
sum e = 0.00999134032051169
sum de = 1.6978214456411545e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.26e-03 |
| force | 6.95e-03 |
| divB_cleaning | 2.41e-03 |
+---------------+----------+
Info: cfl dt = 0.002262948441847092 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 | 6.9057e+04 | 12514 | 1 | 1.812e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.53690693010895 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 440 [SPH][rank=0]
Info: time since start : 183.59541804300002 (s) [SPH][rank=0]
Info: dump to _to_trash/orztang_00027.vtk [VTK Dump][rank=0]
- took 2.35 ms, bandwidth = 298.67 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 979.89 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 958.89 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/rho_slice_0000027.npy
Saving metadata to _to_trash/plots/rho_slice_0000027.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 942.79 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/vy_slice_0000027.npy
Saving metadata to _to_trash/plots/vy_slice_0000027.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.005800979 s
Info: compute_slice took 953.33 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/By_slice_0000027.npy
Saving metadata to _to_trash/plots/By_slice_0000027.json
Info: evolve_until (target_time = 0.70s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.6750000000000003, dt = 0.002262948441847092 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.56 us (2.4%)
patch tree reduce : 1.59 us (0.4%)
gen split merge : 911.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 380.90 us (94.2%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (68.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.551861914655586
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.711845840857995e-05,-6.651618933148967e-06,-7.026407074039121e-09)
sum a = (4.369782053239968e-06,-3.853987349937821e-05,-6.771780611653798e-08)
sum e = 0.009998986507325435
sum de = 2.255946481777147e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.25e-03 |
| force | 6.82e-03 |
| divB_cleaning | 2.41e-03 |
+---------------+----------+
Info: cfl dt = 0.002254853451409783 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 | 8.0638e+04 | 12514 | 1 | 1.552e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.495051513728036 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6772629484418473, dt = 0.002254853451409783 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.41 us (1.3%)
patch tree reduce : 1.21 us (0.4%)
gen split merge : 621.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 317.14 us (95.1%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (64.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5528208406584634
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7108448075712763e-05,-6.737754562506597e-06,-7.181945758943597e-09)
sum a = (4.723226146892373e-06,-3.76046588576814e-05,-6.822988167446919e-08)
sum e = 0.010006428039780298
sum de = 2.628606984230555e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.24e-03 |
| force | 6.83e-03 |
| divB_cleaning | 2.42e-03 |
+---------------+----------+
Info: cfl dt = 0.00224020605994326 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 | 7.7464e+04 | 12514 | 1 | 1.615e-01 | 0.0% | 2.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.248934874183036 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6795178018932571, dt = 0.00224020605994326 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.83 us (1.6%)
patch tree reduce : 1.33 us (0.4%)
gen split merge : 761.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 285.24 us (94.2%)
LB move op cnt : 0
LB apply : 3.89 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (65.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5561770816685305
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.709746859355877e-05,-6.820942361180333e-06,-7.335372081009279e-09)
sum a = (5.2096568347365834e-06,-3.6528981469232065e-05,-6.425668978735295e-08)
sum e = 0.010013904608835715
sum de = 3.048208658911523e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.14e-03 |
| force | 6.94e-03 |
| divB_cleaning | 2.43e-03 |
+---------------+----------+
Info: cfl dt = 0.002137625310285744 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 | 7.7563e+04 | 12514 | 1 | 1.613e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.98613988903735 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6817580079532003, dt = 0.002137625310285744 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.12 us (1.6%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 701.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 293.98 us (94.3%)
LB move op cnt : 0
LB apply : 3.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (67.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.554259229662778
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.708578744676364e-05,-6.897822767025528e-06,-7.468278423182501e-09)
sum a = (5.8243877550092405e-06,-3.530709225451096e-05,-5.9499710938111545e-08)
sum e = 0.010021090301760013
sum de = 3.4142867634958806e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.15e-03 |
| force | 7.15e-03 |
| divB_cleaning | 2.44e-03 |
+---------------+----------+
Info: cfl dt = 0.0021474593786306607 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 | 6.6815e+04 | 12514 | 1 | 1.873e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.087862061907344 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.683895633263486, dt = 0.0021474593786306607 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.60 us (1.4%)
patch tree reduce : 1.07 us (0.3%)
gen split merge : 662.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 310.80 us (95.1%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (66.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5583346651750034
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.707262277846722e-05,-6.972337342764338e-06,-7.590967316267858e-09)
sum a = (6.551051789445999e-06,-3.393415372754377e-05,-5.524611221972768e-08)
sum e = 0.010028405115160849
sum de = 3.7608616917034286e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.12e-03 |
| force | 7.13e-03 |
| divB_cleaning | 2.44e-03 |
+---------------+----------+
Info: cfl dt = 0.0021207135523284384 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 | 8.1174e+04 | 12514 | 1 | 1.542e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.147500158342076 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6860430926421167, dt = 0.0021207135523284384 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.62 us (1.5%)
patch tree reduce : 1.38 us (0.5%)
gen split merge : 662.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.3%)
LB compute : 288.06 us (94.7%)
LB move op cnt : 0
LB apply : 3.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (63.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5609717116829156
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7057949633407462e-05,-7.04282779760269e-06,-7.703561279935414e-09)
sum a = (7.358317736296158e-06,-3.246613472985992e-05,-5.111542694868224e-08)
sum e = 0.01003567555661585
sum de = 4.0546946766559304e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.11e-03 |
| force | 7.19e-03 |
| divB_cleaning | 2.45e-03 |
+---------------+----------+
Info: cfl dt = 0.0021101601658969787 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 | 8.1925e+04 | 12514 | 1 | 1.527e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.98084770015723 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6881638061944452, dt = 0.0021101601658969787 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.66 us (1.4%)
patch tree reduce : 1.09 us (0.3%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 309.61 us (95.0%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (67.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5638484896915443
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.704156641451535e-05,-7.109779917958512e-06,-7.807043017628007e-09)
sum a = (8.256134751358153e-06,-3.091703013563456e-05,-4.629751584357436e-08)
sum e = 0.010042962235610223
sum de = 4.301239930205755e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.11e-03 |
| force | 7.23e-03 |
| divB_cleaning | 2.46e-03 |
+---------------+----------+
Info: cfl dt = 0.0021144584120863508 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 | 8.2201e+04 | 12514 | 1 | 1.522e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.89996032301218 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6902739663603421, dt = 0.0021144584120863508 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.49 us (1.3%)
patch tree reduce : 911.00 ns (0.3%)
gen split merge : 501.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 752.00 ns (0.2%)
LB compute : 324.34 us (95.6%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (67.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.568882851206647
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.702316189208835e-05,-7.173518263001924e-06,-7.899853907413657e-09)
sum a = (9.205383527915328e-06,-2.9370658993939995e-05,-3.7149421606658406e-08)
sum e = 0.010050310196608861
sum de = 4.487206086572956e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.10e-03 |
| force | 7.34e-03 |
| divB_cleaning | 2.46e-03 |
+---------------+----------+
Info: cfl dt = 0.0020968495622984995 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 | 5.7931e+04 | 12514 | 1 | 2.160e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.23862429315297 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6923884247724285, dt = 0.0020968495622984995 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.65 us (1.1%)
patch tree reduce : 1.17 us (0.3%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 393.08 us (96.0%)
LB move op cnt : 0
LB apply : 3.60 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (69.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5722390922167166
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.700285601413671e-05,-7.233469247723566e-06,-7.968079023442478e-09)
sum a = (1.0181068069773135e-05,-2.7856227479807352e-05,-2.3172387063191697e-08)
sum e = 0.01005762660695424
sum de = 4.606629126482789e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.11e-03 |
| force | 7.47e-03 |
| divB_cleaning | 2.47e-03 |
+---------------+----------+
Info: cfl dt = 0.0021102461129883245 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 | 6.6304e+04 | 12514 | 1 | 1.887e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.99590021763278 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.694485274334727, dt = 0.0021102461129883245 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.61 us (1.4%)
patch tree reduce : 1.02 us (0.3%)
gen split merge : 621.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 821.00 ns (0.2%)
LB compute : 313.30 us (95.3%)
LB move op cnt : 0
LB apply : 3.11 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (64.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.575835064727505
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.698034852296416e-05,-7.290664975956237e-06,-8.002324593789019e-09)
sum a = (1.1176207196500345e-05,-2.6427100341716025e-05,-7.171847281512693e-09)
sum e = 0.01006502936663854
sum de = 4.666540896277234e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.11e-03 |
| force | 7.52e-03 |
| divB_cleaning | 2.48e-03 |
+---------------+----------+
Info: cfl dt = 0.0021096942167185906 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 | 8.1229e+04 | 12514 | 1 | 1.541e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.31175995148881 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6965955204477153, dt = 0.0021096942167185906 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.40 us (1.2%)
patch tree reduce : 1.22 us (0.3%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 661.00 ns (0.2%)
LB compute : 348.30 us (95.7%)
LB move op cnt : 0
LB apply : 3.37 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.578232379734697
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.695572014903985e-05,-7.3449101717177405e-06,-8.000572460081843e-09)
sum a = (1.2068868630248874e-05,-2.507302022825933e-05,1.0742492887988748e-08)
sum e = 0.010072453417882406
sum de = 4.671311398795503e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.09e-03 |
| force | 7.51e-03 |
| divB_cleaning | 2.48e-03 |
+---------------+----------+
Info: cfl dt = 0.0020934346408889833 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 | 8.1222e+04 | 12514 | 1 | 1.541e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.29456739906835 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6987052146644339, dt = 0.001294785335566373 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.91 us (1.6%)
patch tree reduce : 1.17 us (0.4%)
gen split merge : 621.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 294.53 us (94.8%)
LB move op cnt : 0
LB apply : 3.09 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (63.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5779926482339786
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.693915193358826e-05,-7.37594600313568e-06,-7.967766347897077e-09)
sum a = (1.2536405431133734e-05,-2.4298351197438664e-05,2.10941945506532e-08)
sum e = 0.010076832692834471
sum de = 4.640435057400297e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.08e-03 |
| force | 7.51e-03 |
| divB_cleaning | 2.49e-03 |
+---------------+----------+
Info: cfl dt = 0.002075169832324072 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 | 8.2694e+04 | 12514 | 1 | 1.513e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.801829059971972 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 452 [SPH][rank=0]
Info: time since start : 189.557914793 (s) [SPH][rank=0]
Info: dump to _to_trash/orztang_00028.vtk [VTK Dump][rank=0]
- took 2.31 ms, bandwidth = 303.34 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 968.88 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 976.53 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/rho_slice_0000028.npy
Saving metadata to _to_trash/plots/rho_slice_0000028.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 952.70 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/vy_slice_0000028.npy
Saving metadata to _to_trash/plots/vy_slice_0000028.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.005771975 s
Info: compute_slice took 970.77 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/By_slice_0000028.npy
Saving metadata to _to_trash/plots/By_slice_0000028.json
Info: evolve_until (target_time = 0.73s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.7000000000000003, dt = 0.002075169832324072 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.65 us (2.3%)
patch tree reduce : 1.69 us (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.2%)
LB compute : 390.33 us (94.1%)
LB move op cnt : 0
LB apply : 4.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (68.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5815886207447662
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6912834083335053e-05,-7.425867693465126e-06,-7.917290695973037e-09)
sum a = (1.3259148001229844e-05,-2.3108393160069784e-05,4.150656427918157e-08)
sum e = 0.010084343965464065
sum de = 4.643138592028689e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.05e-03 |
| force | 7.47e-03 |
| divB_cleaning | 2.49e-03 |
+---------------+----------+
Info: cfl dt = 0.002050242001643775 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 | 8.1637e+04 | 12514 | 1 | 1.533e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.73586413620058 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7020751698323243, dt = 0.002050242001643775 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.97 us (1.6%)
patch tree reduce : 822.00 ns (0.3%)
gen split merge : 551.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 301.11 us (95.1%)
LB move op cnt : 0
LB apply : 3.13 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (67.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5847051302541173
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.688489971440798e-05,-7.472010809202219e-06,-7.811012627610546e-09)
sum a = (1.3840089774205329e-05,-2.2048932978278787e-05,6.3568913801504e-08)
sum e = 0.010091606663312741
sum de = 4.549823630649621e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.99e-03 |
| force | 7.44e-03 |
| divB_cleaning | 2.50e-03 |
+---------------+----------+
Info: cfl dt = 0.001986141866016515 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 | 7.7995e+04 | 12514 | 1 | 1.604e-01 | 0.0% | 1.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.00204241113039 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.704125411833968, dt = 0.001986141866016515 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.53 us (1.2%)
patch tree reduce : 1.15 us (0.3%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 346.81 us (95.5%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (70.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5892600287677805
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6856815797066316e-05,-7.514717043209467e-06,-7.662139168709561e-09)
sum a = (1.4277033218712366e-05,-2.1133932371658134e-05,8.360880091591494e-08)
sum e = 0.010098642281606356
sum de = 4.4832324251492756e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.00e-03 |
| force | 7.42e-03 |
| divB_cleaning | 2.50e-03 |
+---------------+----------+
Info: cfl dt = 0.00199557720971831 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 | 8.2094e+04 | 12514 | 1 | 1.524e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.90567999413166 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7061115536999846, dt = 0.00199557720971831 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.23 us (1.3%)
patch tree reduce : 1.24 us (0.4%)
gen split merge : 702.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 315.38 us (95.5%)
LB move op cnt : 0
LB apply : 3.13 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (67.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.591897075275692
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6827890959118416e-05,-7.5559827764963346e-06,-7.475390321675715e-09)
sum a = (1.4543642849947885e-05,-2.03087084482683e-05,1.036009670842998e-07)
sum e = 0.010105743756254493
sum de = 4.419509970371904e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.02e-03 |
| force | 7.44e-03 |
| divB_cleaning | 2.51e-03 |
+---------------+----------+
Info: cfl dt = 0.0020162413234198514 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 | 8.1768e+04 | 12514 | 1 | 1.530e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.941460249776284 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7081071309097029, dt = 0.0020162413234198514 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.52 us (1.5%)
patch tree reduce : 1.02 us (0.3%)
gen split merge : 551.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 288.18 us (95.1%)
LB move op cnt : 0
LB apply : 3.16 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (65.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5971711682915126
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.679830144535922e-05,-7.5961066346678e-06,-7.24655781510501e-09)
sum a = (1.4679813710087505e-05,-1.9541610741635364e-05,1.2030493963310687e-07)
sum e = 0.0101129332505479
sum de = 4.36410420909022e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.05e-03 |
| force | 7.42e-03 |
| divB_cleaning | 2.51e-03 |
+---------------+----------+
Info: cfl dt = 0.002048444315418811 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 | 8.1297e+04 | 12514 | 1 | 1.539e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.154608235746544 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7101233722331227, dt = 0.002048444315418811 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.46 us (1.2%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 572.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 305.43 us (85.2%)
LB move op cnt : 0
LB apply : 3.37 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (67.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.595972510787918
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6768093387755807e-05,-7.635363209057024e-06,-6.983280225537656e-09)
sum a = (1.46761109565797e-05,-1.8802429112096138e-05,1.3371294411255825e-07)
sum e = 0.010120250196474083
sum de = 4.321089347252642e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.07e-03 |
| force | 7.49e-03 |
| divB_cleaning | 2.51e-03 |
+---------------+----------+
Info: cfl dt = 0.0020724812205500163 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 | 8.0602e+04 | 12514 | 1 | 1.553e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.49812808649188 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7121718165485416, dt = 0.0020724812205500163 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.45 us (1.3%)
patch tree reduce : 1.20 us (0.4%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 323.32 us (95.2%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (66.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.601006872303021
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.673768121584973e-05,-7.673573804089613e-06,-6.692429884641325e-09)
sum a = (1.4495038182031702e-05,-1.814891257048252e-05,1.4516278466951726e-07)
sum e = 0.010127658660018423
sum de = 4.2870207291318565e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.95e-03 |
| force | 7.46e-03 |
| divB_cleaning | 2.51e-03 |
+---------------+----------+
Info: cfl dt = 0.001949667198229269 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 | 6.8557e+04 | 12514 | 1 | 1.825e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.87419768309657 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7142442977690916, dt = 0.001949667198229269 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.28 us (1.2%)
patch tree reduce : 901.00 ns (0.3%)
gen split merge : 552.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 335.09 us (95.6%)
LB move op cnt : 0
LB apply : 3.33 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (68.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.601726066805178
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6709608350331586e-05,-7.708280943232072e-06,-6.397545975201608e-09)
sum a = (1.4163287501469664e-05,-1.762483655707835e-05,1.4850245533588917e-07)
sum e = 0.010134593151746592
sum de = 4.260360138409599e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.97e-03 |
| force | 7.44e-03 |
| divB_cleaning | 2.51e-03 |
+---------------+----------+
Info: cfl dt = 0.001965401125265133 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 | 8.1859e+04 | 12514 | 1 | 1.529e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.91260186316339 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7161939649673209, dt = 0.001965401125265133 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.64 us (1.5%)
patch tree reduce : 1.23 us (0.4%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 283.26 us (94.4%)
LB move op cnt : 0
LB apply : 3.23 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (64.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6093974748281923
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.668209521084872e-05,-7.74240992992758e-06,-6.102423459204195e-09)
sum a = (1.365959765113061e-05,-1.7158484761708426e-05,1.4618978648439716e-07)
sum e = 0.010141621619265302
sum de = 4.2509953272697334e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.99e-03 |
| force | 7.49e-03 |
| divB_cleaning | 2.51e-03 |
+---------------+----------+
Info: cfl dt = 0.0019928139895324624 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 | 5.6374e+04 | 12514 | 1 | 2.220e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.87411508010379 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.718159366092586, dt = 0.0019928139895324624 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (1.6%)
patch tree reduce : 1.30 us (0.3%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 336.74 us (88.7%)
LB move op cnt : 0
LB apply : 3.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (70.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.613472910340419
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6655369149857426e-05,-7.776145314228481e-06,-5.813367068553065e-09)
sum a = (1.2999806761596991e-05,-1.6763134793476252e-05,1.400571256212341e-07)
sum e = 0.010148749314002068
sum de = 4.2453697322662065e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.02e-03 |
| force | 7.61e-03 |
| divB_cleaning | 2.51e-03 |
+---------------+----------+
Info: cfl dt = 0.0020219499778056983 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 | 7.8996e+04 | 12514 | 1 | 1.584e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.28746966155664 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7201521800821185, dt = 0.0020219499778056983 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.29 us (1.1%)
patch tree reduce : 1.10 us (0.3%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 361.04 us (95.9%)
LB move op cnt : 0
LB apply : 3.21 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6132331788397
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6629741611121766e-05,-7.809645604777737e-06,-5.536289192692328e-09)
sum a = (1.2215621811166373e-05,-1.6378879708009547e-05,1.3147917976577204e-07)
sum e = 0.010155973927241978
sum de = 4.237438403139456e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.02e-03 |
| force | 7.65e-03 |
| divB_cleaning | 2.52e-03 |
+---------------+----------+
Info: cfl dt = 0.0020164534265701816 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 | 6.7842e+04 | 12514 | 1 | 1.845e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.46157599941542 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7221741300599241, dt = 0.0020164534265701816 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.4%)
patch tree reduce : 1.16 us (0.3%)
gen split merge : 632.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 342.39 us (95.1%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (67.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6158702253476105
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6605902170034663e-05,-7.84228438060758e-06,-5.279839638846792e-09)
sum a = (1.137023665178856e-05,-1.5966971055307818e-05,1.152560057905646e-07)
sum e = 0.01016315561918457
sum de = 4.222120748906151e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.93e-03 |
| force | 7.51e-03 |
| divB_cleaning | 2.52e-03 |
+---------------+----------+
Info: cfl dt = 0.001933072991449241 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 | 8.0020e+04 | 12514 | 1 | 1.564e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.41856866234474 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7241905834864943, dt = 0.0008094165135059672 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.3%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 361.78 us (95.1%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.617068882851208
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6597551252626727e-05,-7.854793013343738e-06,-5.202906161854925e-09)
sum a = (1.0994533587515808e-05,-1.582723226298762e-05,1.0520573069828865e-07)
sum e = 0.010165795164474542
sum de = 4.171082858725647e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.94e-03 |
| force | 7.47e-03 |
| divB_cleaning | 2.52e-03 |
+---------------+----------+
Info: cfl dt = 0.001944527209303863 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 | 8.2395e+04 | 12514 | 1 | 1.519e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.18580538931332 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 465 [SPH][rank=0]
Info: time since start : 195.702736796 (s) [SPH][rank=0]
Info: dump to _to_trash/orztang_00029.vtk [VTK Dump][rank=0]
- took 2.27 ms, bandwidth = 308.64 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 990.26 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 960.36 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/rho_slice_0000029.npy
Saving metadata to _to_trash/plots/rho_slice_0000029.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 950.65 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/vy_slice_0000029.npy
Saving metadata to _to_trash/plots/vy_slice_0000029.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.004664232 s
Info: compute_slice took 963.38 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/By_slice_0000029.npy
Saving metadata to _to_trash/plots/By_slice_0000029.json
Info: evolve_until (target_time = 0.75s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.7250000000000003, dt = 0.001944527209303863 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.23 us (2.1%)
patch tree reduce : 1.87 us (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 416.26 us (94.8%)
LB move op cnt : 0
LB apply : 3.61 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (70.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6209045868627134
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6576324133044517e-05,-7.885512943683612e-06,-5.002398185250075e-09)
sum a = (1.0095680414170652e-05,-1.540300911280867e-05,7.89467814023712e-08)
sum e = 0.010172905769604432
sum de = 4.204645701043604e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.96e-03 |
| force | 7.35e-03 |
| divB_cleaning | 2.52e-03 |
+---------------+----------+
Info: cfl dt = 0.0019649303848993742 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 | 8.0995e+04 | 12514 | 1 | 1.545e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.30823139017495 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7269445272093041, dt = 0.0019649303848993742 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.3%)
patch tree reduce : 1.14 us (0.3%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 371.04 us (95.6%)
LB move op cnt : 0
LB apply : 3.39 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6233019018699055
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6557360746068794e-05,-7.915366327579336e-06,-4.8728038763792525e-09)
sum a = (9.150706446263904e-06,-1.497406888580996e-05,5.1513910155558354e-08)
sum e = 0.010179856456685005
sum de = 4.1664937084256654e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.99e-03 |
| force | 7.38e-03 |
| divB_cleaning | 2.53e-03 |
+---------------+----------+
Info: cfl dt = 0.0019919756806677843 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 | 7.7623e+04 | 12514 | 1 | 1.612e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.877797243624585 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7289094575942036, dt = 0.0019919756806677843 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.70 us (1.4%)
patch tree reduce : 1.01 us (0.3%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 319.31 us (95.1%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (67.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6233019018699046
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6540061165398197e-05,-7.944772889797902e-06,-4.79714126126232e-09)
sum a = (8.208731859641412e-06,-1.4547186461124464e-05,1.9164721900644912e-08)
sum e = 0.010186865966281405
sum de = 4.1226447528925784e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.98e-03 |
| force | 7.49e-03 |
| divB_cleaning | 2.53e-03 |
+---------------+----------+
Info: cfl dt = 0.001976066874308947 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 | 5.4630e+04 | 12514 | 1 | 2.291e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.305593515950697 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7309014332748713, dt = 0.001976066874308947 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.87 us (1.4%)
patch tree reduce : 1.22 us (0.3%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 341.75 us (95.1%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6259389483778177
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6524778357524423e-05,-7.973093933374018e-06,-4.791489887305571e-09)
sum a = (7.273072826669622e-06,-1.4158046024423519e-05,-1.5410182884605918e-08)
sum e = 0.010193765859162375
sum de = 4.0523216674856136e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.98e-03 |
| force | 7.53e-03 |
| divB_cleaning | 2.53e-03 |
+---------------+----------+
Info: cfl dt = 0.001979626218716279 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 | 6.8851e+04 | 12514 | 1 | 1.818e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.139738086415754 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7328775001491803, dt = 0.001979626218716279 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.57 us (1.6%)
patch tree reduce : 1.13 us (0.4%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 993.00 ns (0.3%)
LB compute : 274.84 us (94.4%)
LB move op cnt : 0
LB apply : 3.27 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (66.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6276170688828517
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.651130485427658e-05,-8.000737088726405e-06,-4.856157451393581e-09)
sum a = (6.368141575332282e-06,-1.3828985118354807e-05,-4.910520882996788e-08)
sum e = 0.01020063547160964
sum de = 3.9480675871296424e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.96e-03 |
| force | 7.50e-03 |
| divB_cleaning | 2.54e-03 |
+---------------+----------+
Info: cfl dt = 0.0019647405862299964 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 | 8.0859e+04 | 12514 | 1 | 1.548e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.048474740260176 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7348571263678966, dt = 0.0019647405862299964 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.48 us (1.4%)
patch tree reduce : 911.00 ns (0.3%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 304.17 us (95.0%)
LB move op cnt : 0
LB apply : 3.00 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (67.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.630973309892921
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6499688820880295e-05,-8.027581748256158e-06,-4.985988226577947e-09)
sum a = (5.521517065695917e-06,-1.3493601390829747e-05,-7.76398117616803e-08)
sum e = 0.010207394389947503
sum de = 3.8051234085848936e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.95e-03 |
| force | 7.40e-03 |
| divB_cleaning | 2.54e-03 |
+---------------+----------+
Info: cfl dt = 0.0019525191347108143 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 | 8.1472e+04 | 12514 | 1 | 1.536e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.04924756231467 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7368218669541265, dt = 0.0019525191347108143 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.5%)
patch tree reduce : 942.00 ns (0.3%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 811.00 ns (0.2%)
LB compute : 343.71 us (95.3%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (70.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6374460604123384
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.64897396519246e-05,-8.053598792157474e-06,-5.165612990903813e-09)
sum a = (4.738699624662941e-06,-1.317847618321123e-05,-9.60802749876231e-08)
sum e = 0.01021405302618416
sum de = 3.628532750624979e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.99e-03 |
| force | 7.40e-03 |
| divB_cleaning | 2.54e-03 |
+---------------+----------+
Info: cfl dt = 0.0019859896102889804 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 | 8.0833e+04 | 12514 | 1 | 1.548e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.40334188936208 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7387743860888374, dt = 0.0019859896102889804 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.27 us (1.4%)
patch tree reduce : 901.00 ns (0.3%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 772.00 ns (0.2%)
LB compute : 294.86 us (95.1%)
LB move op cnt : 0
LB apply : 3.23 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (64.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.639124180917372
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6481092876720045e-05,-8.079463464938077e-06,-5.374430097433616e-09)
sum a = (4.022386810238633e-06,-1.2918131250954047e-05,-1.1109007669997025e-07)
sum e = 0.01022077381122807
sum de = 3.414893586554622e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.99e-03 |
| force | 7.27e-03 |
| divB_cleaning | 2.55e-03 |
+---------------+----------+
Info: cfl dt = 0.0019905367954738593 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 | 8.1505e+04 | 12514 | 1 | 1.535e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.56565641151324 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7407603756991263, dt = 0.0019905367954738593 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.88 us (1.6%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.3%)
LB compute : 280.53 us (94.4%)
LB move op cnt : 0
LB apply : 3.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (66.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6410420329231252
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6473797462672154e-05,-8.104918959355988e-06,-5.610463637843685e-09)
sum a = (3.3705349907049735e-06,-1.272663224639936e-05,-1.1594681090996857e-07)
sum e = 0.010227429791497033
sum de = 3.162062534439276e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.02e-03 |
| force | 7.22e-03 |
| divB_cleaning | 2.55e-03 |
+---------------+----------+
Info: cfl dt = 0.0020155470362018214 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 | 8.0892e+04 | 12514 | 1 | 1.547e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.321357645801875 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7427509124946002, dt = 0.0020155470362018214 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.57 us (1.5%)
patch tree reduce : 1.28 us (0.4%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 294.22 us (94.7%)
LB move op cnt : 0
LB apply : 3.21 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (66.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6434393479303187
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.646765275837709e-05,-8.130379492353711e-06,-5.848993643005682e-09)
sum a = (2.764483300065629e-06,-1.2583341772656693e-05,-1.1574757785977418e-07)
sum e = 0.010234097284529196
sum de = 2.8768334015997796e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.01e-03 |
| force | 7.19e-03 |
| divB_cleaning | 2.55e-03 |
+---------------+----------+
Info: cfl dt = 0.0020143357610605678 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 | 6.5016e+04 | 12514 | 1 | 1.925e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.69830826789562 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.744766459530802, dt = 0.0020143357610605678 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (0.2%)
patch tree reduce : 1.12 us (0.0%)
gen split merge : 1.03 us (0.0%)
split / merge op : 0/0
apply split merge : 1.07 us (0.0%)
LB compute : 2.38 ms (99.2%)
LB move op cnt : 0
LB apply : 3.80 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (71.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6463161259389483
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6462694923649416e-05,-8.155582163334833e-06,-6.081947346552765e-09)
sum a = (2.294273677780601e-06,-1.2456202231824302e-05,-1.1099031514918077e-07)
sum e = 0.010240669485451213
sum de = 2.55496056194885e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.96e-03 |
| force | 7.16e-03 |
| divB_cleaning | 2.56e-03 |
+---------------+----------+
Info: cfl dt = 0.001956927885445333 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 | 6.1725e+04 | 12514 | 1 | 2.027e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.76866981425604 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7467807952918626, dt = 0.001956927885445333 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.8%)
patch tree reduce : 1.57 us (0.5%)
gen split merge : 791.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 271.92 us (94.0%)
LB move op cnt : 0
LB apply : 3.12 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (68.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.645836662937509
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6458678775541258e-05,-8.17983000196791e-06,-6.294356027081232e-09)
sum a = (1.9994789486502875e-06,-1.2393504798949165e-05,-9.876728345643197e-08)
sum e = 0.010246952995386666
sum de = 2.2104906524824882e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.92e-03 |
| force | 7.22e-03 |
| divB_cleaning | 2.56e-03 |
+---------------+----------+
Info: cfl dt = 0.0019217539916275902 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 | 8.0746e+04 | 12514 | 1 | 1.550e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.4569303658084 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7487377231773079, dt = 0.0012622768226924208 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.99 us (1.6%)
patch tree reduce : 1.06 us (0.3%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 293.70 us (94.6%)
LB move op cnt : 0
LB apply : 3.27 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (65.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6443982739331946
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.645644332561996e-05,-8.195412688649693e-06,-6.4070678840465985e-09)
sum a = (1.9051224527491171e-06,-1.2395404954700112e-05,-8.373917081416815e-08)
sum e = 0.010250794331285595
sum de = 1.9503562136451096e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.89e-03 |
| force | 7.30e-03 |
| divB_cleaning | 2.56e-03 |
+---------------+----------+
Info: cfl dt = 0.0018939974507677293 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 | 7.9353e+04 | 12514 | 1 | 1.577e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.81533805608416 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 478 [SPH][rank=0]
Info: time since start : 201.91511498 (s) [SPH][rank=0]
Info: dump to _to_trash/orztang_00030.vtk [VTK Dump][rank=0]
- took 2.34 ms, bandwidth = 299.68 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 978.46 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 966.10 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/rho_slice_0000030.npy
Saving metadata to _to_trash/plots/rho_slice_0000030.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 957.00 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/vy_slice_0000030.npy
Saving metadata to _to_trash/plots/vy_slice_0000030.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.0058238790000000006 s
Info: compute_slice took 964.88 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/By_slice_0000030.npy
Saving metadata to _to_trash/plots/By_slice_0000030.json
Info: evolve_until (target_time = 0.78s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.7500000000000003, dt = 0.0018939974507677293 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.71 us (2.4%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 1.17 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 332.66 us (93.6%)
LB move op cnt : 0
LB apply : 3.96 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (67.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6489531724468582
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6452894580559895e-05,-8.218890753296725e-06,-6.556184840959536e-09)
sum a = (1.8035397256945365e-06,-1.243010705035052e-05,-5.812262021694765e-08)
sum e = 0.010256913054960673
sum de = 1.6491952860263283e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.85e-03 |
| force | 7.33e-03 |
| divB_cleaning | 2.56e-03 |
+---------------+----------+
Info: cfl dt = 0.00185422450087609 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 | 7.7293e+04 | 12514 | 1 | 1.619e-01 | 0.0% | 1.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.11390925250592 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.751893997450768, dt = 0.00185422450087609 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.80 us (1.6%)
patch tree reduce : 1.43 us (0.5%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 285.88 us (94.5%)
LB move op cnt : 0
LB apply : 3.25 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (68.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.65159021895477
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6449646611725218e-05,-8.241971825178387e-06,-6.6396983866565e-09)
sum a = (1.8181532683824177e-06,-1.2485201126840498e-05,-2.589295899010813e-08)
sum e = 0.010262659362090967
sum de = 1.2798536203498617e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.06e-03 |
| force | 7.31e-03 |
| divB_cleaning | 2.56e-03 |
+---------------+----------+
Info: cfl dt = 0.002055647491916231 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 | 7.9948e+04 | 12514 | 1 | 1.565e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.64553861851485 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7537482219516441, dt = 0.002055647491916231 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.59 us (1.5%)
patch tree reduce : 1.29 us (0.4%)
gen split merge : 771.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 290.20 us (94.5%)
LB move op cnt : 0
LB apply : 3.23 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (68.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6554259229662778
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6445895581124705e-05,-8.267688075953666e-06,-6.663044669112005e-09)
sum a = (1.972875019795005e-06,-1.2552493178266456e-05,1.0631942815843194e-08)
sum e = 0.010269007726515265
sum de = 9.048296469116454e-06
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.03e-03 |
| force | 7.31e-03 |
| divB_cleaning | 2.56e-03 |
+---------------+----------+
Info: cfl dt = 0.002033704815142486 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 | 7.6377e+04 | 12514 | 1 | 1.638e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.16668876011443 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7558038694435604, dt = 0.002033704815142486 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 27.05 us (8.3%)
patch tree reduce : 1.32 us (0.4%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 285.77 us (87.9%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.656624580469874
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6441724309007073e-05,-8.293285306141061e-06,-6.603881274418486e-09)
sum a = (2.212896803080477e-06,-1.2642254455418921e-05,4.388131646374497e-08)
sum e = 0.01027511879705942
sum de = 5.319853610116695e-06
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.04e-03 |
| force | 7.16e-03 |
| divB_cleaning | 2.56e-03 |
+---------------+----------+
Info: cfl dt = 0.0020384015331812912 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 | 7.1848e+04 | 12514 | 1 | 1.742e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.03462566051247 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7578375742587029, dt = 0.0020384015331812912 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.40 us (1.5%)
patch tree reduce : 1.22 us (0.4%)
gen split merge : 571.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 279.10 us (94.7%)
LB move op cnt : 0
LB apply : 3.18 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (67.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6590218954770664
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.643696947004278e-05,-8.319146570976255e-06,-6.480623826016672e-09)
sum a = (2.4956930382319863e-06,-1.2670550392957475e-05,7.527147995968624e-08)
sum e = 0.010281147357582917
sum de = 1.9806609575234995e-06
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.02e-03 |
| force | 7.09e-03 |
| divB_cleaning | 2.56e-03 |
+---------------+----------+
Info: cfl dt = 0.002022375981615072 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 | 7.2039e+04 | 12514 | 1 | 1.737e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.24399671583572 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7598759757918842, dt = 0.002022375981615072 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.96 us (1.5%)
patch tree reduce : 1.02 us (0.3%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 321.44 us (95.1%)
LB move op cnt : 0
LB apply : 3.23 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (70.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6595013584785043
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.643163401424507e-05,-8.344800027006268e-06,-6.296403714147188e-09)
sum a = (2.82995729795772e-06,-1.2639537769423746e-05,1.0837810540538322e-07)
sum e = 0.010287015902751894
sum de = -1.0605576897963819e-06
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.06e-03 |
| force | 6.97e-03 |
| divB_cleaning | 2.56e-03 |
+---------------+----------+
Info: cfl dt = 0.0020567247221083603 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 | 8.0942e+04 | 12514 | 1 | 1.546e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.09164137961847 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7618983517734992, dt = 0.0020567247221083603 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.89 us (1.3%)
patch tree reduce : 1.19 us (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.57 us (0.4%)
LB compute : 357.78 us (95.2%)
LB move op cnt : 0
LB apply : 3.59 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (70.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6638165254914505
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.64254755671027e-05,-8.370764717219862e-06,-6.040022763357406e-09)
sum a = (3.208800228789686e-06,-1.2482408431411918e-05,1.3955385492070407e-07)
sum e = 0.010292889180922209
sum de = -3.803538059774799e-06
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.04e-03 |
| force | 6.84e-03 |
| divB_cleaning | 2.57e-03 |
+---------------+----------+
Info: cfl dt = 0.002036696341695427 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 | 7.8592e+04 | 12514 | 1 | 1.592e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.500686007630726 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7639550764956076, dt = 0.002036696341695427 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.05 us (0.7%)
patch tree reduce : 1.41 us (0.2%)
gen split merge : 641.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.03 us (0.1%)
LB compute : 758.44 us (97.7%)
LB move op cnt : 0
LB apply : 3.79 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (69.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.665015182995046
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6418550627604687e-05,-8.396026006910669e-06,-5.7237339701920835e-09)
sum a = (3.5874528036490296e-06,-1.2250664934725082e-05,1.7055640740859647e-07)
sum e = 0.010298574544508981
sum de = -6.2271801925434695e-06
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.00e-03 |
| force | 6.81e-03 |
| divB_cleaning | 2.57e-03 |
+---------------+----------+
Info: cfl dt = 0.002000014973741898 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 | 7.1925e+04 | 12514 | 1 | 1.740e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.141546495915286 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.765991772837303, dt = 0.002000014973741898 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.77 us (1.5%)
patch tree reduce : 1.31 us (0.4%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 308.32 us (94.8%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (64.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.665974108997922
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.641099006812273e-05,-8.420291524652638e-06,-5.351047208889273e-09)
sum a = (3.964668584476879e-06,-1.1942397245491156e-05,2.0174868647437528e-07)
sum e = 0.010304040031983713
sum de = -8.298076964361107e-06
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.01e-03 |
| force | 6.90e-03 |
| divB_cleaning | 2.57e-03 |
+---------------+----------+
Info: cfl dt = 0.002006843175860567 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 | 7.9738e+04 | 12514 | 1 | 1.569e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.87792045246679 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7679917878110449, dt = 0.002006843175860567 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.85 us (1.3%)
patch tree reduce : 1.59 us (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 351.00 us (94.8%)
LB move op cnt : 0
LB apply : 3.96 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.53 us (67.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6707687390123067
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.640265638142445e-05,-8.443949773071409e-06,-4.914976721601231e-09)
sum a = (4.346732286572512e-06,-1.1578595991284916e-05,2.291097227085989e-07)
sum e = 0.010309425027331674
sum de = -1.0071060988107636e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.03e-03 |
| force | 7.06e-03 |
| divB_cleaning | 2.57e-03 |
+---------------+----------+
Info: cfl dt = 0.0020305561443811453 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 | 8.0339e+04 | 12514 | 1 | 1.558e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.381541571678135 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7699986309869055, dt = 0.0020305561443811453 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.6%)
patch tree reduce : 1.21 us (0.4%)
gen split merge : 622.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 300.34 us (94.5%)
LB move op cnt : 0
LB apply : 3.67 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (67.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.670529007511586
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6393446726505397e-05,-8.467095716272331e-06,-4.422301911991994e-09)
sum a = (4.708884868027161e-06,-1.1158056419091601e-05,2.6045826178415794e-07)
sum e = 0.010314762874941917
sum de = -1.1640377206070162e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.96e-03 |
| force | 6.99e-03 |
| divB_cleaning | 2.58e-03 |
+---------------+----------+
Info: cfl dt = 0.0019619413525390032 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 | 6.9989e+04 | 12514 | 1 | 1.788e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.883830986851684 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7720291871312867, dt = 0.0019619413525390032 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.73 us (1.5%)
patch tree reduce : 1.17 us (0.4%)
gen split merge : 541.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 299.96 us (94.9%)
LB move op cnt : 0
LB apply : 3.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (72.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6736455170209377
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.638384048498365e-05,-8.488560203968528e-06,-3.879470593268739e-09)
sum a = (5.004149972857591e-06,-1.0715693777374358e-05,2.918770056611068e-07)
sum e = 0.010319779506031298
sum de = -1.3025755112682362e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.98e-03 |
| force | 7.06e-03 |
| divB_cleaning | 2.58e-03 |
+---------------+----------+
Info: cfl dt = 0.0019767119523932913 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 | 7.4951e+04 | 12514 | 1 | 1.670e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.30297842869571 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7739911284838257, dt = 0.0010088715161746808 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.10 us (1.3%)
patch tree reduce : 821.00 ns (0.3%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 294.35 us (95.3%)
LB move op cnt : 0
LB apply : 2.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 us (70.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.67580310052741
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6378502294203828e-05,-8.498937017417322e-06,-3.5541833296019127e-09)
sum a = (5.1387320128893525e-06,-1.0464362813536779e-05,3.1087184306450007e-07)
sum e = 0.010322103955219033
sum de = -1.3839347087540039e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.95e-03 |
| force | 7.05e-03 |
| divB_cleaning | 2.59e-03 |
+---------------+----------+
Info: cfl dt = 0.001945426765364424 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 | 6.1787e+04 | 12514 | 1 | 2.025e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.93229635885834 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 491 [SPH][rank=0]
Info: time since start : 208.097361395 (s) [SPH][rank=0]
Info: dump to _to_trash/orztang_00031.vtk [VTK Dump][rank=0]
- took 2.36 ms, bandwidth = 296.74 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 968.86 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 965.89 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/rho_slice_0000031.npy
Saving metadata to _to_trash/plots/rho_slice_0000031.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 956.20 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/vy_slice_0000031.npy
Saving metadata to _to_trash/plots/vy_slice_0000031.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.005725686000000001 s
Info: compute_slice took 968.58 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/By_slice_0000031.npy
Saving metadata to _to_trash/plots/By_slice_0000031.json
Info: evolve_until (target_time = 0.80s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.7750000000000004, dt = 0.001945426765364424 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.86 us (2.4%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 352.08 us (93.9%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (68.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6767620265302865
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6368437379412568e-05,-8.519167888591793e-06,-2.9398232503005384e-09)
sum a = (5.342869090402634e-06,-1.0014052112181667e-05,3.507637594822025e-07)
sum e = 0.01032714916896017
sum de = -1.4601262509450814e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.89e-03 |
| force | 6.96e-03 |
| divB_cleaning | 2.59e-03 |
+---------------+----------+
Info: cfl dt = 0.0018886935639206236 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 | 8.1376e+04 | 12514 | 1 | 1.538e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.54244878393043 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7769454267653648, dt = 0.0018886935639206236 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.75 us (1.6%)
patch tree reduce : 972.00 ns (0.3%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 282.70 us (94.7%)
LB move op cnt : 0
LB apply : 2.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (66.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6762825635288476
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6358147770081512e-05,-8.537643341119126e-06,-2.2385345943497604e-09)
sum a = (5.508263736692607e-06,-9.553720531393903e-06,3.8295767965220386e-07)
sum e = 0.010331718995731671
sum de = -1.5721778700308086e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.84e-03 |
| force | 6.97e-03 |
| divB_cleaning | 2.60e-03 |
+---------------+----------+
Info: cfl dt = 0.0018438087173592412 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 | 7.8642e+04 | 12514 | 1 | 1.591e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.728719461818386 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7788341203292855, dt = 0.0018438087173592412 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.6%)
patch tree reduce : 1.10 us (0.3%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.3%)
LB compute : 308.84 us (94.8%)
LB move op cnt : 0
LB apply : 3.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (68.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6755633690266913
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6347835395484232e-05,-8.554823861671238e-06,-1.5020316613160776e-09)
sum a = (5.658721826684761e-06,-9.080460939065777e-06,4.0405365549715423e-07)
sum e = 0.010336083003307095
sum de = -1.6593737575743478e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.01e-03 |
| force | 6.87e-03 |
| divB_cleaning | 2.61e-03 |
+---------------+----------+
Info: cfl dt = 0.0020120108398020723 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 | 7.2079e+04 | 12514 | 1 | 1.736e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.232090077414874 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7806779290466447, dt = 0.0020120108398020723 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.71 us (1.3%)
patch tree reduce : 1.29 us (0.4%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 334.37 us (95.3%)
LB move op cnt : 0
LB apply : 3.25 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (66.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6805977305417934
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6336311277860568e-05,-8.572657547430014e-06,-6.696228545119258e-10)
sum a = (5.802867908531737e-06,-8.556149222063958e-06,4.210939565343141e-07)
sum e = 0.010340798314691656
sum de = -1.746232350142262e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.04e-03 |
| force | 6.75e-03 |
| divB_cleaning | 2.61e-03 |
+---------------+----------+
Info: cfl dt = 0.002040195082086252 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 | 7.2759e+04 | 12514 | 1 | 1.720e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.113832422743826 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7826899398864468, dt = 0.002040195082086252 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.49 us (1.3%)
patch tree reduce : 932.00 ns (0.3%)
gen split merge : 551.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 335.20 us (95.9%)
LB move op cnt : 0
LB apply : 2.95 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (66.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.685392360556177
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.632432728355192e-05,-8.589586300565267e-06,2.0663359990560918e-10)
sum a = (5.920957813387165e-06,-8.069584510423737e-06,4.3779620041013176e-07)
sum e = 0.010345420568324364
sum de = -1.8416390743874548e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.04e-03 |
| force | 6.77e-03 |
| divB_cleaning | 2.62e-03 |
+---------------+----------+
Info: cfl dt = 0.0020445660639614514 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 | 8.0938e+04 | 12514 | 1 | 1.546e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.503877563416744 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.784730134968533, dt = 0.0020445660639614514 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.37 us (1.4%)
patch tree reduce : 1.46 us (0.5%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 295.15 us (95.0%)
LB move op cnt : 0
LB apply : 2.89 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (68.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6844334345533016
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.631210103091895e-05,-8.605588755740248e-06,1.118774772102589e-09)
sum a = (5.9873657284743594e-06,-7.617976254626226e-06,4.4663496546361277e-07)
sum e = 0.010349926147825829
sum de = -1.9383212308692003e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.02e-03 |
| force | 6.87e-03 |
| divB_cleaning | 2.62e-03 |
+---------------+----------+
Info: cfl dt = 0.002015636157120787 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 | 8.0334e+04 | 12514 | 1 | 1.558e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.2505390093469 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7867747010324945, dt = 0.002015636157120787 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.81 us (1.4%)
patch tree reduce : 1.12 us (0.3%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 330.77 us (95.1%)
LB move op cnt : 0
LB apply : 3.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (67.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6829950455489846
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6299964792386096e-05,-8.620482152665873e-06,2.028064077063534e-09)
sum a = (5.986378890485345e-06,-7.1904821275711485e-06,4.4427506346856046e-07)
sum e = 0.010354241815282062
sum de = -2.040911560803317e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.98e-03 |
| force | 7.03e-03 |
| divB_cleaning | 2.61e-03 |
+---------------+----------+
Info: cfl dt = 0.001982017129379907 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 | 8.0417e+04 | 12514 | 1 | 1.556e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.62991772220954 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7887903371896152, dt = 0.001982017129379907 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.23 us (1.3%)
patch tree reduce : 901.00 ns (0.3%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 298.30 us (89.2%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (67.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6844334345532994
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6288100681435347e-05,-8.634302975101656e-06,2.9062465111204446e-09)
sum a = (5.966512608430926e-06,-6.800859908402542e-06,4.313927506850187e-07)
sum e = 0.010358373008914233
sum de = -2.1537378350280678e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.95e-03 |
| force | 7.04e-03 |
| divB_cleaning | 2.60e-03 |
+---------------+----------+
Info: cfl dt = 0.0019514384979720473 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 | 7.0409e+04 | 12514 | 1 | 1.777e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.14602436385339 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7907723543189952, dt = 0.0019514384979720473 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.68 us (1.4%)
patch tree reduce : 902.00 ns (0.3%)
gen split merge : 662.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 752.00 ns (0.2%)
LB compute : 308.13 us (95.5%)
LB move op cnt : 0
LB apply : 2.69 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (67.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.685632092056895
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.627647708668831e-05,-8.647188315989857e-06,3.7353164502517e-09)
sum a = (5.973758834864984e-06,-6.4426422979549995e-06,4.121121671503369e-07)
sum e = 0.010362335075913246
sum de = -2.281159214769795e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.92e-03 |
| force | 7.12e-03 |
| divB_cleaning | 2.59e-03 |
+---------------+----------+
Info: cfl dt = 0.001922917951891702 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 | 8.1181e+04 | 12514 | 1 | 1.541e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.574012395059626 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7927237928169673, dt = 0.001922917951891702 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.27 us (1.3%)
patch tree reduce : 1.14 us (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 325.65 us (95.7%)
LB move op cnt : 0
LB apply : 2.54 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (68.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6870704810612107
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6264982968301806e-05,-8.659227468704162e-06,4.508961898171333e-09)
sum a = (5.985960598889244e-06,-6.068307402321985e-06,3.806314620363375e-07)
sum e = 0.010366138162021933
sum de = -2.4279514866629775e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.04e-03 |
| force | 7.19e-03 |
| divB_cleaning | 2.58e-03 |
+---------------+----------+
Info: cfl dt = 0.002039699778415781 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 | 8.0728e+04 | 12514 | 1 | 1.550e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.656988733171055 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.794646710768859, dt = 0.002039699778415781 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.62 us (1.5%)
patch tree reduce : 951.00 ns (0.3%)
gen split merge : 562.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 284.93 us (95.0%)
LB move op cnt : 0
LB apply : 2.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (67.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6901869905705613
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.625276167429931e-05,-8.671245086322812e-06,5.255068400443859e-09)
sum a = (5.9655721090726674e-06,-5.6117389805165134e-06,3.4963855974164734e-07)
sum e = 0.010370105224588342
sum de = -2.6056585367510794e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.00e-03 |
| force | 7.23e-03 |
| divB_cleaning | 2.57e-03 |
+---------------+----------+
Info: cfl dt = 0.0019959008473206595 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 | 8.1269e+04 | 12514 | 1 | 1.540e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.68688837010313 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7966864105472747, dt = 0.0019959008473206595 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.58 us (1.3%)
patch tree reduce : 1.22 us (0.4%)
gen split merge : 561.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 323.61 us (95.4%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (67.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.690906185072719
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6240875777070825e-05,-8.681979929654638e-06,5.921304190116853e-09)
sum a = (5.934789321896489e-06,-5.131941732004542e-06,3.01992409611886e-07)
sum e = 0.010373835740712265
sum de = -2.809532079927253e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.96e-03 |
| force | 7.17e-03 |
| divB_cleaning | 2.56e-03 |
+---------------+----------+
Info: cfl dt = 0.001962060608839813 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 | 7.3171e+04 | 12514 | 1 | 1.710e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.012845826920255 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7986823113945954, dt = 0.001317688605404932 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.42 us (1.5%)
patch tree reduce : 1.16 us (0.4%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 285.42 us (95.0%)
LB move op cnt : 0
LB apply : 3.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (66.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.689707527569124
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.623308629250132e-05,-8.688263416930789e-06,6.2716876514735656e-09)
sum a = (5.884416191724114e-06,-4.8183546728049526e-06,2.7131865489898504e-07)
sum e = 0.01037609343706771
sum de = -2.9575962278178012e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.95e-03 |
| force | 7.18e-03 |
| divB_cleaning | 2.56e-03 |
+---------------+----------+
Info: cfl dt = 0.0019462786601183502 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 | 7.2345e+04 | 12514 | 1 | 1.730e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.423719969248868 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 504 [SPH][rank=0]
Info: time since start : 214.20652048800002 (s) [SPH][rank=0]
Info: dump to _to_trash/orztang_00032.vtk [VTK Dump][rank=0]
- took 2.36 ms, bandwidth = 296.99 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 997.92 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 990.52 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/rho_slice_0000032.npy
Saving metadata to _to_trash/plots/rho_slice_0000032.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 974.10 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/vy_slice_0000032.npy
Saving metadata to _to_trash/plots/vy_slice_0000032.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.005738401000000001 s
Info: compute_slice took 986.73 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/By_slice_0000032.npy
Saving metadata to _to_trash/plots/By_slice_0000032.json
Info: evolve_until (target_time = 0.83s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.8000000000000004, dt = 0.0019462786601183502 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.73 us (2.2%)
patch tree reduce : 1.95 us (0.5%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 383.26 us (94.5%)
LB move op cnt : 0
LB apply : 3.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6889883330669644
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.622166676689007e-05,-8.69743467276072e-06,6.779540131060473e-09)
sum a = (5.759916958447841e-06,-4.309617468805736e-06,2.285154169027577e-07)
sum e = 0.010379722427994537
sum de = -3.1647685275065944e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.07e-03 |
| force | 7.24e-03 |
| divB_cleaning | 2.56e-03 |
+---------------+----------+
Info: cfl dt = 0.0020689797187199315 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 | 7.8440e+04 | 12514 | 1 | 1.595e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.91850946030854 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8019462786601187, dt = 0.0020689797187199315 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.95 us (1.6%)
patch tree reduce : 1.09 us (0.4%)
gen split merge : 672.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.3%)
LB compute : 286.77 us (94.6%)
LB move op cnt : 0
LB apply : 3.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (67.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.68754994406265
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6209870770622136e-05,-8.705856111716404e-06,7.210680379698868e-09)
sum a = (5.631666558776802e-06,-3.733813851431528e-06,1.896478677027477e-07)
sum e = 0.010383362759711093
sum de = -3.421182596266018e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.05e-03 |
| force | 7.41e-03 |
| divB_cleaning | 2.55e-03 |
+---------------+----------+
Info: cfl dt = 0.0020519003277889255 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 | 6.5053e+04 | 12514 | 1 | 1.924e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.71925643094562 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8040152583788386, dt = 0.0020519003277889255 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.44 us (1.5%)
patch tree reduce : 1.06 us (0.4%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 280.69 us (94.8%)
LB move op cnt : 0
LB apply : 3.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 24.10 us (94.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.685632092056896
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.619844782590197e-05,-8.712921862579166e-06,7.559610816096837e-09)
sum a = (5.524030148396915e-06,-3.131572976013665e-06,1.5036014022858553e-07)
sum e = 0.01038683517701659
sum de = -3.6683450798696774e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.05e-03 |
| force | 7.68e-03 |
| divB_cleaning | 2.55e-03 |
+---------------+----------+
Info: cfl dt = 0.0020518675774506925 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 | 8.0253e+04 | 12514 | 1 | 1.559e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.37200617756639 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8060671587066275, dt = 0.0020518675774506925 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.42 us (1.3%)
patch tree reduce : 1.18 us (0.4%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 313.82 us (94.9%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6887486015662465
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6187223677136572e-05,-8.71872956650999e-06,7.827822662331755e-09)
sum a = (5.433898342186669e-06,-2.4741486718026965e-06,1.1684229157199795e-07)
sum e = 0.01039021777627304
sum de = -3.900775507742148e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.04e-03 |
| force | 7.83e-03 |
| divB_cleaning | 2.55e-03 |
+---------------+----------+
Info: cfl dt = 0.0020409048567963375 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 | 8.0757e+04 | 12514 | 1 | 1.550e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.669152964939386 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8081190262840782, dt = 0.0020409048567963375 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.6%)
patch tree reduce : 1.10 us (0.3%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 315.02 us (94.9%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (65.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6925843055777534
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6176226076884056e-05,-8.723104594743776e-06,8.031899569218235e-09)
sum a = (5.4063736527466606e-06,-1.8048965281037566e-06,8.991913864634118e-08)
sum e = 0.010393490031727282
sum de = -4.1115850638501466e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.04e-03 |
| force | 7.91e-03 |
| divB_cleaning | 2.55e-03 |
+---------------+----------+
Info: cfl dt = 0.0020374929638095193 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 | 8.0815e+04 | 12514 | 1 | 1.548e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.44846588745554 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8101599311408745, dt = 0.0020374929638095193 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.59 us (1.4%)
patch tree reduce : 1.28 us (0.4%)
gen split merge : 722.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 310.12 us (95.1%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (68.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6916253795748766
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6165238716243003e-05,-8.726099118744673e-06,8.187635384738465e-09)
sum a = (5.436493160263687e-06,-1.1076837082594133e-06,7.041680684790879e-08)
sum e = 0.010396674125489478
sum de = -4.296227454026601e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.01e-03 |
| force | 7.98e-03 |
| divB_cleaning | 2.55e-03 |
+---------------+----------+
Info: cfl dt = 0.0020101299926113107 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 | 8.1065e+04 | 12514 | 1 | 1.544e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.515270364015706 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.812197424104684, dt = 0.0020101299926113107 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.79 us (1.5%)
patch tree reduce : 1.24 us (0.4%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 821.00 ns (0.3%)
LB compute : 302.73 us (95.1%)
LB move op cnt : 0
LB apply : 3.02 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6940226945820687
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.615427997414475e-05,-8.7276154238818e-06,8.30931438825882e-09)
sum a = (5.4995106632251895e-06,-3.827230539610758e-07,5.2410030873959986e-08)
sum e = 0.01039973075561722
sum de = -4.452838065344631e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.97e-03 |
| force | 8.17e-03 |
| divB_cleaning | 2.55e-03 |
+---------------+----------+
Info: cfl dt = 0.0019715321572102806 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 | 5.9149e+04 | 12514 | 1 | 2.116e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.20393048551144 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8142075540972953, dt = 0.0019715321572102806 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.63 us (1.4%)
patch tree reduce : 1.19 us (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 305.66 us (94.7%)
LB move op cnt : 0
LB apply : 3.96 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (66.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.694022694582069
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6143374175336753e-05,-8.727641342112297e-06,8.394544469259734e-09)
sum a = (5.5496385014257645e-06,3.5872857995790815e-07,3.768872757204739e-08)
sum e = 0.010402654082061959
sum de = -4.5771480835543405e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.93e-03 |
| force | 8.30e-03 |
| divB_cleaning | 2.56e-03 |
+---------------+----------+
Info: cfl dt = 0.001933890993638071 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 | 7.2174e+04 | 12514 | 1 | 1.734e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.93450287013531 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8161790862545055, dt = 0.001933890993638071 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.62 us (1.5%)
patch tree reduce : 1.32 us (0.4%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 296.37 us (94.8%)
LB move op cnt : 0
LB apply : 3.08 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (66.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.692824037078473
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6132592365098516e-05,-8.726216702273312e-06,8.452918598644772e-09)
sum a = (5.603765813755177e-06,1.0895313954420101e-06,3.494420731731279e-08)
sum e = 0.010405457165892524
sum de = -4.6682833231046976e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.98e-03 |
| force | 8.15e-03 |
| divB_cleaning | 2.57e-03 |
+---------------+----------+
Info: cfl dt = 0.00198182159366879 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 | 6.6881e+04 | 12514 | 1 | 1.871e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.20817211086276 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8181129772481436, dt = 0.00198182159366879 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.7%)
patch tree reduce : 1.19 us (0.4%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.3%)
LB compute : 290.43 us (94.5%)
LB move op cnt : 0
LB apply : 3.68 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (67.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.687549944062651
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6121434362841932e-05,-8.723350798934966e-06,8.51951798177873e-09)
sum a = (5.640150987790099e-06,1.8411523198566614e-06,3.339171147076608e-08)
sum e = 0.010408288506663992
sum de = -4.727224008685051e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.95e-03 |
| force | 8.07e-03 |
| divB_cleaning | 2.57e-03 |
+---------------+----------+
Info: cfl dt = 0.0019454238546944686 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 | 8.2070e+04 | 12514 | 1 | 1.525e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.79051619760934 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8200947988418124, dt = 0.0019454238546944686 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.4%)
patch tree reduce : 1.12 us (0.3%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 345.36 us (95.1%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (68.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6906664535719997
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6110425824104446e-05,-8.719024188002847e-06,8.582940628926702e-09)
sum a = (5.665666618110743e-06,2.5645734231114427e-06,3.423064422897549e-08)
sum e = 0.010410990549528465
sum de = -4.750043766338582e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.04e-03 |
| force | 8.07e-03 |
| divB_cleaning | 2.58e-03 |
+---------------+----------+
Info: cfl dt = 0.0020388767666256915 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 | 7.5269e+04 | 12514 | 1 | 1.663e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.124842190464975 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8220402226965068, dt = 0.0020388767666256915 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.6%)
patch tree reduce : 1.24 us (0.3%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 347.23 us (95.0%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (68.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6868307495604924
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6098849408711242e-05,-8.713091658498687e-06,8.653548734051857e-09)
sum a = (5.642332692373117e-06,3.329379245877887e-06,5.557903086570795e-08)
sum e = 0.01041379721426929
sum de = -4.73780910068736e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.04e-03 |
| force | 8.15e-03 |
| divB_cleaning | 2.59e-03 |
+---------------+----------+
Info: cfl dt = 0.0020391892705924866 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 | 7.1357e+04 | 12514 | 1 | 1.754e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.85387635688402 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8240790994631325, dt = 0.0009209005368678858 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.9%)
patch tree reduce : 1.28 us (0.4%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 280.87 us (94.1%)
LB move op cnt : 0
LB apply : 3.07 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (66.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.688508870065526
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6093677169005084e-05,-8.709245958952016e-06,8.726494858173962e-09)
sum a = (5.595031638276558e-06,3.684103613212713e-06,6.364105825050039e-08)
sum e = 0.010414840349835641
sum de = -4.710094103708681e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.04e-03 |
| force | 8.21e-03 |
| divB_cleaning | 2.60e-03 |
+---------------+----------+
Info: cfl dt = 0.0020439007129918357 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 | 7.1854e+04 | 12514 | 1 | 1.742e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.03587221292183 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 517 [SPH][rank=0]
Info: time since start : 220.508991307 (s) [SPH][rank=0]
Info: dump to _to_trash/orztang_00033.vtk [VTK Dump][rank=0]
- took 2.25 ms, bandwidth = 312.01 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 989.07 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 992.53 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/rho_slice_0000033.npy
Saving metadata to _to_trash/plots/rho_slice_0000033.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 968.18 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/vy_slice_0000033.npy
Saving metadata to _to_trash/plots/vy_slice_0000033.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.005750605000000001 s
Info: compute_slice took 983.49 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/By_slice_0000033.npy
Saving metadata to _to_trash/plots/By_slice_0000033.json
Info: evolve_until (target_time = 0.85s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.8250000000000004, dt = 0.0020439007129918357 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.06 us (2.5%)
patch tree reduce : 1.66 us (0.4%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 376.47 us (94.0%)
LB move op cnt : 0
LB apply : 3.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (71.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.69042672207128
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6082263259633697e-05,-8.701552684020323e-06,8.860283025181451e-09)
sum a = (5.4934202195818265e-06,4.5009189081204624e-06,7.982900863238118e-08)
sum e = 0.010417750187941515
sum de = -4.6371679089366155e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.03e-03 |
| force | 8.28e-03 |
| divB_cleaning | 2.61e-03 |
+---------------+----------+
Info: cfl dt = 0.002030413362531816 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 | 7.8411e+04 | 12514 | 1 | 1.596e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.104745307347365 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8270439007129923, dt = 0.002030413362531816 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.7%)
patch tree reduce : 1.02 us (0.3%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 281.98 us (93.7%)
LB move op cnt : 0
LB apply : 5.17 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (64.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6861115550583348
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6071213187639385e-05,-8.691579213443366e-06,9.038912192689706e-09)
sum a = (5.288440593531568e-06,5.325239815606361e-06,9.991785920273395e-08)
sum e = 0.01042039859517189
sum de = -4.5402480343012555e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.05e-03 |
| force | 8.32e-03 |
| divB_cleaning | 2.62e-03 |
+---------------+----------+
Info: cfl dt = 0.002053064465917166 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 | 7.7908e+04 | 12514 | 1 | 1.606e-01 | 0.0% | 1.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.50626875702121 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8290743140755241, dt = 0.002053064465917166 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.52 us (1.4%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 311.88 us (94.8%)
LB move op cnt : 0
LB apply : 3.08 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (67.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6853923605561785
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6060563774862605e-05,-8.679809296712979e-06,9.264444334247448e-09)
sum a = (4.990071204201773e-06,6.158855574061963e-06,1.2541078891330148e-07)
sum e = 0.01042303903814055
sum de = -4.384699147493538e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.07e-03 |
| force | 8.43e-03 |
| divB_cleaning | 2.63e-03 |
+---------------+----------+
Info: cfl dt = 0.002068781778464276 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 | 5.9582e+04 | 12514 | 1 | 2.100e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.190227935138644 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8311273785414413, dt = 0.002068781778464276 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.5%)
patch tree reduce : 1.34 us (0.4%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 329.64 us (94.9%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (67.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.683714240051143
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6050546692277508e-05,-8.666212235078837e-06,9.55006120323444e-09)
sum a = (4.665531245971823e-06,6.957805945264173e-06,1.4717349473832218e-07)
sum e = 0.010425657727380692
sum de = -4.183013135556307e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.10e-03 |
| force | 8.51e-03 |
| divB_cleaning | 2.64e-03 |
+---------------+----------+
Info: cfl dt = 0.002097936618318148 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 | 8.0576e+04 | 12514 | 1 | 1.553e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.95409068845211 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8331961603199055, dt = 0.002097936618318148 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.51 us (1.2%)
patch tree reduce : 1.06 us (0.3%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 347.51 us (95.5%)
LB move op cnt : 0
LB apply : 3.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (66.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6839539715518614
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.60410944046088e-05,-8.650788772218333e-06,9.881333011722494e-09)
sum a = (4.344926374277e-06,7.694529298911363e-06,1.5385661405691228e-07)
sum e = 0.010428279030585541
sum de = -3.926888088833394e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.13e-03 |
| force | 8.56e-03 |
| divB_cleaning | 2.65e-03 |
+---------------+----------+
Info: cfl dt = 0.0021311988070333823 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 | 8.0216e+04 | 12514 | 1 | 1.560e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.412625061443585 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8352940969382237, dt = 0.0021311988070333823 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.69 us (1.5%)
patch tree reduce : 1.39 us (0.4%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 811.00 ns (0.3%)
LB compute : 304.87 us (95.0%)
LB move op cnt : 0
LB apply : 3.04 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (66.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.681077193543232
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6032170807053453e-05,-8.633617401105474e-06,1.0216242424426327e-08)
sum a = (4.069962225298707e-06,8.371908847637323e-06,1.5537934292640115e-07)
sum e = 0.010430908405680934
sum de = -3.613330028472166e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.10e-03 |
| force | 8.58e-03 |
| divB_cleaning | 2.67e-03 |
+---------------+----------+
Info: cfl dt = 0.0020954948488480993 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 | 8.0386e+04 | 12514 | 1 | 1.557e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.28471185445225 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.837425295745257, dt = 0.0020954948488480993 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.67 us (1.5%)
patch tree reduce : 1.05 us (0.3%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 631.00 ns (0.2%)
LB compute : 302.49 us (95.2%)
LB move op cnt : 0
LB apply : 3.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (67.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.683234777049704
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6023935223808348e-05,-8.615352293996941e-06,1.0543461656121224e-08)
sum a = (3.851732258209409e-06,8.940218845394356e-06,1.639019628787901e-07)
sum e = 0.010433447560948385
sum de = -3.247840539990158e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.06e-03 |
| force | 8.55e-03 |
| divB_cleaning | 2.68e-03 |
+---------------+----------+
Info: cfl dt = 0.002063403257248481 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 | 6.8102e+04 | 12514 | 1 | 1.838e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.05389721914131 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8395207905941051, dt = 0.002063403257248481 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.5%)
patch tree reduce : 1.26 us (0.4%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 330.58 us (95.1%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6841937030525815
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.60162161968068e-05,-8.596309571974135e-06,1.0890587053299004e-08)
sum a = (3.6892526727444804e-06,9.415055117132882e-06,1.827687235040464e-07)
sum e = 0.010435922795991825
sum de = -2.8353245548499808e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.03e-03 |
| force | 8.58e-03 |
| divB_cleaning | 2.69e-03 |
+---------------+----------+
Info: cfl dt = 0.0020339828397921496 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 | 7.7901e+04 | 12514 | 1 | 1.606e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.24137974132168 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8415841938513536, dt = 0.0020339828397921496 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.5%)
patch tree reduce : 1.38 us (0.4%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 316.83 us (94.7%)
LB move op cnt : 0
LB apply : 3.28 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.68179638804539
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.60088799506317e-05,-8.576669622075593e-06,1.1281800368221192e-08)
sum a = (3.5655618263149777e-06,9.799170475675091e-06,2.016854857223584e-07)
sum e = 0.01043834133032172
sum de = -2.3886689242023808e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.01e-03 |
| force | 8.49e-03 |
| divB_cleaning | 2.69e-03 |
+---------------+----------+
Info: cfl dt = 0.0020073365174570644 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 | 8.1003e+04 | 12514 | 1 | 1.545e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.397663356859454 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8436181766911458, dt = 0.0020073365174570644 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.41 us (1.4%)
patch tree reduce : 1.20 us (0.4%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 822.00 ns (0.3%)
LB compute : 300.64 us (95.1%)
LB move op cnt : 0
LB apply : 3.69 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (66.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.682036119546108
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6001848460701984e-05,-8.556608747315157e-06,1.1705889193620825e-08)
sum a = (3.5305221179066725e-06,1.005100703888051e-05,2.1999559981601802e-07)
sum e = 0.010440710099858128
sum de = -1.9203138307923e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.98e-03 |
| force | 8.41e-03 |
| divB_cleaning | 2.68e-03 |
+---------------+----------+
Info: cfl dt = 0.0019832811771289256 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 | 5.8510e+04 | 12514 | 1 | 2.139e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.78730690659041 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8456255132086029, dt = 0.0019832811771289256 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.31 us (1.3%)
patch tree reduce : 1.09 us (0.3%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 821.00 ns (0.2%)
LB compute : 313.77 us (95.4%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (65.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6808374620425117
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.599488161088331e-05,-8.536422013878845e-06,1.2160579606116351e-08)
sum a = (3.6091359794246444e-06,1.0181360765283164e-05,2.3801550305868647e-07)
sum e = 0.010443035027039848
sum de = -1.4418850507484119e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.96e-03 |
| force | 8.40e-03 |
| divB_cleaning | 2.68e-03 |
+---------------+----------+
Info: cfl dt = 0.001961323325836968 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 | 7.1449e+04 | 12514 | 1 | 1.751e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.76503874624209 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8476087943857318, dt = 0.001961323325836968 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.51 us (1.4%)
patch tree reduce : 1.05 us (0.3%)
gen split merge : 591.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 314.71 us (95.2%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (66.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6791593415374786
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.598772497160479e-05,-8.516323809475323e-06,1.2645274231633716e-08)
sum a = (3.758155693932883e-06,1.0271440690857491e-05,2.519866384967847e-07)
sum e = 0.010445320375568706
sum de = -9.62112340271707e-06
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.94e-03 |
| force | 8.38e-03 |
| divB_cleaning | 2.68e-03 |
+---------------+----------+
Info: cfl dt = 0.0019415245127772187 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 | 7.9526e+04 | 12514 | 1 | 1.574e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.87104790810223 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8495701177115688, dt = 0.00042988228843166 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.23 us (1.3%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 621.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 812.00 ns (0.2%)
LB compute : 313.72 us (95.5%)
LB move op cnt : 0
LB apply : 3.15 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.21 us (69.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.679638804538917
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5985963269113763e-05,-8.511819961115897e-06,1.2767299781356458e-08)
sum a = (3.776342725062222e-06,1.028538558808428e-05,2.5588132348985156e-07)
sum e = 0.01044561658520147
sum de = -8.424886278345858e-06
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.94e-03 |
| force | 8.39e-03 |
| divB_cleaning | 2.68e-03 |
+---------------+----------+
Info: cfl dt = 0.0019376064705395456 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 | 5.4179e+04 | 12514 | 1 | 2.310e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.700135002926638 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 530 [SPH][rank=0]
Info: time since start : 226.854747003 (s) [SPH][rank=0]
Info: dump to _to_trash/orztang_00034.vtk [VTK Dump][rank=0]
- took 2.09 ms, bandwidth = 335.92 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 972.56 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 965.90 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/rho_slice_0000034.npy
Saving metadata to _to_trash/plots/rho_slice_0000034.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 962.04 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/vy_slice_0000034.npy
Saving metadata to _to_trash/plots/vy_slice_0000034.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.005714816 s
Info: compute_slice took 970.48 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/By_slice_0000034.npy
Saving metadata to _to_trash/plots/By_slice_0000034.json
Info: evolve_until (target_time = 0.88s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.8500000000000004, dt = 0.0019376064705395456 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.31 us (2.4%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 365.09 us (94.3%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (68.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6774812210324446
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5978642293873522e-05,-8.491887934116574e-06,1.32639342174894e-08)
sum a = (4.019701940948771e-06,1.0307888462904782e-05,2.6533257141598753e-07)
sum e = 0.010448057928279044
sum de = -3.648447936200979e-06
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.92e-03 |
| force | 8.56e-03 |
| divB_cleaning | 2.68e-03 |
+---------------+----------+
Info: cfl dt = 0.0019196552799393563 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 | 7.7390e+04 | 12514 | 1 | 1.617e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.13751267495924 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.85193760647054, dt = 0.0019196552799393563 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.5%)
patch tree reduce : 1.39 us (0.4%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 344.40 us (95.1%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (69.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.676282563528849
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.597069008462303e-05,-8.472078540745537e-06,1.3782437688716482e-08)
sum a = (4.285812909246731e-06,1.0227550122070028e-05,2.879339459984859e-07)
sum e = 0.010450270650101458
sum de = 9.378732174016881e-07
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.90e-03 |
| force | 8.48e-03 |
| divB_cleaning | 2.68e-03 |
+---------------+----------+
Info: cfl dt = 0.0019044675383060013 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 | 8.1542e+04 | 12514 | 1 | 1.535e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.030678376009284 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8538572617504793, dt = 0.0019044675383060013 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.04 us (1.6%)
patch tree reduce : 1.16 us (0.4%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 291.31 us (94.5%)
LB move op cnt : 0
LB apply : 3.06 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (67.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6724468595173416
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5962272472399444e-05,-8.452677614501753e-06,1.435249196607216e-08)
sum a = (4.585973115687076e-06,1.0060636275892751e-05,3.0961301132911226e-07)
sum e = 0.01045245186551623
sum de = 5.595441713151532e-06
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.11e-03 |
| force | 8.44e-03 |
| divB_cleaning | 2.68e-03 |
+---------------+----------+
Info: cfl dt = 0.0021079688762339495 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 | 7.2805e+04 | 12514 | 1 | 1.719e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.887949139139096 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8557617292887852, dt = 0.0021079688762339495 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.08 us (1.7%)
patch tree reduce : 1.11 us (0.4%)
gen split merge : 701.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 290.47 us (94.7%)
LB move op cnt : 0
LB apply : 3.20 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (68.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.671967396515904
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.595231956111946e-05,-8.431629047357436e-06,1.5025790095722463e-08)
sum a = (4.967749838095638e-06,9.788351078601295e-06,3.205992062539178e-07)
sum e = 0.010454901111250506
sum de = 1.0680930382413919e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.06e-03 |
| force | 8.49e-03 |
| divB_cleaning | 2.68e-03 |
+---------------+----------+
Info: cfl dt = 0.002064856662523508 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 | 5.8535e+04 | 12514 | 1 | 2.138e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.49682999404719 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8578696981650192, dt = 0.002064856662523508 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.4%)
patch tree reduce : 1.20 us (0.3%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 342.58 us (95.3%)
LB move op cnt : 0
LB apply : 3.34 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (65.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6695700815087116
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5941659483044253e-05,-8.411704489778977e-06,1.5699360781240347e-08)
sum a = (5.359773812999107e-06,9.458529642573357e-06,3.1603983262349147e-07)
sum e = 0.010457232353080737
sum de = 1.568534291399876e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.06e-03 |
| force | 8.43e-03 |
| divB_cleaning | 2.68e-03 |
+---------------+----------+
Info: cfl dt = 0.0020646457651337944 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 | 8.0432e+04 | 12514 | 1 | 1.556e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.777926568910225 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8599345548275428, dt = 0.0020646457651337944 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.01 us (1.6%)
patch tree reduce : 1.24 us (0.4%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 289.89 us (94.5%)
LB move op cnt : 0
LB apply : 3.27 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (69.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.66980981300943
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.593018871208094e-05,-8.3925164936029e-06,1.6347163856771444e-08)
sum a = (5.75762015292125e-06,9.04984668368025e-06,3.010140090993719e-07)
sum e = 0.010459556225120794
sum de = 2.0824701272044167e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.04e-03 |
| force | 8.34e-03 |
| divB_cleaning | 2.69e-03 |
+---------------+----------+
Info: cfl dt = 0.0020364418219062166 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 | 6.3577e+04 | 12514 | 1 | 1.968e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.76181261096898 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8619992005926765, dt = 0.0020364418219062166 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.91 us (1.5%)
patch tree reduce : 1.31 us (0.4%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 313.11 us (94.7%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6681316925043945
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5918052947726528e-05,-8.374508900104594e-06,1.694464987242797e-08)
sum a = (6.10515277157325e-06,8.595933569936273e-06,2.839640269048803e-07)
sum e = 0.010461825753664061
sum de = 2.600046313610268e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.01e-03 |
| force | 8.35e-03 |
| divB_cleaning | 2.69e-03 |
+---------------+----------+
Info: cfl dt = 0.0020100204969333555 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 | 6.2009e+04 | 12514 | 1 | 2.018e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.32705346457222 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8640356424145827, dt = 0.0020100204969333555 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.82 us (1.5%)
patch tree reduce : 1.13 us (0.4%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 303.52 us (94.9%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6678919610036744
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5905427600539183e-05,-8.357693081262727e-06,1.7498062738496404e-08)
sum a = (6.444488980956036e-06,8.065148284695009e-06,2.646464900153659e-07)
sum e = 0.010464049044244394
sum de = 3.121261885822488e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 1.99e-03 |
| force | 8.45e-03 |
| divB_cleaning | 2.69e-03 |
+---------------+----------+
Info: cfl dt = 0.00198958384461627 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 | 5.5757e+04 | 12514 | 1 | 2.244e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.24064728436616 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8660456629115161, dt = 0.00198958384461627 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.79 us (1.3%)
patch tree reduce : 1.16 us (0.3%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 344.59 us (95.3%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (66.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.66957008150871
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5892264713007827e-05,-8.342180237182478e-06,1.8005184797016436e-08)
sum a = (6.736332674348769e-06,7.5312017187903974e-06,2.3634501021305494e-07)
sum e = 0.010466233835834777
sum de = 3.646233992673725e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.15e-03 |
| force | 8.30e-03 |
| divB_cleaning | 2.69e-03 |
+---------------+----------+
Info: cfl dt = 0.002151281701767675 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 | 8.1377e+04 | 12514 | 1 | 1.538e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.576641713332315 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8680352467561323, dt = 0.002151281701767675 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.06 us (1.6%)
patch tree reduce : 1.18 us (0.4%)
gen split merge : 632.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 293.00 us (94.6%)
LB move op cnt : 0
LB apply : 3.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (64.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6683714240051137
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5877482640039585e-05,-8.326509666463521e-06,1.8485475409295153e-08)
sum a = (7.045549794376208e-06,6.949729723908228e-06,1.9539296476864975e-07)
sum e = 0.01046861829841411
sum de = 4.217978070536604e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.14e-03 |
| force | 8.05e-03 |
| divB_cleaning | 2.69e-03 |
+---------------+----------+
Info: cfl dt = 0.0021387472103935033 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 | 6.6683e+04 | 12514 | 1 | 1.877e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.2683631657912 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8701865284579, dt = 0.0021387472103935033 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.79 us (1.5%)
patch tree reduce : 1.37 us (0.4%)
gen split merge : 621.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 313.39 us (94.9%)
LB move op cnt : 0
LB apply : 3.21 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6652549144957662
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.586208138350526e-05,-8.312271406434703e-06,1.8859321874617263e-08)
sum a = (7.333073044116401e-06,6.403775573714988e-06,1.6052922357773942e-07)
sum e = 0.01047092863484693
sum de = 4.7805147240236626e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.15e-03 |
| force | 7.93e-03 |
| divB_cleaning | 2.69e-03 |
+---------------+----------+
Info: cfl dt = 0.0021478590556291846 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 | 6.9006e+04 | 12514 | 1 | 1.813e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.457312795260115 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8723252756682935, dt = 0.0021478590556291846 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.61 us (1.4%)
patch tree reduce : 1.18 us (0.4%)
gen split merge : 672.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 320.03 us (95.4%)
LB move op cnt : 0
LB apply : 3.08 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (67.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6611794789835383
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.584602350638759e-05,-8.299100828036263e-06,1.9166833656563916e-08)
sum a = (7.65097992109409e-06,5.933315243404723e-06,1.3518624353415026e-07)
sum e = 0.010473230865267085
sum de = 5.335831878495205e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.19e-03 |
| force | 8.01e-03 |
| divB_cleaning | 2.69e-03 |
+---------------+----------+
Info: cfl dt = 0.0021899651584060538 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 | 8.0521e+04 | 12514 | 1 | 1.554e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.753356363390836 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8744731347239227, dt = 0.0005268652760777037 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.40 us (1.5%)
patch tree reduce : 1.21 us (0.4%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.3%)
LB compute : 277.94 us (94.4%)
LB move op cnt : 0
LB apply : 3.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (69.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6604602844813816
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5841651061156985e-05,-8.296480011502839e-06,1.9210842019493472e-08)
sum a = (7.741125857490094e-06,5.843788699442542e-06,1.3325077106845834e-07)
sum e = 0.01047355128298657
sum de = 5.472277284966856e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.18e-03 |
| force | 8.06e-03 |
| divB_cleaning | 2.69e-03 |
+---------------+----------+
Info: cfl dt = 0.0021823757119728885 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 | 6.9845e+04 | 12514 | 1 | 1.792e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.586160534798163 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 543 [SPH][rank=0]
Info: time since start : 233.20348763 (s) [SPH][rank=0]
Info: dump to _to_trash/orztang_00035.vtk [VTK Dump][rank=0]
- took 2.34 ms, bandwidth = 300.18 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 969.35 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 973.36 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/rho_slice_0000035.npy
Saving metadata to _to_trash/plots/rho_slice_0000035.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 962.05 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/vy_slice_0000035.npy
Saving metadata to _to_trash/plots/vy_slice_0000035.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.005813835000000001 s
Info: compute_slice took 972.11 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/By_slice_0000035.npy
Saving metadata to _to_trash/plots/By_slice_0000035.json
Info: evolve_until (target_time = 0.90s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.8750000000000004, dt = 0.0021823757119728885 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.18 us (2.6%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 333.42 us (93.7%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (67.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6628575994885724
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5824733268720492e-05,-8.283750253193037e-06,1.9501135399257616e-08)
sum a = (8.124120732182082e-06,5.439511347838452e-06,1.219145817377544e-07)
sum e = 0.010476102064555123
sum de = 6.030518803564252e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.16e-03 |
| force | 8.41e-03 |
| divB_cleaning | 2.69e-03 |
+---------------+----------+
Info: cfl dt = 0.0021616307964392968 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 | 8.0780e+04 | 12514 | 1 | 1.549e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.71530149518862 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8771823757119733, dt = 0.0021616307964392968 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.90 us (1.5%)
patch tree reduce : 1.35 us (0.4%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 311.53 us (94.7%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (69.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6616589419849768
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5806753999795574e-05,-8.272433180481978e-06,1.9752299801546252e-08)
sum a = (8.580000123822172e-06,5.1476057692284386e-06,1.221827153144448e-07)
sum e = 0.010478361338332604
sum de = 6.523711952615576e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.13e-03 |
| force | 8.67e-03 |
| divB_cleaning | 2.69e-03 |
+---------------+----------+
Info: cfl dt = 0.0021292561658959788 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 | 7.8418e+04 | 12514 | 1 | 1.596e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.764369926667364 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8793440065084126, dt = 0.0021292561658959788 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.04 us (1.5%)
patch tree reduce : 1.18 us (0.4%)
gen split merge : 632.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 318.35 us (94.8%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (68.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6642959884928885
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5787992260162158e-05,-8.26178810520277e-06,2.0012747904393824e-08)
sum a = (9.080795013531384e-06,4.967350252611133e-06,1.2351576543683676e-07)
sum e = 0.01048055603030678
sum de = 6.99017674347084e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.19e-03 |
| force | 8.75e-03 |
| divB_cleaning | 2.69e-03 |
+---------------+----------+
Info: cfl dt = 0.0021884294682061574 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 | 7.9520e+04 | 12514 | 1 | 1.574e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.70894564317477 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8814732626743086, dt = 0.0021884294682061574 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.25 us (1.4%)
patch tree reduce : 1.06 us (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 298.18 us (95.3%)
LB move op cnt : 0
LB apply : 2.87 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (66.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.665254914495765
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5767586420456692e-05,-8.251109314616245e-06,2.0284472647860078e-08)
sum a = (9.661256513756033e-06,4.879391141291481e-06,1.2478017386215582e-07)
sum e = 0.010482807707399814
sum de = 7.420857840079212e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.17e-03 |
| force | 8.76e-03 |
| divB_cleaning | 2.69e-03 |
+---------------+----------+
Info: cfl dt = 0.0021660883353980735 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 | 6.5416e+04 | 12514 | 1 | 1.913e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.18315720052377 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8836616921425148, dt = 0.0021660883353980735 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.51 us (1.4%)
patch tree reduce : 1.14 us (0.4%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 731.00 ns (0.2%)
LB compute : 300.01 us (95.0%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.57 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6645357199936077
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5746024135890797e-05,-8.24063636853705e-06,2.0556141061280836e-08)
sum a = (1.0287079591274255e-05,4.894335870846037e-06,1.3222135227401644e-07)
sum e = 0.010484991657250973
sum de = 7.790909946926791e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.14e-03 |
| force | 8.88e-03 |
| divB_cleaning | 2.69e-03 |
+---------------+----------+
Info: cfl dt = 0.0021449863602300903 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 | 6.0633e+04 | 12514 | 1 | 2.064e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.78270612331765 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8858277804779129, dt = 0.0021449863602300903 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.80 us (1.1%)
patch tree reduce : 1.01 us (0.3%)
gen split merge : 531.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 611.00 ns (0.2%)
LB compute : 320.64 us (95.8%)
LB move op cnt : 0
LB apply : 3.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (68.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6654946459964854
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.572328069644669e-05,-8.23012189904916e-06,2.08478131833198e-08)
sum a = (1.0898036622277428e-05,5.011539010254092e-06,1.3212795138728637e-07)
sum e = 0.010487128564706646
sum de = 8.098904310210457e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.12e-03 |
| force | 8.93e-03 |
| divB_cleaning | 2.69e-03 |
+---------------+----------+
Info: cfl dt = 0.0021221805372679966 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 | 6.5675e+04 | 12514 | 1 | 1.905e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.52545005434982 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.887972766838143, dt = 0.0021221805372679966 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.07 us (1.7%)
patch tree reduce : 1.16 us (0.4%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 275.73 us (94.5%)
LB move op cnt : 0
LB apply : 3.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (67.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.667891961003677
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.569949784798347e-05,-8.219360808932347e-06,2.1128112378368885e-08)
sum a = (1.1476261163645428e-05,5.230911367946612e-06,1.3165480455236546e-07)
sum e = 0.010489216891436871
sum de = 8.343628384589813e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.10e-03 |
| force | 8.87e-03 |
| divB_cleaning | 2.69e-03 |
+---------------+----------+
Info: cfl dt = 0.0020963753239706473 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 | 7.3124e+04 | 12514 | 1 | 1.711e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.64228103213127 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.890094947375411, dt = 0.0020963753239706473 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.6%)
patch tree reduce : 1.20 us (0.4%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 812.00 ns (0.2%)
LB compute : 314.37 us (94.9%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (68.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6712482020137442
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5674825748834503e-05,-8.208162081544443e-06,2.140360821041251e-08)
sum a = (1.2007002465668481e-05,5.523496014304683e-06,1.377286057245426e-07)
sum e = 0.010491254398131079
sum de = 8.528349729280144e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.16e-03 |
| force | 8.75e-03 |
| divB_cleaning | 2.69e-03 |
+---------------+----------+
Info: cfl dt = 0.00215710036140004 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 | 8.0479e+04 | 12514 | 1 | 1.555e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.535343234073615 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8921913226993816, dt = 0.00215710036140004 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.58 us (1.3%)
patch tree reduce : 972.00 ns (0.3%)
gen split merge : 632.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 642.00 ns (0.2%)
LB compute : 326.76 us (95.5%)
LB move op cnt : 0
LB apply : 3.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (70.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.67292632251878
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5648369122992073e-05,-8.195940662679647e-06,2.1707069119045917e-08)
sum a = (1.2519094136771627e-05,5.8457234228300815e-06,1.4363853935663497e-07)
sum e = 0.010493345307287686
sum de = 8.664793915380831e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.17e-03 |
| force | 8.70e-03 |
| divB_cleaning | 2.70e-03 |
+---------------+----------+
Info: cfl dt = 0.0021663411726318086 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 | 8.1396e+04 | 12514 | 1 | 1.537e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.51026773853618 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8943484230607817, dt = 0.0021663411726318086 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.75 us (1.5%)
patch tree reduce : 1.14 us (0.4%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 291.27 us (94.6%)
LB move op cnt : 0
LB apply : 3.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6717276650151836
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5620696177355072e-05,-8.182929292915254e-06,2.2024613360817767e-08)
sum a = (1.2986277476658894e-05,6.1903557397320174e-06,1.4561114224998275e-07)
sum e = 0.010495409445510757
sum de = 8.746851898390642e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.16e-03 |
| force | 8.61e-03 |
| divB_cleaning | 2.70e-03 |
+---------------+----------+
Info: cfl dt = 0.002160909077325488 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 | 8.1887e+04 | 12514 | 1 | 1.528e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.03260906662273 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8965147642334135, dt = 0.002160909077325488 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.87 us (1.6%)
patch tree reduce : 1.49 us (0.5%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 290.47 us (94.5%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (68.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6724468595173407
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5592127973222892e-05,-8.16917920141672e-06,2.234140246529809e-08)
sum a = (1.3421496901506125e-05,6.527277840214153e-06,1.4488139797917818e-07)
sum e = 0.010497441988944632
sum de = 8.780525565314525e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.16e-03 |
| force | 8.55e-03 |
| divB_cleaning | 2.71e-03 |
+---------------+----------+
Info: cfl dt = 0.002156689974352927 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 | 8.1754e+04 | 12514 | 1 | 1.531e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.82202530667676 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8986756733107389, dt = 0.0013243266892615235 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.44 us (1.4%)
patch tree reduce : 1.46 us (0.5%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 290.95 us (94.7%)
LB move op cnt : 0
LB apply : 3.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (65.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6760428320281293
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5573883291863488e-05,-8.160170924151868e-06,2.2532484311909968e-08)
sum a = (1.3661740775978397e-05,6.716716673367205e-06,1.4325819866817982e-07)
sum e = 0.010498528918028188
sum de = 8.775921319967948e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.16e-03 |
| force | 8.56e-03 |
| divB_cleaning | 2.71e-03 |
+---------------+----------+
Info: cfl dt = 0.0021564472552478937 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 | 6.2761e+04 | 12514 | 1 | 1.994e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.910680538422344 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 555 [SPH][rank=0]
Info: time since start : 239.263679953 (s) [SPH][rank=0]
Info: dump to _to_trash/orztang_00036.vtk [VTK Dump][rank=0]
- took 2.32 ms, bandwidth = 302.42 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 981.50 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 965.07 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/rho_slice_0000036.npy
Saving metadata to _to_trash/plots/rho_slice_0000036.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 993.35 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/vy_slice_0000036.npy
Saving metadata to _to_trash/plots/vy_slice_0000036.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.005686885 s
Info: compute_slice took 975.49 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/By_slice_0000036.npy
Saving metadata to _to_trash/plots/By_slice_0000036.json
Info: evolve_until (target_time = 0.93s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.9000000000000005, dt = 0.0021564472552478937 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.19 us (2.6%)
patch tree reduce : 1.65 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 371.01 us (94.1%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (68.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6758031005274105
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5544263387777817e-05,-8.145561239466079e-06,2.2840338238135114e-08)
sum a = (1.4030243187146633e-05,7.016950122519706e-06,1.4282133889466456e-07)
sum e = 0.010500670188216517
sum de = 8.770785298305239e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.18e-03 |
| force | 8.49e-03 |
| divB_cleaning | 2.72e-03 |
+---------------+----------+
Info: cfl dt = 0.0021791266963912706 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 | 6.7981e+04 | 12514 | 1 | 1.841e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.172901592142935 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9021564472552484, dt = 0.0021791266963912706 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.71 us (1.4%)
patch tree reduce : 1.16 us (0.3%)
gen split merge : 632.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 325.65 us (95.2%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (66.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6748441745245333
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5513292382285303e-05,-8.129946697327893e-06,2.3151092998005055e-08)
sum a = (1.4317585888887304e-05,7.289772251777774e-06,1.446534572821645e-07)
sum e = 0.010502676549927302
sum de = 8.716053658631185e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.20e-03 |
| force | 8.52e-03 |
| divB_cleaning | 2.72e-03 |
+---------------+----------+
Info: cfl dt = 0.002199479664727147 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 | 8.0187e+04 | 12514 | 1 | 1.561e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.2683221479528 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9043355739516397, dt = 0.002199479664727147 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.88 us (1.2%)
patch tree reduce : 1.05 us (0.3%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 611.00 ns (0.2%)
LB compute : 322.34 us (96.1%)
LB move op cnt : 0
LB apply : 2.78 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (66.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.677241489531726
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5481488065198384e-05,-8.113615734506979e-06,2.3471251544773898e-08)
sum a = (1.452793692572093e-05,7.537965974291498e-06,1.5167624067861822e-07)
sum e = 0.010504683085869566
sum de = 8.653808855155823e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.17e-03 |
| force | 8.65e-03 |
| divB_cleaning | 2.73e-03 |
+---------------+----------+
Info: cfl dt = 0.002167632360659558 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 | 6.9619e+04 | 12514 | 1 | 1.798e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.05055583766792 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9065350536163668, dt = 0.002167632360659558 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.45 us (1.2%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.2%)
LB compute : 356.94 us (95.6%)
LB move op cnt : 0
LB apply : 3.54 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (69.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.681077193543232
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.544976550757058e-05,-8.097003247004862e-06,2.380775310704734e-08)
sum a = (1.4665057810851966e-05,7.756725907824627e-06,1.645962475764198e-07)
sum e = 0.010506635621188259
sum de = 8.578109908884338e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.11e-03 |
| force | 8.69e-03 |
| divB_cleaning | 2.73e-03 |
+---------------+----------+
Info: cfl dt = 0.0021121922264612644 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 | 8.1017e+04 | 12514 | 1 | 1.545e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.5207959616286 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9087026859770263, dt = 0.0021121922264612644 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.71 us (1.3%)
patch tree reduce : 1.11 us (0.3%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 354.51 us (95.7%)
LB move op cnt : 0
LB apply : 3.07 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (65.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6817963880453903
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.541864147262819e-05,-8.080382455284013e-06,2.4169414934208797e-08)
sum a = (1.4761658583206924e-05,7.95151650262212e-06,1.818750300879327e-07)
sum e = 0.010508521942510084
sum de = 8.496939272823674e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.07e-03 |
| force | 8.66e-03 |
| divB_cleaning | 2.73e-03 |
+---------------+----------+
Info: cfl dt = 0.002067061904664847 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 | 8.0950e+04 | 12514 | 1 | 1.546e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.18797651576207 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9108148782034876, dt = 0.002067061904664847 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.17 us (1.3%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.39 us (0.4%)
LB compute : 310.35 us (95.0%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (67.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6813169250439506
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5388026190820867e-05,-8.063740460846969e-06,2.4563609935365482e-08)
sum a = (1.482045107147552e-05,8.103670964448154e-06,1.963617564487077e-07)
sum e = 0.010510361432015163
sum de = 8.413166032774562e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.18e-03 |
| force | 8.70e-03 |
| divB_cleaning | 2.74e-03 |
+---------------+----------+
Info: cfl dt = 0.0021773482028128533 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 | 8.1877e+04 | 12514 | 1 | 1.528e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.68775509922061 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9128819401081525, dt = 0.0021773482028128533 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.7%)
patch tree reduce : 1.17 us (0.4%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.3%)
LB compute : 291.57 us (94.7%)
LB move op cnt : 0
LB apply : 3.57 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (69.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.679159341537478
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5355696144459177e-05,-8.045938691090628e-06,2.5006130332961588e-08)
sum a = (1.4864425381500712e-05,8.193627196902654e-06,2.0844259000977924e-07)
sum e = 0.010512324471397844
sum de = 8.320695906754526e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.15e-03 |
| force | 8.60e-03 |
| divB_cleaning | 2.74e-03 |
+---------------+----------+
Info: cfl dt = 0.0021545066914933674 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 | 8.0949e+04 | 12514 | 1 | 1.546e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.70455642523798 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9150592883109654, dt = 0.0021545066914933674 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.6%)
patch tree reduce : 1.20 us (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 324.75 us (94.9%)
LB move op cnt : 0
LB apply : 3.30 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (65.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6798785360396358
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.532362276681712e-05,-8.028187533446434e-06,2.546837337855112e-08)
sum a = (1.4909668948755722e-05,8.198966412121977e-06,2.3166985034412343e-07)
sum e = 0.010514235765501942
sum de = 8.218226003317775e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.18e-03 |
| force | 8.53e-03 |
| divB_cleaning | 2.75e-03 |
+---------------+----------+
Info: cfl dt = 0.002182321508769523 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 | 5.5799e+04 | 12514 | 1 | 2.243e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.58454788484979 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9172137950024588, dt = 0.002182321508769523 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.5%)
patch tree reduce : 1.27 us (0.3%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 365.75 us (95.1%)
LB move op cnt : 0
LB apply : 3.31 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (67.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6834745085504235
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5291036336797252e-05,-8.010289001008359e-06,2.5998973119798554e-08)
sum a = (1.4943357059038575e-05,8.147389500997677e-06,2.4834087982805493e-07)
sum e = 0.010516180069879788
sum de = 8.108453353142134e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.15e-03 |
| force | 8.52e-03 |
| divB_cleaning | 2.75e-03 |
+---------------+----------+
Info: cfl dt = 0.002147791306615967 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 | 8.1065e+04 | 12514 | 1 | 1.544e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.89294351542096 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9193961165112283, dt = 0.002147791306615967 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.36 us (1.2%)
patch tree reduce : 1.21 us (0.3%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 343.87 us (95.4%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (66.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6846731660540195
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.525890436527043e-05,-7.992846387367698e-06,2.6550548275678568e-08)
sum a = (1.4995060106846944e-05,8.034096914215212e-06,2.644738214239821e-07)
sum e = 0.010518081719652387
sum de = 7.98500845241042e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.17e-03 |
| force | 8.57e-03 |
| divB_cleaning | 2.76e-03 |
+---------------+----------+
Info: cfl dt = 0.002165392703009446 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 | 8.0673e+04 | 12514 | 1 | 1.551e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.84579074203224 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9215439078178443, dt = 0.002165392703009446 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.72 us (1.5%)
patch tree reduce : 1.22 us (0.4%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 295.24 us (94.5%)
LB move op cnt : 0
LB apply : 3.88 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (65.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.683474508550423
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5226378647855473e-05,-7.975571076950918e-06,2.7140563054582275e-08)
sum a = (1.505946887293456e-05,7.858043501493604e-06,2.690897648518609e-07)
sum e = 0.01052001283648399
sum de = 7.849117456139334e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.15e-03 |
| force | 8.69e-03 |
| divB_cleaning | 2.76e-03 |
+---------------+----------+
Info: cfl dt = 0.00214806629052563 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 | 8.1153e+04 | 12514 | 1 | 1.542e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.55316547175468 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9237093005208538, dt = 0.0012906994791467286 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.53 us (1.2%)
patch tree reduce : 962.00 ns (0.3%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 350.38 us (95.7%)
LB move op cnt : 0
LB apply : 3.36 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6822758510468274
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5206871664088924e-05,-7.965619316684291e-06,2.749287473902855e-08)
sum a = (1.5094281645647352e-05,7.717479021455088e-06,2.7635313796970604e-07)
sum e = 0.010521025469242178
sum de = 7.754442487340591e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.14e-03 |
| force | 8.65e-03 |
| divB_cleaning | 2.76e-03 |
+---------------+----------+
Info: cfl dt = 0.0021405790449925384 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 | 8.1028e+04 | 12514 | 1 | 1.544e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.08602396894758 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 567 [SPH][rank=0]
Info: time since start : 245.298822112 (s) [SPH][rank=0]
Info: dump to _to_trash/orztang_00037.vtk [VTK Dump][rank=0]
- took 2.29 ms, bandwidth = 305.59 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 991.58 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 982.97 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/rho_slice_0000037.npy
Saving metadata to _to_trash/plots/rho_slice_0000037.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 956.29 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/vy_slice_0000037.npy
Saving metadata to _to_trash/plots/vy_slice_0000037.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.006419124 s
Info: compute_slice took 970.85 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/By_slice_0000037.npy
Saving metadata to _to_trash/plots/By_slice_0000037.json
Info: evolve_until (target_time = 0.95s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.9250000000000005, dt = 0.0021405790449925384 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.00 us (2.3%)
patch tree reduce : 1.66 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 375.59 us (94.2%)
LB move op cnt : 0
LB apply : 3.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (69.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.680118267540354
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5174538694685216e-05,-7.949190156061691e-06,2.8089117891134285e-08)
sum a = (1.5130854459304388e-05,7.456534272061895e-06,2.948015370283261e-07)
sum e = 0.010523074905455959
sum de = 7.62769193713398e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.13e-03 |
| force | 8.51e-03 |
| divB_cleaning | 2.77e-03 |
+---------------+----------+
Info: cfl dt = 0.0021348612638816887 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 | 6.9377e+04 | 12514 | 1 | 1.804e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.72192514243491 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.927140579044993, dt = 0.0021348612638816887 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.91 us (1.5%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 642.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 320.89 us (95.0%)
LB move op cnt : 0
LB apply : 3.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (65.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6784401470353205
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5142197276111474e-05,-7.933550776312201e-06,2.8738223401288285e-08)
sum a = (1.5163469690898724e-05,7.213316450093427e-06,3.129419270980156e-07)
sum e = 0.0105249978436469
sum de = 7.474784576705063e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.09e-03 |
| force | 8.52e-03 |
| divB_cleaning | 2.78e-03 |
+---------------+----------+
Info: cfl dt = 0.0020852259077557703 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 | 7.6322e+04 | 12514 | 1 | 1.640e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.87303827215216 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9292754403088748, dt = 0.0020852259077557703 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.07 us (1.1%)
patch tree reduce : 1.16 us (0.3%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.2%)
LB compute : 343.53 us (95.7%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (68.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.678679878536041
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5110543201763255e-05,-7.918769000123614e-06,2.9410141623331862e-08)
sum a = (1.5158824505370292e-05,6.985954187182816e-06,3.278827884825724e-07)
sum e = 0.010526879537480984
sum de = 7.342783388249272e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.12e-03 |
| force | 8.47e-03 |
| divB_cleaning | 2.78e-03 |
+---------------+----------+
Info: cfl dt = 0.0021153206917106605 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 | 7.6221e+04 | 12514 | 1 | 1.642e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.72278009677752 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9313606662166305, dt = 0.0021153206917106605 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.57 us (1.4%)
patch tree reduce : 1.52 us (0.5%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 312.80 us (95.1%)
LB move op cnt : 0
LB apply : 3.17 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (68.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6805977305417934
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5078482269755705e-05,-7.904228517520259e-06,3.011929640588621e-08)
sum a = (1.5109327025496146e-05,6.78176575312391e-06,3.352798005178745e-07)
sum e = 0.010528819176973282
sum de = 7.228682439741785e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.09e-03 |
| force | 8.39e-03 |
| divB_cleaning | 2.79e-03 |
+---------------+----------+
Info: cfl dt = 0.002090957295248066 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 | 8.1050e+04 | 12514 | 1 | 1.544e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.32145476258239 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9334759869083411, dt = 0.002090957295248066 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.09 us (1.6%)
patch tree reduce : 1.22 us (0.4%)
gen split merge : 622.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 292.23 us (94.6%)
LB move op cnt : 0
LB apply : 3.21 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (67.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.677481221032444
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5046941663706981e-05,-7.890264096953261e-06,3.082817567703608e-08)
sum a = (1.5031501185397185e-05,6.570728333104867e-06,3.4227230192441686e-07)
sum e = 0.01053074462208024
sum de = 7.13651054117021e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.05e-03 |
| force | 8.42e-03 |
| divB_cleaning | 2.80e-03 |
+---------------+----------+
Info: cfl dt = 0.002050076674027694 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 | 5.6937e+04 | 12514 | 1 | 2.198e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.249002654838925 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9355669442035892, dt = 0.002050076674027694 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.5%)
patch tree reduce : 1.18 us (0.3%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 341.30 us (95.0%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (67.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6808374620425117
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5016207299005374e-05,-7.877014235183171e-06,3.153717065029107e-08)
sum a = (1.4933301481240525e-05,6.351791210735336e-06,3.490497473131058e-07)
sum e = 0.010532649014655594
sum de = 7.069751956850117e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.12e-03 |
| force | 8.54e-03 |
| divB_cleaning | 2.80e-03 |
+---------------+----------+
Info: cfl dt = 0.0021200187947605464 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 | 8.1925e+04 | 12514 | 1 | 1.527e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.31633352567511 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9376170208776169, dt = 0.0021200187947605464 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.45 us (1.3%)
patch tree reduce : 1.25 us (0.4%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.2%)
LB compute : 322.44 us (95.3%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (66.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6849128975547405
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4984649077658665e-05,-7.86377273737989e-06,3.2284109816251814e-08)
sum a = (1.47907819429788e-05,6.143351721032271e-06,3.4846139742716864e-07)
sum e = 0.010534660942474216
sum de = 7.02436663470413e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.10e-03 |
| force | 8.79e-03 |
| divB_cleaning | 2.80e-03 |
+---------------+----------+
Info: cfl dt = 0.002104857835898718 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 | 8.1536e+04 | 12514 | 1 | 1.535e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.72742977937979 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9397370396723774, dt = 0.002104857835898718 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.89 us (1.4%)
patch tree reduce : 1.40 us (0.4%)
gen split merge : 642.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 323.65 us (94.7%)
LB move op cnt : 0
LB apply : 3.97 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (67.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.685392360556177
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4953667656436692e-05,-7.851062803188976e-06,3.301694786272673e-08)
sum a = (1.4590064142845357e-05,5.978362306551827e-06,3.485670037597e-07)
sum e = 0.010536668812758035
sum de = 6.996842946500177e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.15e-03 |
| force | 8.74e-03 |
| divB_cleaning | 2.80e-03 |
+---------------+----------+
Info: cfl dt = 0.0021540621470484303 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 | 6.8226e+04 | 12514 | 1 | 1.834e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.3123449533308 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9418418975082762, dt = 0.0021540621470484303 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.5%)
patch tree reduce : 1.17 us (0.3%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 328.09 us (95.0%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (69.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6863512865590544
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4922450992760863e-05,-7.838358678874345e-06,3.3767893994393735e-08)
sum a = (1.4341897161990866e-05,5.822913167563346e-06,3.5422015592806397e-07)
sum e = 0.010538762996414224
sum de = 6.985862427045829e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.13e-03 |
| force | 8.77e-03 |
| divB_cleaning | 2.81e-03 |
+---------------+----------+
Info: cfl dt = 0.002128487908491803 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 | 7.3412e+04 | 12514 | 1 | 1.705e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.491633840260555 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9439959596553246, dt = 0.002128487908491803 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.85 us (1.4%)
patch tree reduce : 1.39 us (0.4%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.2%)
LB compute : 337.83 us (95.4%)
LB move op cnt : 0
LB apply : 3.27 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (71.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6868307495604924
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4892191721616545e-05,-7.826132102158005e-06,3.4527935933779423e-08)
sum a = (1.4023512140797679e-05,5.716284255399066e-06,3.6509594727698265e-07)
sum e = 0.010540849543830309
sum de = 6.985529236034528e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.18e-03 |
| force | 8.76e-03 |
| divB_cleaning | 2.81e-03 |
+---------------+----------+
Info: cfl dt = 0.0021802980615336616 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 | 8.1528e+04 | 12514 | 1 | 1.535e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.92132763321965 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9461244475638164, dt = 0.0021802980615336616 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.66 us (1.3%)
patch tree reduce : 1.12 us (0.3%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 341.24 us (95.4%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (69.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6834745085504252
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4861955124613937e-05,-7.813782377851457e-06,3.533552841509198e-08)
sum a = (1.3604678566304651e-05,5.637125270471828e-06,3.6129505461261546e-07)
sum e = 0.010543033431253047
sum de = 6.997047947539306e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.22e-03 |
| force | 8.81e-03 |
| divB_cleaning | 2.82e-03 |
+---------------+----------+
Info: cfl dt = 0.002215694206880211 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 | 7.8647e+04 | 12514 | 1 | 1.591e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.32919468982463 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.94830474562535, dt = 0.0016952543746504567 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.58 us (1.3%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 343.45 us (95.4%)
LB move op cnt : 0
LB apply : 3.42 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (69.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6822758510468274
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.483934832477409e-05,-7.804312311667137e-06,3.594387189750944e-08)
sum a = (1.3228044911921202e-05,5.5689451015810106e-06,3.4863883953837314e-07)
sum e = 0.010544674019598169
sum de = 7.008235990155787e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.19e-03 |
| force | 8.79e-03 |
| divB_cleaning | 2.83e-03 |
+---------------+----------+
Info: cfl dt = 0.0021865179956243046 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 | 6.7073e+04 | 12514 | 1 | 1.866e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.710639764262126 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 579 [SPH][rank=0]
Info: time since start : 251.38224102700002 (s) [SPH][rank=0]
Info: dump to _to_trash/orztang_00038.vtk [VTK Dump][rank=0]
- took 2.30 ms, bandwidth = 304.87 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 997.26 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 969.22 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/rho_slice_0000038.npy
Saving metadata to _to_trash/plots/rho_slice_0000038.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 967.87 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/vy_slice_0000038.npy
Saving metadata to _to_trash/plots/vy_slice_0000038.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.005702996 s
Info: compute_slice took 973.13 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/By_slice_0000038.npy
Saving metadata to _to_trash/plots/By_slice_0000038.json
Info: evolve_until (target_time = 0.98s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.9500000000000005, dt = 0.0021865179956243046 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.87 us (2.3%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 363.67 us (94.0%)
LB move op cnt : 0
LB apply : 4.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (69.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6827553140482667
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4810744211452337e-05,-7.792193504350714e-06,3.669544924214815e-08)
sum a = (1.2695726349261119e-05,5.471582055472409e-06,3.3619189052346157e-07)
sum e = 0.010546993753471245
sum de = 7.044728396904785e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.25e-03 |
| force | 8.77e-03 |
| divB_cleaning | 2.84e-03 |
+---------------+----------+
Info: cfl dt = 0.002250421428296411 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 | 8.1184e+04 | 12514 | 1 | 1.541e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.065773933908375 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9521865179956248, dt = 0.002250421428296411 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.91 us (1.4%)
patch tree reduce : 1.21 us (0.3%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 343.37 us (95.3%)
LB move op cnt : 0
LB apply : 3.32 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (67.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.681316925043951
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4782755438886564e-05,-7.779986581872778e-06,3.7438414937595626e-08)
sum a = (1.2092491517364377e-05,5.346954488158539e-06,3.185092274986859e-07)
sum e = 0.010549356423462627
sum de = 7.082239713678042e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.24e-03 |
| force | 8.72e-03 |
| divB_cleaning | 2.84e-03 |
+---------------+----------+
Info: cfl dt = 0.0022368526096042405 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 | 7.8557e+04 | 12514 | 1 | 1.593e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.85766815261315 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9544369394239213, dt = 0.0022368526096042405 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.6%)
patch tree reduce : 1.20 us (0.4%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 314.16 us (95.1%)
LB move op cnt : 0
LB apply : 3.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6813169250439506
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4756385083975189e-05,-7.768166465046235e-06,3.813097641241911e-08)
sum a = (1.1418384044363537e-05,5.224209893747033e-06,2.8625343076634916e-07)
sum e = 0.010551731973017902
sum de = 7.142937930793423e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.21e-03 |
| force | 8.43e-03 |
| divB_cleaning | 2.85e-03 |
+---------------+----------+
Info: cfl dt = 0.002214026624518124 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 | 7.5420e+04 | 12514 | 1 | 1.659e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.53212906459793 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9566737920335255, dt = 0.002214026624518124 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.78 us (1.3%)
patch tree reduce : 1.09 us (0.3%)
gen split merge : 1.11 us (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 346.84 us (95.5%)
LB move op cnt : 0
LB apply : 3.37 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (68.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.68131692504395
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4731858417222142e-05,-7.756737206032568e-06,3.872867339794746e-08)
sum a = (1.0705614599742464e-05,5.058823538614643e-06,2.503793896761758e-07)
sum e = 0.010554123111427494
sum de = 7.220073783997997e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.19e-03 |
| force | 8.26e-03 |
| divB_cleaning | 2.85e-03 |
+---------------+----------+
Info: cfl dt = 0.002193069259571177 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 | 6.8220e+04 | 12514 | 1 | 1.834e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.450991033179655 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9588878186580436, dt = 0.002193069259571177 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.25 us (1.2%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 702.00 ns (0.2%)
LB compute : 350.45 us (95.9%)
LB move op cnt : 0
LB apply : 3.30 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (65.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.681077193543231
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4709169308202364e-05,-7.745825940537446e-06,3.923805969962554e-08)
sum a = (1.0017664878520703e-05,4.832646306328627e-06,1.8547866825985976e-07)
sum e = 0.010556533372087853
sum de = 7.31059657855374e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.24e-03 |
| force | 8.23e-03 |
| divB_cleaning | 2.85e-03 |
+---------------+----------+
Info: cfl dt = 0.002239356924937114 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 | 6.8242e+04 | 12514 | 1 | 1.834e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.0538095771635 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9610808879176148, dt = 0.002239356924937114 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.25 us (1.3%)
patch tree reduce : 1.35 us (0.4%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 321.63 us (95.5%)
LB move op cnt : 0
LB apply : 3.02 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.53 us (67.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6808374620425126
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4687490541677962e-05,-7.735251931733028e-06,3.958224675129005e-08)
sum a = (9.375338750582892e-06,4.535921182808399e-06,1.1160649690228145e-07)
sum e = 0.010559048676462022
sum de = 7.412956100396702e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.26e-03 |
| force | 8.37e-03 |
| divB_cleaning | 2.86e-03 |
+---------------+----------+
Info: cfl dt = 0.0022631943503129176 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 | 5.3894e+04 | 12514 | 1 | 2.322e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.71946097998992 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.963320244842552, dt = 0.0022631943503129176 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.90 us (1.3%)
patch tree reduce : 1.39 us (0.4%)
gen split merge : 722.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 353.12 us (95.4%)
LB move op cnt : 0
LB apply : 3.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (64.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6779606840338825
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4666991526716485e-05,-7.725318497269067e-06,3.975212086529253e-08)
sum a = (8.746527352943702e-06,4.206929431296322e-06,4.146361341341262e-08)
sum e = 0.010561631005258757
sum de = 7.51236089609897e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.22e-03 |
| force | 8.72e-03 |
| divB_cleaning | 2.86e-03 |
+---------------+----------+
Info: cfl dt = 0.0022212362715552524 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 | 6.4717e+04 | 12514 | 1 | 1.934e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.135629272759864 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9655834391928649, dt = 0.0022212362715552524 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.6%)
patch tree reduce : 1.27 us (0.4%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 317.93 us (94.7%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (64.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.675323637525971
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4648274984111349e-05,-7.716346199160934e-06,3.976484785854291e-08)
sum a = (8.20081530336222e-06,3.895925021004053e-06,-5.48092456209928e-09)
sum e = 0.01056419711021257
sum de = 7.593364244254889e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.18e-03 |
| force | 9.14e-03 |
| divB_cleaning | 2.87e-03 |
+---------------+----------+
Info: cfl dt = 0.002180627682225919 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 | 5.3692e+04 | 12514 | 1 | 2.331e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.30890462842537 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9678046754644202, dt = 0.002180627682225919 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.85 us (1.3%)
patch tree reduce : 1.19 us (0.3%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 821.00 ns (0.2%)
LB compute : 358.45 us (95.6%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6741249800223743
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4630998136943016e-05,-7.70819604435055e-06,3.97007585474673e-08)
sum a = (7.764704303864091e-06,3.563696817558051e-06,-4.0495036351926325e-08)
sum e = 0.010566756848914732
sum de = 7.64858671837578e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.16e-03 |
| force | 9.35e-03 |
| divB_cleaning | 2.88e-03 |
+---------------+----------+
Info: cfl dt = 0.0021584474645426075 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 | 8.2216e+04 | 12514 | 1 | 1.522e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.57543455408354 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9699853031466461, dt = 0.0021584474645426075 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.75 us (1.6%)
patch tree reduce : 1.21 us (0.4%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 285.86 us (94.6%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (67.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6719673965159023
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4614713928484636e-05,-7.700866224998757e-06,3.957517576820779e-08)
sum a = (7.4708442688667686e-06,3.236788939581599e-06,-5.734009428018337e-08)
sum e = 0.010569332035531303
sum de = 7.669719164297826e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.14e-03 |
| force | 9.47e-03 |
| divB_cleaning | 2.88e-03 |
+---------------+----------+
Info: cfl dt = 0.0021352488142734904 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 | 8.2249e+04 | 12514 | 1 | 1.521e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.07123864789536 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9721437506111887, dt = 0.0021352488142734904 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.31 us (1.3%)
patch tree reduce : 972.00 ns (0.3%)
gen split merge : 632.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 313.95 us (95.4%)
LB move op cnt : 0
LB apply : 3.06 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (60.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6683714240051133
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4599078957841542e-05,-7.694307681993657e-06,3.9434560813598566e-08)
sum a = (7.318423691300523e-06,2.9491487867240827e-06,-6.045221698841522e-08)
sum e = 0.010571916347003111
sum de = 7.651534271853837e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.12e-03 |
| force | 9.65e-03 |
| divB_cleaning | 2.88e-03 |
+---------------+----------+
Info: cfl dt = 0.0021163804565397025 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 | 6.5614e+04 | 12514 | 1 | 1.907e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.304482507462986 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9742789994254623, dt = 0.0007210005745382775 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.6%)
patch tree reduce : 1.38 us (0.4%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 315.65 us (94.7%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (65.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6678919610036758
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4593965098084132e-05,-7.692488435671759e-06,3.938765215225617e-08)
sum a = (7.317864171088113e-06,2.857707284982706e-06,-6.251353983937854e-08)
sum e = 0.010572660055782218
sum de = 7.63265427910294e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.11e-03 |
| force | 9.73e-03 |
| divB_cleaning | 2.88e-03 |
+---------------+----------+
Info: cfl dt = 0.0021118397981667093 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 | 6.4701e+04 | 12514 | 1 | 1.934e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.420088245736357 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 591 [SPH][rank=0]
Info: time since start : 257.624149617 (s) [SPH][rank=0]
Info: dump to _to_trash/orztang_00039.vtk [VTK Dump][rank=0]
- took 2.67 ms, bandwidth = 262.34 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 974.99 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 978.80 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/rho_slice_0000039.npy
Saving metadata to _to_trash/plots/rho_slice_0000039.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 966.66 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/vy_slice_0000039.npy
Saving metadata to _to_trash/plots/vy_slice_0000039.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.005764521000000001 s
Info: compute_slice took 984.15 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/By_slice_0000039.npy
Saving metadata to _to_trash/plots/By_slice_0000039.json
Info: evolve_until (target_time = 1.00s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.9750000000000005, dt = 0.0021118397981667093 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.95 us (2.4%)
patch tree reduce : 1.92 us (0.5%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 388.21 us (94.2%)
LB move op cnt : 0
LB apply : 3.99 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (68.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.668131692504396
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4578511142997496e-05,-7.686486380383565e-06,3.9254890463419204e-08)
sum a = (7.379656101791534e-06,2.6294661728007397e-06,-7.794883030609212e-08)
sum e = 0.010575398413614167
sum de = 7.578205283616112e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.10e-03 |
| force | 9.62e-03 |
| divB_cleaning | 2.89e-03 |
+---------------+----------+
Info: cfl dt = 0.00209911445327421 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 | 6.4867e+04 | 12514 | 1 | 1.929e-01 | 0.0% | 1.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.408523515145525 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9771118397981673, dt = 0.00209911445327421 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.4%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 692.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 339.50 us (95.0%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (71.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6642959884928894
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.456295515288467e-05,-7.681207834268e-06,3.907496851675556e-08)
sum a = (7.597878330382608e-06,2.448918803813378e-06,-8.879180183661056e-08)
sum e = 0.010578022112857244
sum de = 7.469035465480715e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.24e-03 |
| force | 9.55e-03 |
| divB_cleaning | 2.89e-03 |
+---------------+----------+
Info: cfl dt = 0.0022404935971790945 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 | 7.0819e+04 | 12514 | 1 | 1.767e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.76529452352337 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9792109542514416, dt = 0.0022404935971790945 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.06 us (1.5%)
patch tree reduce : 1.30 us (0.4%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 320.26 us (94.8%)
LB move op cnt : 0
LB apply : 3.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (70.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.661658941984977
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4545703118416296e-05,-7.675910542164086e-06,3.8864650734131024e-08)
sum a = (7.954537748209382e-06,2.3428074928831385e-06,-9.434734237305459e-08)
sum e = 0.010580878584713885
sum de = 7.330973129262083e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.23e-03 |
| force | 9.56e-03 |
| divB_cleaning | 2.89e-03 |
+---------------+----------+
Info: cfl dt = 0.0022347890505033836 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 | 8.1393e+04 | 12514 | 1 | 1.537e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.46127928789785 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9814514478486207, dt = 0.0022347890505033836 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.88 us (1.2%)
patch tree reduce : 1.18 us (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 373.17 us (95.4%)
LB move op cnt : 0
LB apply : 3.82 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (66.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.661658941984976
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4527526857983803e-05,-7.670793732487493e-06,3.864758074995083e-08)
sum a = (8.436604807997668e-06,2.312013051542515e-06,-1.060264540877941e-07)
sum e = 0.010583742673418774
sum de = 7.16336362126398e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.23e-03 |
| force | 9.74e-03 |
| divB_cleaning | 2.90e-03 |
+---------------+----------+
Info: cfl dt = 0.0022311468906219814 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 | 8.2582e+04 | 12514 | 1 | 1.515e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.09201753289624 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.983686236899124, dt = 0.0022311468906219814 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.68 us (1.5%)
patch tree reduce : 1.23 us (0.4%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 289.91 us (94.8%)
LB move op cnt : 0
LB apply : 3.07 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (67.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6621384049864143
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.450816489430558e-05,-7.665669701296799e-06,3.839796998109977e-08)
sum a = (8.992458787577527e-06,2.3385363905251107e-06,-1.169824669886782e-07)
sum e = 0.01058663598326068
sum de = 6.972673120608504e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.21e-03 |
| force | 9.94e-03 |
| divB_cleaning | 2.90e-03 |
+---------------+----------+
Info: cfl dt = 0.002211526318193197 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 | 7.2996e+04 | 12514 | 1 | 1.714e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.85231981521776 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.985917383789746, dt = 0.002211526318193197 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.8%)
patch tree reduce : 1.17 us (0.4%)
gen split merge : 621.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 282.30 us (93.9%)
LB move op cnt : 0
LB apply : 3.89 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (64.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.660700015982099
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4487657739092602e-05,-7.660468377790526e-06,3.812703793952854e-08)
sum a = (9.52408167105621e-06,2.3991040441773855e-06,-1.0726751998652847e-07)
sum e = 0.010589533696743847
sum de = 6.761607714357514e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.19e-03 |
| force | 9.98e-03 |
| divB_cleaning | 2.91e-03 |
+---------------+----------+
Info: cfl dt = 0.002194391240125367 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 | 8.1505e+04 | 12514 | 1 | 1.535e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.85420809011052 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9881289101079392, dt = 0.002194391240125367 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.04 us (1.6%)
patch tree reduce : 1.24 us (0.4%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 289.57 us (94.5%)
LB move op cnt : 0
LB apply : 3.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (66.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6607000159821013
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4466170328704237e-05,-7.6551368314119e-06,3.790239346380722e-08)
sum a = (1.0026025166805353e-05,2.457262135655451e-06,-9.384885836973552e-08)
sum e = 0.010592439392612805
sum de = 6.536184909742804e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.18e-03 |
| force | 9.99e-03 |
| divB_cleaning | 2.91e-03 |
+---------------+----------+
Info: cfl dt = 0.002179302312378806 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 | 7.8984e+04 | 12514 | 1 | 1.584e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.86103527899147 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9903233013480646, dt = 0.002179302312378806 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.7%)
patch tree reduce : 1.16 us (0.4%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 293.58 us (94.5%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (67.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.659741089979224
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4443769858669192e-05,-7.649717903554231e-06,3.771259132650058e-08)
sum a = (1.0490738950440186e-05,2.4848291313907624e-06,-7.548869846812387e-08)
sum e = 0.010595353408296135
sum de = 6.30167199674551e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.17e-03 |
| force | 1.00e-02 |
| divB_cleaning | 2.92e-03 |
+---------------+----------+
Info: cfl dt = 0.002166210042356222 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 | 7.3606e+04 | 12514 | 1 | 1.700e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.14656560762784 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9925026036604434, dt = 0.002166210042356222 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.86 us (1.4%)
patch tree reduce : 1.21 us (0.4%)
gen split merge : 581.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 731.00 ns (0.2%)
LB compute : 324.64 us (95.2%)
LB move op cnt : 0
LB apply : 3.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (66.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6609397474828196
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4420538338691302e-05,-7.644305203327126e-06,3.756907311925956e-08)
sum a = (1.0893923039094208e-05,2.4999909040969885e-06,-4.361221002484581e-08)
sum e = 0.010598275883460757
sum de = 6.0612704177275255e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.25e-03 |
| force | 9.89e-03 |
| divB_cleaning | 2.93e-03 |
+---------------+----------+
Info: cfl dt = 0.002254372652629073 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 | 8.0373e+04 | 12514 | 1 | 1.557e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.086035134002046 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9946688137027996, dt = 0.002254372652629073 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.58 us (1.5%)
patch tree reduce : 1.06 us (0.4%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 283.23 us (94.8%)
LB move op cnt : 0
LB apply : 3.11 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.658782163976346
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4395542685801184e-05,-7.63865287040916e-06,3.750528053034952e-08)
sum a = (1.1250831486583032e-05,2.48437408160153e-06,-1.2248997205729204e-08)
sum e = 0.010601356557471173
sum de = 5.811597564337352e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.21e-03 |
| force | 9.80e-03 |
| divB_cleaning | 2.94e-03 |
+---------------+----------+
Info: cfl dt = 0.002205842022924774 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 | 7.2895e+04 | 12514 | 1 | 1.717e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.27472234908855 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9969231863554286, dt = 0.002205842022924774 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.08 us (1.6%)
patch tree reduce : 1.22 us (0.4%)
gen split merge : 822.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 296.39 us (94.5%)
LB move op cnt : 0
LB apply : 3.14 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (66.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6547067284641193
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4370322826593672e-05,-7.633190336728166e-06,3.7513613362214e-08)
sum a = (1.158396216086017e-05,2.433934902269686e-06,2.631869527982747e-08)
sum e = 0.010604374261645209
sum de = 5.5695663974871044e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.25e-03 |
| force | 9.88e-03 |
| divB_cleaning | 2.95e-03 |
+---------------+----------+
Info: cfl dt = 0.002250613370062742 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 | 8.1867e+04 | 12514 | 1 | 1.529e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.950432290065905 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9991290283783534, dt = 0.0008709716216470653 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.7%)
patch tree reduce : 1.34 us (0.4%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 288.28 us (94.1%)
LB move op cnt : 0
LB apply : 3.68 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (66.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.651110755953333
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4359866107465035e-05,-7.631126078930211e-06,3.75790733173274e-08)
sum a = (1.1705564748821297e-05,2.4121412004770736e-06,4.468896621096563e-08)
sum e = 0.010605441303377467
sum de = 5.4741648958151204e-05
Info: CFL detail : [sph::Model][rank=0]
+===============+==========+
| key | value |
+===============+==========+
| courant | 2.25e-03 |
| force | 9.96e-03 |
| divB_cleaning | 2.95e-03 |
+---------------+----------+
Info: cfl dt = 0.0022452251782705875 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 | 8.3442e+04 | 12514 | 1 | 1.500e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.9071097966779 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 603 [SPH][rank=0]
Info: time since start : 263.625870438 (s) [SPH][rank=0]
Info: dump to _to_trash/orztang_00040.vtk [VTK Dump][rank=0]
- took 2.38 ms, bandwidth = 294.89 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 993.36 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 981.22 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/rho_slice_0000040.npy
Saving metadata to _to_trash/plots/rho_slice_0000040.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 966.20 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/vy_slice_0000040.npy
Saving metadata to _to_trash/plots/vy_slice_0000040.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.005672739 s
Info: compute_slice took 985.28 ms [sph::CartesianRender][rank=0]
Saving data to _to_trash/plots/By_slice_0000040.npy
Saving metadata to _to_trash/plots/By_slice_0000040.json
Plot generation
254 slice_render_kwargs = {
255 "x_unit": "m",
256 "y_unit": "m",
257 "time_unit": "second",
258 "x_label": "x",
259 "y_label": "y",
260 }
261
262 density_slice_plot.render_all(
263 **slice_render_kwargs,
264 field_unit="kg.m^-2",
265 field_label="$\\int \\rho \\, \\mathrm{{d}} z$",
266 vmin=1e-7,
267 vmax=5e-7,
268 cmap="gist_heat",
269 cmap_bad_color="black",
270 )
271
272 v_y_slice_plot.render_all(
273 **slice_render_kwargs,
274 field_unit="m.s^-1",
275 field_label="$\\mathrm{v}_y$",
276 vmin=-1e-2,
277 vmax=1e-2,
278 cmap="seismic",
279 cmap_bad_color="black",
280 )
281
282 by_slice_plot.render_all(
283 **slice_render_kwargs,
284 field_unit="T",
285 field_label=r"$B_y$",
286 vmin=-1e-6,
287 vmax=1e-6,
288 cmap="seismic",
289 cmap_bad_color="black",
290 )
Saving plot to _to_trash/plots/plot_rho_slice_0000000.png
Saving plot to _to_trash/plots/plot_rho_slice_0000001.png
Saving plot to _to_trash/plots/plot_rho_slice_0000002.png
Saving plot to _to_trash/plots/plot_rho_slice_0000003.png
Saving plot to _to_trash/plots/plot_rho_slice_0000004.png
Saving plot to _to_trash/plots/plot_rho_slice_0000005.png
Saving plot to _to_trash/plots/plot_rho_slice_0000006.png
Saving plot to _to_trash/plots/plot_rho_slice_0000007.png
Saving plot to _to_trash/plots/plot_rho_slice_0000008.png
Saving plot to _to_trash/plots/plot_rho_slice_0000009.png
Saving plot to _to_trash/plots/plot_rho_slice_0000010.png
Saving plot to _to_trash/plots/plot_rho_slice_0000011.png
Saving plot to _to_trash/plots/plot_rho_slice_0000012.png
Saving plot to _to_trash/plots/plot_rho_slice_0000013.png
Saving plot to _to_trash/plots/plot_rho_slice_0000014.png
Saving plot to _to_trash/plots/plot_rho_slice_0000015.png
Saving plot to _to_trash/plots/plot_rho_slice_0000016.png
Saving plot to _to_trash/plots/plot_rho_slice_0000017.png
Saving plot to _to_trash/plots/plot_rho_slice_0000018.png
Saving plot to _to_trash/plots/plot_rho_slice_0000019.png
Saving plot to _to_trash/plots/plot_rho_slice_0000020.png
Saving plot to _to_trash/plots/plot_rho_slice_0000021.png
Saving plot to _to_trash/plots/plot_rho_slice_0000022.png
Saving plot to _to_trash/plots/plot_rho_slice_0000023.png
Saving plot to _to_trash/plots/plot_rho_slice_0000024.png
Saving plot to _to_trash/plots/plot_rho_slice_0000025.png
Saving plot to _to_trash/plots/plot_rho_slice_0000026.png
Saving plot to _to_trash/plots/plot_rho_slice_0000027.png
Saving plot to _to_trash/plots/plot_rho_slice_0000028.png
Saving plot to _to_trash/plots/plot_rho_slice_0000029.png
Saving plot to _to_trash/plots/plot_rho_slice_0000030.png
Saving plot to _to_trash/plots/plot_rho_slice_0000031.png
Saving plot to _to_trash/plots/plot_rho_slice_0000032.png
Saving plot to _to_trash/plots/plot_rho_slice_0000033.png
Saving plot to _to_trash/plots/plot_rho_slice_0000034.png
Saving plot to _to_trash/plots/plot_rho_slice_0000035.png
Saving plot to _to_trash/plots/plot_rho_slice_0000036.png
Saving plot to _to_trash/plots/plot_rho_slice_0000037.png
Saving plot to _to_trash/plots/plot_rho_slice_0000038.png
Saving plot to _to_trash/plots/plot_rho_slice_0000039.png
Saving plot to _to_trash/plots/plot_rho_slice_0000040.png
Saving plot to _to_trash/plots/plot_vy_slice_0000000.png
Saving plot to _to_trash/plots/plot_vy_slice_0000001.png
Saving plot to _to_trash/plots/plot_vy_slice_0000002.png
Saving plot to _to_trash/plots/plot_vy_slice_0000003.png
Saving plot to _to_trash/plots/plot_vy_slice_0000004.png
Saving plot to _to_trash/plots/plot_vy_slice_0000005.png
Saving plot to _to_trash/plots/plot_vy_slice_0000006.png
Saving plot to _to_trash/plots/plot_vy_slice_0000007.png
Saving plot to _to_trash/plots/plot_vy_slice_0000008.png
Saving plot to _to_trash/plots/plot_vy_slice_0000009.png
Saving plot to _to_trash/plots/plot_vy_slice_0000010.png
Saving plot to _to_trash/plots/plot_vy_slice_0000011.png
Saving plot to _to_trash/plots/plot_vy_slice_0000012.png
Saving plot to _to_trash/plots/plot_vy_slice_0000013.png
Saving plot to _to_trash/plots/plot_vy_slice_0000014.png
Saving plot to _to_trash/plots/plot_vy_slice_0000015.png
Saving plot to _to_trash/plots/plot_vy_slice_0000016.png
Saving plot to _to_trash/plots/plot_vy_slice_0000017.png
Saving plot to _to_trash/plots/plot_vy_slice_0000018.png
Saving plot to _to_trash/plots/plot_vy_slice_0000019.png
Saving plot to _to_trash/plots/plot_vy_slice_0000020.png
Saving plot to _to_trash/plots/plot_vy_slice_0000021.png
Saving plot to _to_trash/plots/plot_vy_slice_0000022.png
Saving plot to _to_trash/plots/plot_vy_slice_0000023.png
Saving plot to _to_trash/plots/plot_vy_slice_0000024.png
Saving plot to _to_trash/plots/plot_vy_slice_0000025.png
Saving plot to _to_trash/plots/plot_vy_slice_0000026.png
Saving plot to _to_trash/plots/plot_vy_slice_0000027.png
Saving plot to _to_trash/plots/plot_vy_slice_0000028.png
Saving plot to _to_trash/plots/plot_vy_slice_0000029.png
Saving plot to _to_trash/plots/plot_vy_slice_0000030.png
Saving plot to _to_trash/plots/plot_vy_slice_0000031.png
Saving plot to _to_trash/plots/plot_vy_slice_0000032.png
Saving plot to _to_trash/plots/plot_vy_slice_0000033.png
Saving plot to _to_trash/plots/plot_vy_slice_0000034.png
Saving plot to _to_trash/plots/plot_vy_slice_0000035.png
Saving plot to _to_trash/plots/plot_vy_slice_0000036.png
Saving plot to _to_trash/plots/plot_vy_slice_0000037.png
Saving plot to _to_trash/plots/plot_vy_slice_0000038.png
Saving plot to _to_trash/plots/plot_vy_slice_0000039.png
Saving plot to _to_trash/plots/plot_vy_slice_0000040.png
Saving plot to _to_trash/plots/plot_By_slice_0000000.png
Saving plot to _to_trash/plots/plot_By_slice_0000001.png
Saving plot to _to_trash/plots/plot_By_slice_0000002.png
Saving plot to _to_trash/plots/plot_By_slice_0000003.png
Saving plot to _to_trash/plots/plot_By_slice_0000004.png
Saving plot to _to_trash/plots/plot_By_slice_0000005.png
Saving plot to _to_trash/plots/plot_By_slice_0000006.png
Saving plot to _to_trash/plots/plot_By_slice_0000007.png
Saving plot to _to_trash/plots/plot_By_slice_0000008.png
Saving plot to _to_trash/plots/plot_By_slice_0000009.png
Saving plot to _to_trash/plots/plot_By_slice_0000010.png
Saving plot to _to_trash/plots/plot_By_slice_0000011.png
Saving plot to _to_trash/plots/plot_By_slice_0000012.png
Saving plot to _to_trash/plots/plot_By_slice_0000013.png
Saving plot to _to_trash/plots/plot_By_slice_0000014.png
Saving plot to _to_trash/plots/plot_By_slice_0000015.png
Saving plot to _to_trash/plots/plot_By_slice_0000016.png
Saving plot to _to_trash/plots/plot_By_slice_0000017.png
Saving plot to _to_trash/plots/plot_By_slice_0000018.png
Saving plot to _to_trash/plots/plot_By_slice_0000019.png
Saving plot to _to_trash/plots/plot_By_slice_0000020.png
Saving plot to _to_trash/plots/plot_By_slice_0000021.png
Saving plot to _to_trash/plots/plot_By_slice_0000022.png
Saving plot to _to_trash/plots/plot_By_slice_0000023.png
Saving plot to _to_trash/plots/plot_By_slice_0000024.png
Saving plot to _to_trash/plots/plot_By_slice_0000025.png
Saving plot to _to_trash/plots/plot_By_slice_0000026.png
Saving plot to _to_trash/plots/plot_By_slice_0000027.png
Saving plot to _to_trash/plots/plot_By_slice_0000028.png
Saving plot to _to_trash/plots/plot_By_slice_0000029.png
Saving plot to _to_trash/plots/plot_By_slice_0000030.png
Saving plot to _to_trash/plots/plot_By_slice_0000031.png
Saving plot to _to_trash/plots/plot_By_slice_0000032.png
Saving plot to _to_trash/plots/plot_By_slice_0000033.png
Saving plot to _to_trash/plots/plot_By_slice_0000034.png
Saving plot to _to_trash/plots/plot_By_slice_0000035.png
Saving plot to _to_trash/plots/plot_By_slice_0000036.png
Saving plot to _to_trash/plots/plot_By_slice_0000037.png
Saving plot to _to_trash/plots/plot_By_slice_0000038.png
Saving plot to _to_trash/plots/plot_By_slice_0000039.png
Saving plot to _to_trash/plots/plot_By_slice_0000040.png
Make gif for the doc
Density gif
298 if render_gif:
299 ani = density_slice_plot.render_gif(gif_filename="rho_slice.gif", save_animation=True, fps=8)
300 if ani is not None:
301 plt.show()
vy velocity gif
305 if render_gif:
306 ani = v_y_slice_plot.render_gif(gif_filename="vy_slice.gif", save_animation=True, fps=8)
307 if ani is not None:
308 plt.show()
By magnetic field gif
312 if render_gif:
313 ani = by_slice_plot.render_gif(gif_filename="By_slice.gif", save_animation=True, fps=8)
314 if ani is not None:
315 plt.show()
Total running time of the script: (6 minutes 40.120 seconds)
Estimated memory usage: 1545 MB