Production run: Circular disc & central potential#

This example demonstrates how to run a smoothed particle hydrodynamics (SPH) simulation of a circular disc orbiting around a central point mass potential.

The simulation models:

  • A central star with a given mass and accretion radius

  • A gaseous disc with specified mass, inner/outer radii, and vertical structure

  • Artificial viscosity for angular momentum transport

  • Locally isothermal equation of state

Also this simulation feature rolling dumps (see purge_old_dumps function) to save disk space.

This example is the accumulation of 3 files in a single one to showcase the complete workflow.

  • The actual run script (runscript.py)

  • Plot generation (make_plots.py)

  • Animation from the plots (plot_to_gif.py)

On a cluster or laptop, one can run the code as follows:

mpirun <your parameters> ./shamrock --sycl-cfg 0:0 --loglevel 1 --rscript runscript.py

then after the run is done (or while it is running), one can run the following to generate the plots:

python make_plots.py

Runscript (runscript.py)#

The runscript is the actual simulation with on the fly analysis & rolling dumps

45 import glob
46 import json
47 import os  # for makedirs
48
49 import numpy as np
50
51 import shamrock
52
53 # If we use the shamrock executable to run this script instead of the python interpreter,
54 # we should not initialize the system as the shamrock executable needs to handle specific MPI logic
55 if not shamrock.sys.is_initialized():
56     shamrock.change_loglevel(1)
57     shamrock.sys.init("0:0")

Setup units

62 si = shamrock.UnitSystem()
63 sicte = shamrock.Constants(si)
64 codeu = shamrock.UnitSystem(
65     unit_time=sicte.year(),
66     unit_length=sicte.au(),
67     unit_mass=sicte.sol_mass(),
68 )
69 ucte = shamrock.Constants(codeu)
70 G = ucte.G()

List parameters

 75 # Resolution
 76 Npart = 100000
 77
 78 # Domain decomposition parameters
 79 scheduler_split_val = int(1.0e7)  # split patches with more than 1e7 particles
 80 scheduler_merge_val = scheduler_split_val // 16
 81
 82 # Dump and plot frequency and duration of the simulation
 83 dump_freq_stop = 2
 84 plot_freq_stop = 1
 85
 86 dt_stop = 0.01
 87 nstop = 100
 88
 89 # The list of times at which the simulation will pause for analysis / dumping
 90 t_stop = [i * dt_stop for i in range(nstop + 1)]
 91
 92
 93 # Sink parameters
 94 center_mass = 1.0
 95 center_racc = 0.1
 96
 97 # Disc parameter
 98 disc_mass = 0.01  # sol mass
 99 rout = 10.0  # au
100 rin = 1.0  # au
101 H_r_0 = 0.05
102 q = 0.5
103 p = 3.0 / 2.0
104 r0 = 1.0
105
106 # Viscosity parameter
107 alpha_AV = 1.0e-3 / 0.08
108 alpha_u = 1.0
109 beta_AV = 2.0
110
111 # Integrator parameters
112 C_cour = 0.3
113 C_force = 0.25
114
115
116 dump_folder = f"_to_trash/circular_disc_central_pot_{Npart}/"
117 dump_prefix = dump_folder + "dump_"
118
119
120 # Disc profiles
121 def sigma_profile(r):
122     sigma_0 = 1.0  # We do not care as it will be renormalized
123     return sigma_0 * (r / r0) ** (-p)
124
125
126 def kep_profile(r):
127     return (G * center_mass / r) ** 0.5
128
129
130 def omega_k(r):
131     return kep_profile(r) / r
132
133
134 def cs_profile(r):
135     cs_in = (H_r_0 * r0) * omega_k(r0)
136     return ((r / r0) ** (-q)) * cs_in

Create the dump directory if it does not exist

141 if shamrock.sys.world_rank() == 0:
142     os.makedirs(dump_folder, exist_ok=True)

Utility functions and quantities deduced from the base one

147 # Deduced quantities
148 pmass = disc_mass / Npart
149
150 bsize = rout * 2
151 bmin = (-bsize, -bsize, -bsize)
152 bmax = (bsize, bsize, bsize)
153
154 cs0 = cs_profile(r0)
155
156
157 def rot_profile(r):
158     return ((kep_profile(r) ** 2) - (2 * p + q) * cs_profile(r) ** 2) ** 0.5
159
160
161 def H_profile(r):
162     H = cs_profile(r) / omega_k(r)
163     # fact = (2.**0.5) * 3. # factor taken from phantom, to fasten thermalizing
164     fact = 1.0
165     return fact * H

Start the context The context holds the data of the code We then init the layout of the field (e.g. the list of fields used by the solver)

Attach a SPH model to the context

179 model = shamrock.get_Model_SPH(context=ctx, vector_type="f64_3", sph_kernel="M4")

Dump handling

184 def get_dump_name(idump):
185     return dump_prefix + f"{idump:07}" + ".sham"
186
187
188 def get_vtk_dump_name(idump):
189     return dump_prefix + f"{idump:07}" + ".vtk"
190
191
192 def get_ph_dump_name(idump):
193     return dump_prefix + f"{idump:07}" + ".phdump"
194
195
196 def get_last_dump():
197     res = glob.glob(dump_prefix + "*.sham")
198
199     num_max = -1
200
201     for f in res:
202         try:
203             dump_num = int(f[len(dump_prefix) : -5])
204             if dump_num > num_max:
205                 f_max = f
206                 num_max = dump_num
207         except ValueError:
208             pass
209
210     if num_max == -1:
211         return None
212     else:
213         return num_max
214
215
216 def purge_old_dumps():
217     if shamrock.sys.world_rank() == 0:
218         res = glob.glob(dump_prefix + "*.sham")
219         res.sort()
220
221         # The list of dumps to remove (keep the first and last 3 dumps)
222         to_remove = res[1:-3]
223
224         for f in to_remove:
225             os.remove(f)
226
227
228 idump_last_dump = get_last_dump()
229
230 if shamrock.sys.world_rank() == 0:
231     print("Last dump:", idump_last_dump)
Last dump: None

Load the last dump if it exists, setup otherwise

236 if idump_last_dump is not None:
237     model.load_from_dump(get_dump_name(idump_last_dump))
238 else:
239     # Generate the default config
240     cfg = model.gen_default_config()
241     cfg.set_artif_viscosity_ConstantDisc(alpha_u=alpha_u, alpha_AV=alpha_AV, beta_AV=beta_AV)
242     cfg.set_eos_locally_isothermalLP07(cs0=cs0, q=q, r0=r0)
243
244     cfg.add_ext_force_point_mass(center_mass, center_racc)
245     cfg.add_kill_sphere(center=(0, 0, 0), radius=bsize)  # kill particles outside the simulation box
246
247     cfg.set_units(codeu)
248     cfg.set_particle_mass(pmass)
249     # Set the CFL
250     cfg.set_cfl_cour(C_cour)
251     cfg.set_cfl_force(C_force)
252
253     # Set the solver config to be the one stored in cfg
254     model.set_solver_config(cfg)
255
256     # Print the solver config
257     model.get_current_config().print_status()
258
259     # Init the scheduler & fields
260     model.init_scheduler(scheduler_split_val, scheduler_merge_val)
261
262     # Set the simulation box size
263     model.resize_simulation_box(bmin, bmax)
264
265     # Create the setup
266
267     setup = model.get_setup()
268     gen_disc = setup.make_generator_disc_mc(
269         part_mass=pmass,
270         disc_mass=disc_mass,
271         r_in=rin,
272         r_out=rout,
273         sigma_profile=sigma_profile,
274         H_profile=H_profile,
275         rot_profile=rot_profile,
276         cs_profile=cs_profile,
277         random_seed=666,
278     )
279
280     # Print the dot graph of the setup
281     print(gen_disc.get_dot())
282
283     # Apply the setup
284     setup.apply_setup(gen_disc)
285
286     # Run a single step to init the integrator and smoothing length of the particles
287     # Here the htolerance is the maximum factor of evolution of the smoothing length in each
288     # Smoothing length iterations, increasing it affect the performance negatively but increse the
289     # convergence rate of the smoothing length
290     # this is why we increase it temporely to 1.3 before lowering it back to 1.1 (default value)
291     # Note that both ``change_htolerance`` can be removed and it will work the same but would converge
292     # more slowly at the first timestep
293
294     model.change_htolerance(1.3)
295     model.timestep()
296     model.change_htolerance(1.1)
----- SPH Solver configuration -----
units :
unit_length      : 149597870700
unit_mass        : 1.98847e+30
unit_current     : 1
unit_temperature : 1
unit_qte         : 1
unit_lumint      : 1
part mass 1e-07 ( can be changed using .set_part_mass() )
cfl force 0.25
cfl courant 0.3
--- artificial viscosity config
  Config Type : constant disc
  alpha_AV   = 0.0125
  alpha_u     = 1
  beta_AV     = 2
--- artificial viscosity config (deduced)
-------------
EOS config f64_3 :
locally isothermal (Lodato Price 2007) :
--- Bondaries config
  Config Type : Free boundaries
--- Bondaries config config (deduced)
-------------
------------------------------------
digraph G {
rankdir=LR;
node_0 [label="GeneratorMCDisc"];
node_2 [label="Simulation"];
node_0 -> node_2;
}

Info: pushing data in scheduler, N = 100000                           [DataInserterUtility][rank=0]
Info: reattributing data ...                                          [DataInserterUtility][rank=0]
Info: reattributing data done in  13.57 ms                            [DataInserterUtility][rank=0]
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 14.76 us   (74.2%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (0.3%)
   patch tree reduce : 1403.00 ns (0.2%)
   gen split merge   : 792.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.2%)
   LB compute        : 556.86 us  (98.0%)
   LB move op cnt    : 0
   LB apply          : 3.05 us    (0.5%)
Info: the setup took : 0.33574590800000004 s                                    [SPH setup][rank=0]
Warning: .change_htolerance(val) is deprecated,                                       [SPH][rank=0]
    -> calling this is replaced internally by .change_htolerances(coarse=val, fine=min(val, 1.1))
    see: https://shamrock-code.github.io/Shamrock/mkdocs/models/sph/smoothing_length_tolerance
---------------- t = 0, dt = 0 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.52 us    (2.2%)
   patch tree reduce : 1152.00 ns (0.3%)
   gen split merge   : 712.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.2%)
   LB compute        : 415.82 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.80 us    (67.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.2909764157267044 unconverged cnt = 100000
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.3782693404447157 unconverged cnt = 100000
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.49175014257813043 unconverged cnt = 100000
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.6392751853515696 unconverged cnt = 99999
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.8310577409570404 unconverged cnt = 99994
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.9111537095081728 unconverged cnt = 99974
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.9808577320660896 unconverged cnt = 99896
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.9808577320660896 unconverged cnt = 99423
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.9808577320660896 unconverged cnt = 92847
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.9808577320660896 unconverged cnt = 46390
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.9808577320660896 unconverged cnt = 1529
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.9808577320660896 unconverged cnt = 6
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.602888547426395e-05,0.0001376630927535204,0)
    sum a = (-0.0003850505559201442,-8.274350097384992e-05,-7.149808054928441e-06)
    sum e = 0.05019329393704535
    sum de = 8.693668237932321e-20
Info: cfl dt = 7.389714015755424e-05 cfl multiplier : 0.01                     [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    3.4263e+04    |      100000 |   2.919e+00   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 0 (tsim/hr)                                             [sph::Model][rank=0]
Warning: .change_htolerance(val) is deprecated,                                       [SPH][rank=0]
    -> calling this is replaced internally by .change_htolerances(coarse=val, fine=min(val, 1.1))
    see: https://shamrock-code.github.io/Shamrock/mkdocs/models/sph/smoothing_length_tolerance

On the fly analysis

301 def save_rho_integ(ext, arr_rho, iplot):
302     if shamrock.sys.world_rank() == 0:
303         metadata = {"extent": [-ext, ext, -ext, ext], "time": model.get_time()}
304         np.save(dump_folder + f"rho_integ_{iplot:07}.npy", arr_rho)
305
306         with open(dump_folder + f"rho_integ_{iplot:07}.json", "w") as fp:
307             json.dump(metadata, fp)
308
309
310 def analysis_plot(iplot):
311
312     ext = rout * 1.5
313     nx = 1024
314     ny = 1024
315
316     arr_rho2 = model.render_cartesian_column_integ(
317         "rho",
318         "f64",
319         center=(0.0, 0.0, 0.0),
320         delta_x=(ext * 2, 0, 0.0),
321         delta_y=(0.0, ext * 2, 0.0),
322         nx=nx,
323         ny=ny,
324     )
325
326     save_rho_integ(ext, arr_rho2, iplot)

Evolve the simulation

331 t_start = model.get_time()
332
333 idump = 0
334 iplot = 0
335 istop = 0
336 for ttarg in t_stop:
337
338     if ttarg > t_start:
339         model.evolve_until(ttarg)
340
341         if istop % dump_freq_stop == 0:
342             model.do_vtk_dump(get_vtk_dump_name(idump), True)
343             model.dump(get_dump_name(idump))
344
345             # dump = model.make_phantom_dump()
346             # dump.save_dump(get_ph_dump_name(idump))
347
348             purge_old_dumps()
349
350         if istop % plot_freq_stop == 0:
351             analysis_plot(iplot)
352
353     if istop % dump_freq_stop == 0:
354         idump += 1
355
356     if istop % plot_freq_stop == 0:
357         iplot += 1
358
359     istop += 1
---------------- t = 0, dt = 7.389714015755424e-05 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 20.79 us   (2.0%)
   patch tree reduce : 2.07 us    (0.2%)
   gen split merge   : 491.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.1%)
   LB compute        : 969.43 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 13.01 us   (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.13 us    (71.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.60004313393657e-05,0.0001376569782454325,-5.283503679346594e-10)
    sum a = (-0.0003850185105005124,-8.287214098435413e-05,-7.1498080632295864e-06)
    sum e = 0.05019329552757915
    sum de = 3.2347751592653103e-07
Info: cfl dt = 0.002512392509352596 cfl multiplier : 0.34                      [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.6008e+05    |      100000 |   6.247e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 0.4258666346689696 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.389714015755424e-05, dt = 0.002512392509352596 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (1.5%)
   patch tree reduce : 1182.00 ns (0.3%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.2%)
   LB compute        : 422.48 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.99 us    (67.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5033114901662786e-05,0.00013744876614612747,-1.8491474589608112e-08)
    sum a = (-0.000383902073335507,-8.723934296744079e-05,-7.1498181847913825e-06)
    sum e = 0.050195133247274606
    sum de = 1.1258028176523648e-05
Info: cfl dt = 0.0041336262422380496 cfl multiplier : 0.56                     [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.8167e+05    |      100000 |   5.505e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 16.4310653268745 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.0025862896495101504, dt = 0.0041336262422380496 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (1.6%)
   patch tree reduce : 1242.00 ns (0.3%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 404.03 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (72.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3447609681052433e-05,0.00013708266524590365,-4.804616338016054e-08)
    sum a = (-0.0003819515453121646,-9.439646367950473e-05,-7.149883732454451e-06)
    sum e = 0.05019833093514434
    sum de = 2.9090276643279127e-05
Info: cfl dt = 0.005216156001853698 cfl multiplier : 0.7066666666666667        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.8102e+05    |      100000 |   5.524e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 26.937656932288185 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.0067199158917481995, dt = 0.0032800841082518007 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.83 us    (1.9%)
   patch tree reduce : 1173.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.3%)
   LB compute        : 344.16 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (68.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2198807864059887e-05,0.00013675824447450903,-7.149851886160252e-08)
    sum a = (-0.00038030358403127025,-0.00010004884642987582,-7.149990291338357e-06)
    sum e = 0.05019662036895645
    sum de = 4.354676243979854e-05
Info: cfl dt = 0.005945602210963684 cfl multiplier : 0.8044444444444444        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.8233e+05    |      100000 |   5.484e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 21.53052423873362 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 5                                                       [SPH][rank=0]
Info: time since start : 1063.565234243 (s)                                           [SPH][rank=0]
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1781.54 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.01, dt = 0.005945602210963684 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.88 us   (1.8%)
   patch tree reduce : 1503.00 ns (0.2%)
   gen split merge   : 692.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.2%)
   LB compute        : 638.00 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (71.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.940376759814349e-06,0.00013615412368655707,-1.1400969170720331e-07)
    sum a = (-0.0003770909833694885,-0.00011023079697518433,-7.150324202597303e-06)
    sum e = 0.050204061226848944
    sum de = 6.876549803866765e-05
Info: cfl dt = 0.006458412517347073 cfl multiplier : 0.8696296296296296        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.8072e+05    |      100000 |   5.533e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 38.68240667443689 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.015945602210963684, dt = 0.004054397789036317 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.82 us    (1.3%)
   patch tree reduce : 1563.00 ns (0.3%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1183.00 ns (0.2%)
   LB compute        : 514.47 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (70.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.421050333368646e-06,0.00013567693527318073,-1.4300094299686736e-07)
    sum a = (-0.00037473479552126274,-0.00011712229902566491,-7.150684447561411e-06)
    sum e = 0.05019891198146911
    sum de = 8.699266751400342e-05
Info: cfl dt = 0.006816057518738839 cfl multiplier : 0.9130864197530864        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7992e+05    |      100000 |   5.558e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 26.26064250022736 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 7                                                       [SPH][rank=0]
Info: time since start : 1066.499568962 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000001.vtk        [VTK Dump][rank=0]
              - took 8.47 ms, bandwidth = 630.48 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump_0000001.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.88 us    (58.1%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000001.sham  [Shamrock Dump][rank=0]
              - took 22.62 ms, bandwidth = 506.09 MB/s
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1779.57 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.02, dt = 0.006816057518738839 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.12 us   (1.9%)
   patch tree reduce : 1542.00 ns (0.3%)
   gen split merge   : 712.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.2%)
   LB compute        : 559.14 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (73.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.871612874234981e-06,0.00013486465250095802,-1.9174114977798974e-07)
    sum a = (-0.0003704723683380317,-0.0001286081962316003,-7.151561484606158e-06)
    sum e = 0.050208277389049386
    sum de = 0.0001156823413104089
Info: cfl dt = 0.006938886119367157 cfl multiplier : 0.9420576131687243        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7966e+05    |      100000 |   5.566e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.08439925868748 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.02681605751873884, dt = 0.003183942481261158 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.26 us    (1.5%)
   patch tree reduce : 1183.00 ns (0.2%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1051.00 ns (0.2%)
   LB compute        : 461.45 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (73.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.706576636969626e-06,0.0001344160271335455,-2.1451429916364905e-07)
    sum a = (-0.00036835305429110815,-0.0001339265203734696,-7.15211431439307e-06)
    sum e = 0.05019817889252919
    sum de = 0.00013070745818583124
Info: cfl dt = 0.006994467152514782 cfl multiplier : 0.9613717421124829        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.8124e+05    |      100000 |   5.517e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 20.774383017399504 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 9                                                       [SPH][rank=0]
Info: time since start : 1069.448077971 (s)                                           [SPH][rank=0]
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1756.41 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.03, dt = 0.006994467152514782 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.01 us   (2.4%)
   patch tree reduce : 1483.00 ns (0.3%)
   gen split merge   : 682.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1273.00 ns (0.3%)
   LB compute        : 475.36 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.08 us    (72.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1335171852145835e-06,0.00013347081586686084,-2.645404078958246e-07)
    sum a = (-0.0003634112809124162,-0.00014550084645965022,-7.15366118969166e-06)
    sum e = 0.05021039976137319
    sum de = 0.0001600031055754726
Info: cfl dt = 0.0069715088771044615 cfl multiplier : 0.9742478280749886       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7898e+05    |      100000 |   5.587e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 45.06689433712402 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.03699446715251478, dt = 0.003005532847485219 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.19 us    (1.4%)
   patch tree reduce : 1462.00 ns (0.3%)
   gen split merge   : 911.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.2%)
   LB compute        : 510.78 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (66.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.05855517907342e-06,0.00013299303017166836,-2.860463813654548e-07)
    sum a = (-0.00036116841889151526,-0.00015042432949640482,-7.154490075514122e-06)
    sum e = 0.05019938412459843
    sum de = 0.00017446819504980345
Info: cfl dt = 0.006953481567083377 cfl multiplier : 0.9828318853833258        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7997e+05    |      100000 |   5.556e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 19.473074826744053 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 11                                                      [SPH][rank=0]
Info: time since start : 1072.344578746 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000002.vtk        [VTK Dump][rank=0]
              - took 8.18 ms, bandwidth = 652.71 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump_0000002.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.01 us    (57.9%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000002.sham  [Shamrock Dump][rank=0]
              - took 11.92 ms, bandwidth = 960.16 MB/s
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1760.02 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.04, dt = 0.006953481567083377 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.83 us   (1.9%)
   patch tree reduce : 1563.00 ns (0.3%)
   gen split merge   : 711.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.2%)
   LB compute        : 558.12 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (69.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4494522665657542e-06,0.00013193965852428523,-3.3579624184920643e-07)
    sum a = (-0.0003557049744964132,-0.0001616962419219414,-7.1567862928063555e-06)
    sum e = 0.05021205534483511
    sum de = 0.00020361288200597101
Info: cfl dt = 0.006797389617467463 cfl multiplier : 0.9885545902555505        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7926e+05    |      100000 |   5.578e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.874074787946164 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.04695348156708338, dt = 0.0030465184329166242 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.92 us    (1.5%)
   patch tree reduce : 1272.00 ns (0.3%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1653.00 ns (0.4%)
   LB compute        : 436.29 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (71.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.514119048104223e-06,0.00013140785842507887,-3.576075065629958e-07)
    sum a = (-0.00035319212871273367,-0.00016657844113033622,-7.157976562764686e-06)
    sum e = 0.05020141829371621
    sum de = 0.0002183358914649595
Info: cfl dt = 0.006764208463082356 cfl multiplier : 0.9923697268370336        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.8035e+05    |      100000 |   5.545e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 19.780081499992825 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 13                                                      [SPH][rank=0]
Info: time since start : 1075.2659734430001 (s)                                       [SPH][rank=0]
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1759.41 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.05, dt = 0.006764208463082356 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.23 us   (2.4%)
   patch tree reduce : 1903.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.2%)
   LB compute        : 451.23 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (72.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.899356518731539e-06,0.0001302736502688984,-4.0602736529707713e-07)
    sum a = (-0.0003473540022532636,-0.00017729201760990744,-7.1610072525467345e-06)
    sum e = 0.050213527013154485
    sum de = 0.00024677302521665016
Info: cfl dt = 0.007097123727771319 cfl multiplier : 0.9949131512246892        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7773e+05    |      100000 |   5.627e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 43.27856880339776 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.05676420846308236, dt = 0.003235791536917637 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.89 us    (1.8%)
   patch tree reduce : 1483.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 368.43 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (70.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.003576507333087e-06,0.00012966373582640094,-4.292091420694077e-07)
    sum a = (-0.0003444368265880595,-0.00018235125166416472,-7.162653505900341e-06)
    sum e = 0.05020416403593006
    sum de = 0.000262286551257099
Info: cfl dt = 0.007029850317519939 cfl multiplier : 0.9966087674831261        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.5988e+05    |      100000 |   6.255e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 18.624207129016323 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 15                                                      [SPH][rank=0]
Info: time since start : 1078.239681779 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000003.vtk        [VTK Dump][rank=0]
              - took 8.12 ms, bandwidth = 657.43 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump_0000003.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.97 us    (56.7%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000003.sham  [Shamrock Dump][rank=0]
              - took 11.70 ms, bandwidth = 978.64 MB/s
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1759.53 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.06, dt = 0.007029850317519939 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.91 us   (2.2%)
   patch tree reduce : 1833.00 ns (0.4%)
   gen split merge   : 671.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.2%)
   LB compute        : 478.00 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (72.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.420196155929215e-06,0.00012837364850862794,-4.795641875584834e-07)
    sum a = (-0.00033782280220306075,-0.00019319134964303984,-7.166634060099605e-06)
    sum e = 0.050217365272627636
    sum de = 0.0002916100275827194
Info: cfl dt = 0.006730219815622963 cfl multiplier : 0.997739178322084         [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7839e+05    |      100000 |   5.606e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 45.145429609851234 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.06702985031751994, dt = 0.002970149682480064 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.77 us    (1.8%)
   patch tree reduce : 1302.00 ns (0.3%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1413.00 ns (0.4%)
   LB compute        : 354.06 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (67.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.400332643916579e-06,0.0001277617391497147,-5.00864154786641e-07)
    sum a = (-0.00033491655126170576,-0.00019770513135499403,-7.1684777429673514e-06)
    sum e = 0.050206529956288215
    sum de = 0.0003061858139666821
Info: cfl dt = 0.0066452061890422956 cfl multiplier : 0.998492785548056        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.8022e+05    |      100000 |   5.549e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 19.270110513737567 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 17                                                      [SPH][rank=0]
Info: time since start : 1081.1630279360002 (s)                                       [SPH][rank=0]
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1759.14 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.07, dt = 0.0066452061890422956 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.11 us   (2.0%)
   patch tree reduce : 1653.00 ns (0.3%)
   gen split merge   : 772.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.2%)
   LB compute        : 527.04 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (71.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1621606183013432e-05,0.00012644124448356927,-5.485029054572596e-07)
    sum a = (-0.00032817483230332666,-0.000207657758179303,-7.172905021879041e-06)
    sum e = 0.05021887165683247
    sum de = 0.00033397345681663454
Info: cfl dt = 0.00643719739112784 cfl multiplier : 0.9989951903653708         [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7822e+05    |      100000 |   5.611e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 42.634936010287 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 0.0766452061890423, dt = 0.0033547938109576986 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.81 us    (1.9%)
   patch tree reduce : 1272.00 ns (0.4%)
   gen split merge   : 1182.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 342.35 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (70.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.270016502306426e-05,0.00012571152689294318,-5.725812329218609e-07)
    sum a = (-0.00032464790268605374,-0.00021260132225082174,-7.175286515524927e-06)
    sum e = 0.05021051451722751
    sum de = 0.0003499929325743016
Info: cfl dt = 0.006361792168877813 cfl multiplier : 0.9993301269102473        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7909e+05    |      100000 |   5.584e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 21.62924238578214 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 19                                                      [SPH][rank=0]
Info: time since start : 1084.06730726 (s)                                            [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000004.vtk        [VTK Dump][rank=0]
              - took 8.11 ms, bandwidth = 658.66 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump_0000004.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.90 us    (56.1%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000004.sham  [Shamrock Dump][rank=0]
              - took 11.85 ms, bandwidth = 966.59 MB/s
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1760.77 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.08, dt = 0.006361792168877813 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.95 us   (2.0%)
   patch tree reduce : 1773.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.2%)
   LB compute        : 512.80 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (72.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4759591447191101e-05,0.00012435070914688337,-6.182329091958501e-07)
    sum a = (-0.00031773384252193715,-0.00022182263350780613,-7.180021716655848e-06)
    sum e = 0.05022127813376793
    sum de = 0.0003766407426520278
Info: cfl dt = 0.0062106193087288234 cfl multiplier : 0.9995534179401648       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7635e+05    |      100000 |   5.671e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 40.387571267213744 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.08636179216887782, dt = 0.0036382078311221755 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.08 us    (1.8%)
   patch tree reduce : 19.71 us   (5.0%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 351.77 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (72.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.589358029436641e-05,0.0001235143402716609,-6.443703826157572e-07)
    sum a = (-0.00031364951268686756,-0.0002270016183275795,-7.182838710561885e-06)
    sum e = 0.05021480865522005
    sum de = 0.0003936637608086517
Info: cfl dt = 0.006113785684688371 cfl multiplier : 0.9997022786267765        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.8004e+05    |      100000 |   5.554e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 23.581308835153255 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 21                                                      [SPH][rank=0]
Info: time since start : 1086.9989011080002 (s)                                       [SPH][rank=0]
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1759.96 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.09, dt = 0.006113785684688371 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.12 us   (2.1%)
   patch tree reduce : 1413.00 ns (0.3%)
   gen split merge   : 741.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1113.00 ns (0.2%)
   LB compute        : 515.65 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (72.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.780373637464036e-05,0.00012211707991555758,-6.882898435044574e-07)
    sum a = (-0.00030657455572112726,-0.00023554536531799502,-7.187697629655929e-06)
    sum e = 0.05022428474902323
    sum de = 0.0004192379744593302
Info: cfl dt = 0.0058742637443901565 cfl multiplier : 0.9998015190845176       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7835e+05    |      100000 |   5.607e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 39.25496546308768 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.09611378568468837, dt = 0.003886214315311637 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (1.8%)
   patch tree reduce : 1362.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1453.00 ns (0.4%)
   LB compute        : 353.88 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.21 us    (66.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8973523416482377e-05,0.00012117558282593842,-7.162376301219555e-07)
    sum a = (-0.000301942460438512,-0.00024086805522519815,-7.190840863006967e-06)
    sum e = 0.05021950742749193
    sum de = 0.00043705847644710355
Info: cfl dt = 0.0057402117661380595 cfl multiplier : 0.9998676793896785       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7950e+05    |      100000 |   5.571e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 25.112820406526332 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 23                                                      [SPH][rank=0]
Info: time since start : 1089.902841433 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000005.vtk        [VTK Dump][rank=0]
              - took 7.95 ms, bandwidth = 671.43 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump_0000005.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (54.7%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000005.sham  [Shamrock Dump][rank=0]
              - took 11.65 ms, bandwidth = 982.87 MB/s
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1765.69 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.1, dt = 0.0057402117661380595 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.03 us   (2.3%)
   patch tree reduce : 1603.00 ns (0.3%)
   gen split merge   : 701.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.2%)
   LB compute        : 457.88 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.78 us    (69.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0697736423093708e-05,0.0001197826066243914,-7.575206870914412e-07)
    sum a = (-0.00029491107756681427,-0.0002485721233648587,-7.195509575457846e-06)
    sum e = 0.050227260661905804
    sum de = 0.000461051888920705
Info: cfl dt = 0.005551981058938734 cfl multiplier : 0.9999117862597856        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7724e+05    |      100000 |   5.642e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 36.62611609131841 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.10574021176613807, dt = 0.00425978823386193 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.24 us    (1.2%)
   patch tree reduce : 1352.00 ns (0.2%)
   gen split merge   : 801.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1103.00 ns (0.2%)
   LB compute        : 565.10 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (71.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1933814348002123e-05,0.00011870163052671694,-7.881854338166874e-07)
    sum a = (-0.00028955032929958734,-0.0002541631401893593,-7.1989580944596965e-06)
    sum e = 0.05022498260810491
    sum de = 0.00048000750307894077
Info: cfl dt = 0.005427294129039731 cfl multiplier : 0.9999411908398571        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7808e+05    |      100000 |   5.615e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 27.308862652811772 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 25                                                      [SPH][rank=0]
Info: time since start : 1092.8454989650002 (s)                                       [SPH][rank=0]
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1765.28 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.11, dt = 0.005427294129039731 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.89 us   (2.3%)
   patch tree reduce : 1603.00 ns (0.3%)
   gen split merge   : 671.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.2%)
   LB compute        : 458.63 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (73.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.3493871324073856e-05,0.00011731030413431619,-8.272636417982849e-07)
    sum a = (-0.0002825469769757629,-0.0002611266155736782,-7.2032776933336094e-06)
    sum e = 0.050230936093095424
    sum de = 0.0005026307827011515
Info: cfl dt = 0.00527779946317571 cfl multiplier : 0.999960793893238          [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7704e+05    |      100000 |   5.648e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 34.59078408760783 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.11542729412903974, dt = 0.004572705870960259 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.79 us    (1.7%)
   patch tree reduce : 1302.00 ns (0.3%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1133.00 ns (0.3%)
   LB compute        : 372.55 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (71.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4766870918034823e-05,0.00011609735251168355,-8.602138338635498e-07)
    sum a = (-0.00027649917073380777,-0.00026685014278753766,-7.206803480717945e-06)
    sum e = 0.05023080837319047
    sum de = 0.0005223766663155148
Info: cfl dt = 0.005163922976626528 cfl multiplier : 0.999973862595492         [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7799e+05    |      100000 |   5.618e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 29.300862515576323 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 27                                                      [SPH][rank=0]
Info: time since start : 1095.763290871 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000006.vtk        [VTK Dump][rank=0]
              - took 8.20 ms, bandwidth = 651.16 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump_0000006.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.10 us    (55.2%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000006.sham  [Shamrock Dump][rank=0]
              - took 11.65 ms, bandwidth = 983.14 MB/s
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1763.93 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.12, dt = 0.005163922976626528 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.90 us   (2.1%)
   patch tree reduce : 1543.00 ns (0.3%)
   gen split merge   : 732.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.2%)
   LB compute        : 489.21 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.86 us    (72.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.618086391925145e-05,0.00011470627292476824,-8.974372731400032e-07)
    sum a = (-0.0002695108879069863,-0.00027315176853544976,-7.210601915296219e-06)
    sum e = 0.05023524100267407
    sum de = 0.0005437540799493847
Info: cfl dt = 0.005605966737804759 cfl multiplier : 0.9999825750636614        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7679e+05    |      100000 |   5.656e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 32.865177391877786 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1251639229766265, dt = 0.004836077023373492 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (1.8%)
   patch tree reduce : 1213.00 ns (0.3%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 340.94 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.12 us    (67.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.7466195854691725e-05,0.00011336901937806921,-9.32318106799055e-07)
    sum a = (-0.00026281764699048006,-0.00027889326646197374,-7.213923948294791e-06)
    sum e = 0.05023697617986279
    sum de = 0.0005639737294597327
Info: cfl dt = 0.00546099809863567 cfl multiplier : 0.9999883833757742         [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7769e+05    |      100000 |   5.628e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 30.93542545684717 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 29                                                      [SPH][rank=0]
Info: time since start : 1098.706749355 (s)                                           [SPH][rank=0]
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1765.56 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.13, dt = 0.00546099809863567 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.26 us   (2.4%)
   patch tree reduce : 1894.00 ns (0.4%)
   gen split merge   : 681.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.2%)
   LB compute        : 435.53 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.17 us    (63.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.8885258010880953e-05,0.00011183210061709955,-9.717213645681257e-07)
    sum a = (-0.00025509098883459225,-0.00028518585836009587,-7.2173299957853215e-06)
    sum e = 0.05024199885133217
    sum de = 0.0005859720932459505
Info: cfl dt = 0.005308624860097057 cfl multiplier : 0.9999922555838495        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7652e+05    |      100000 |   5.665e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 34.70263550610367 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.13546099809863568, dt = 0.004539001901364331 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.35 us    (2.0%)
   patch tree reduce : 1343.00 ns (0.4%)
   gen split merge   : 691.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1163.00 ns (0.3%)
   LB compute        : 342.01 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (71.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.0022018861475192e-05,0.00011052045954756299,-1.004490139351201e-06)
    sum a = (-0.00024853699835744835,-0.0002902579658150586,-7.219823094388509e-06)
    sum e = 0.05024202729902487
    sum de = 0.0006047926547880239
Info: cfl dt = 0.005190780166656547 cfl multiplier : 0.9999948370558996        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7700e+05    |      100000 |   5.650e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 28.921837649493465 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 31                                                      [SPH][rank=0]
Info: time since start : 1101.62988104 (s)                                            [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000007.vtk        [VTK Dump][rank=0]
              - took 8.76 ms, bandwidth = 609.50 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump_0000007.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.94 us    (57.1%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000007.sham  [Shamrock Dump][rank=0]
              - took 11.80 ms, bandwidth = 970.56 MB/s
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1773.58 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.14, dt = 0.005190780166656547 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.79 us   (2.3%)
   patch tree reduce : 1353.00 ns (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.2%)
   LB compute        : 451.16 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (68.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.12972454956042e-05,0.00010900228310270374,-1.0419723119659762e-06)
    sum a = (-0.00024089910037930476,-0.0002958786842443016,-7.222240162243865e-06)
    sum e = 0.05024707753702821
    sum de = 0.0006251400575829896
Info: cfl dt = 0.005064366990728521 cfl multiplier : 0.9999965580372665        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7446e+05    |      100000 |   5.732e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 32.600981287137415 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.14519078016665657, dt = 0.0048092198333434255 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.86 us    (1.8%)
   patch tree reduce : 1082.00 ns (0.3%)
   gen split merge   : 671.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 363.32 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (71.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.243595890231542e-05,0.00010756474950930426,-1.0767119258293456e-06)
    sum a = (-0.0002336911512254,-0.00030091121442363315,-7.22401266414795e-06)
    sum e = 0.0502490279371726
    sum de = 0.0006441755752199436
Info: cfl dt = 0.004955496827496495 cfl multiplier : 0.9999977053581777        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7666e+05    |      100000 |   5.661e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 30.58512896988939 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 33                                                      [SPH][rank=0]
Info: time since start : 1104.5953894410002 (s)                                       [SPH][rank=0]
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1784.49 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.15, dt = 0.004955496827496495 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 15.59 us   (3.0%)
   patch tree reduce : 1433.00 ns (0.3%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1483.00 ns (0.3%)
   LB compute        : 490.29 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.96 us    (79.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.3576682354812375e-05,0.0001060614836688924,-1.1125147598439838e-06)
    sum a = (-0.00022613592690773625,-0.00030591711613063766,-7.225321096752742e-06)
    sum e = 0.05025269513525831
    sum de = 0.0006631597393733457
Info: cfl dt = 0.004846909655495616 cfl multiplier : 0.9999984702387851        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7652e+05    |      100000 |   5.665e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 31.49045085064585 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.1549554968274965, dt = 0.004846909655495616 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (1.5%)
   patch tree reduce : 1272.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.2%)
   LB compute        : 413.09 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (75.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.4654022817323284e-05,0.00010456632767992811,-1.1475384803986993e-06)
    sum a = (-0.00021862498818600286,-0.00031063341196455686,-7.2260493477164725e-06)
    sum e = 0.05025565403927629
    sum de = 0.0006814845490925754
Info: cfl dt = 0.004719077526751046 cfl multiplier : 0.99999898015919          [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7636e+05    |      100000 |   5.670e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 30.772683972893255 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1598024064829921, dt = 0.00019759351700790462 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.22 us    (1.9%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 691.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 356.60 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (68.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.467901927694307e-05,0.00010449351880165279,-1.1489680657866975e-06)
    sum a = (-0.0002183163414509542,-0.00031082184273134665,-7.226066785760992e-06)
    sum e = 0.05024892829906571
    sum de = 0.0006832347755739515
Info: cfl dt = 0.004715402148319212 cfl multiplier : 0.9999993201061267        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.8141e+05    |      100000 |   5.512e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 1.290449998463271 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 36                                                      [SPH][rank=0]
Info: time since start : 1108.092096428 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000008.vtk        [VTK Dump][rank=0]
              - took 8.27 ms, bandwidth = 645.58 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump_0000008.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.99 us    (58.6%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000008.sham  [Shamrock Dump][rank=0]
              - took 11.68 ms, bandwidth = 980.27 MB/s
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1777.16 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.16, dt = 0.004715402148319212 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.74 us   (2.1%)
   patch tree reduce : 1373.00 ns (0.3%)
   gen split merge   : 681.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.2%)
   LB compute        : 485.91 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.03 us    (73.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.5708438129138456e-05,0.00010302785020034435,-1.1830418783550034e-06)
    sum a = (-0.000210893848376098,-0.0003152290642959827,-7.2261934155525195e-06)
    sum e = 0.05025868998063754
    sum de = 0.0006996871528488945
Info: cfl dt = 0.004599808217102479 cfl multiplier : 0.9999995467374179        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7706e+05    |      100000 |   5.648e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 30.057515223077726 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.16471540214831923, dt = 0.004599808217102479 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.35 us    (1.9%)
   patch tree reduce : 1472.00 ns (0.4%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 364.66 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (71.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.666100936594472e-05,0.00010156746604910915,-1.2162812807614252e-06)
    sum a = (-0.00020355214529313396,-0.0003193601338981121,-7.225758046340054e-06)
    sum e = 0.05026164170220737
    sum de = 0.000716320654999572
Info: cfl dt = 0.004587871258286102 cfl multiplier : 0.9999996978249452        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7691e+05    |      100000 |   5.652e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 29.295593125331425 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.16931521036542171, dt = 0.0006847896345782978 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.96 us    (1.7%)
   patch tree reduce : 1162.00 ns (0.3%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1422.00 ns (0.4%)
   LB compute        : 379.17 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 us    (72.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.678351455204581e-05,0.0001013392704757667,-1.221228403666091e-06)
    sum a = (-0.0002024509572665577,-0.0003199607393869387,-7.2256442221322214e-06)
    sum e = 0.05025606755472541
    sum de = 0.0007197122665890619
Info: cfl dt = 0.004578686660166847 cfl multiplier : 0.9999997985499635        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.8097e+05    |      100000 |   5.526e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 4.461261824309597 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 39                                                      [SPH][rank=0]
Info: time since start : 1111.604024936 (s)                                           [SPH][rank=0]
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1764.18 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.17, dt = 0.004578686660166847 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.20 us   (2.4%)
   patch tree reduce : 1443.00 ns (0.3%)
   gen split merge   : 691.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.2%)
   LB compute        : 438.31 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (72.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.7710097008353346e-05,9.987406486235614e-05,-1.2543123255042577e-06)
    sum a = (-0.00019503378201606147,-0.0003238802061926959,-7.224553037876951e-06)
    sum e = 0.050265415749506805
    sum de = 0.0007348267003448522
Info: cfl dt = 0.004505495343519926 cfl multiplier : 0.9999998656999756        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7625e+05    |      100000 |   5.674e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 29.05099116969597 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.17457868666016685, dt = 0.004505495343519926 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.01 us    (1.8%)
   patch tree reduce : 1272.00 ns (0.3%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 374.31 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (66.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.857184034436554e-05,9.840585109629849e-05,-1.286860017480027e-06)
    sum a = (-0.00018764681553169724,-0.0003275712139376108,-7.222902150711819e-06)
    sum e = 0.05026857621408829
    sum de = 0.0007501930283779574
Info: cfl dt = 0.004719470857268016 cfl multiplier : 0.9999999104666504        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7470e+05    |      100000 |   5.724e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 28.3352292568732 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.17908418200368678, dt = 0.0009158179963132118 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (1.8%)
   patch tree reduce : 1282.00 ns (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 335.17 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (70.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.872704970342893e-05,9.809754057439305e-05,-1.2934711622230456e-06)
    sum a = (-0.0001861350486698457,-0.000328301110336733,-7.222494817204276e-06)
    sum e = 0.05026354501550272
    sum de = 0.0007542089073244554
Info: cfl dt = 0.004697758196759048 cfl multiplier : 0.9999999403111003        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7934e+05    |      100000 |   5.576e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 5.912767419948029 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 42                                                      [SPH][rank=0]
Info: time since start : 1115.091726584 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000009.vtk        [VTK Dump][rank=0]
              - took 8.27 ms, bandwidth = 646.05 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump_0000009.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (54.9%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000009.sham  [Shamrock Dump][rank=0]
              - took 11.66 ms, bandwidth = 982.19 MB/s
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1773.09 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.18, dt = 0.004697758196759048 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.95 us   (2.4%)
   patch tree reduce : 1543.00 ns (0.3%)
   gen split merge   : 712.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.2%)
   LB compute        : 460.67 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.61 us    (76.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.9600774902381296e-05,9.655492711617487e-05,-1.3274005099299334e-06)
    sum a = (-0.000178326409050631,-0.00033193649749208926,-7.2200219845130415e-06)
    sum e = 0.05027337308413181
    sum de = 0.0007685735494063166
Info: cfl dt = 0.004943352828651576 cfl multiplier : 0.9999999602074002        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7645e+05    |      100000 |   5.667e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 29.840532089981657 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.18469775819675904, dt = 0.004943352828651576 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.19 us    (1.9%)
   patch tree reduce : 1303.00 ns (0.3%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.4%)
   LB compute        : 356.08 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (70.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.046396371059025e-05,9.49055088074657e-05,-1.3630858176449851e-06)
    sum a = (-0.00017001697426839441,-0.0003355631497493364,-7.216710876829277e-06)
    sum e = 0.050277921356268775
    sum de = 0.0007839775207250747
Info: cfl dt = 0.004967178158986556 cfl multiplier : 0.9999999734716001        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7669e+05    |      100000 |   5.660e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 31.443604619458053 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.18964111102541062, dt = 0.00035888897458938307 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (1.7%)
   patch tree reduce : 1222.00 ns (0.3%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 362.90 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (72.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.050444269417917e-05,9.477611498189787e-05,-1.3656676316247113e-06)
    sum a = (-0.00016941021971542,-0.00033581841688211156,-7.216441379193999e-06)
    sum e = 0.05027103705377568
    sum de = 0.0007863059172409965
Info: cfl dt = 0.00525826295009665 cfl multiplier : 0.9999999823144            [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.8192e+05    |      100000 |   5.497e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 2.3504371936239576 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 45                                                      [SPH][rank=0]
Info: time since start : 1118.599030027 (s)                                           [SPH][rank=0]
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1774.90 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.19, dt = 0.00525826295009665 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.90 us   (2.3%)
   patch tree reduce : 1583.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1383.00 ns (0.3%)
   LB compute        : 448.90 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (71.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.13951372971187e-05,9.301024763616986e-05,-1.4036135296006004e-06)
    sum a = (-0.00016046643385166583,-0.0003394334173299963,-7.212041252194016e-06)
    sum e = 0.050283336880525144
    sum de = 0.0008006341451466771
Info: cfl dt = 0.005097669070712842 cfl multiplier : 0.9999999882095999        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7687e+05    |      100000 |   5.654e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 33.48023959966553 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.19525826295009666, dt = 0.004741737049903355 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.79 us    (1.9%)
   patch tree reduce : 1654.00 ns (0.5%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 341.37 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.70 us    (70.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.213251254286048e-05,9.139123931377121e-05,-1.437799564299175e-06)
    sum a = (-0.000152320300374125,-0.0003424903359089329,-7.207325855717498e-06)
    sum e = 0.05028565577324873
    sum de = 0.0008145194625302152
Info: cfl dt = 0.004966794298660491 cfl multiplier : 0.9999999921397332        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7630e+05    |      100000 |   5.672e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 30.09408397479821 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 47                                                      [SPH][rank=0]
Info: time since start : 1121.532325356 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000010.vtk        [VTK Dump][rank=0]
              - took 8.05 ms, bandwidth = 663.53 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump_0000010.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (55.3%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000010.sham  [Shamrock Dump][rank=0]
              - took 11.74 ms, bandwidth = 975.55 MB/s
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1769.68 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.2, dt = 0.004966794298660491 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.72 us   (2.3%)
   patch tree reduce : 1573.00 ns (0.3%)
   gen split merge   : 691.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.3%)
   LB compute        : 474.00 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (73.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.286974273085814e-05,8.968291271398595e-05,-1.4735856896828517e-06)
    sum a = (-0.0001437104911477837,-0.0003454837757500419,-7.2016057123668485e-06)
    sum e = 0.05029039565313935
    sum de = 0.000827871970432541
Info: cfl dt = 0.005223874537592578 cfl multiplier : 0.9999999947598223        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7524e+05    |      100000 |   5.706e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 31.333720382183422 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2049667942986605, dt = 0.005033205701339499 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.83 us    (1.8%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1053.00 ns (0.3%)
   LB compute        : 334.13 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (69.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.3571685618563205e-05,8.793658790419721e-05,-1.5098186472254468e-06)
    sum a = (-0.0001349109518160117,-0.00034829740321362364,-7.194969165559561e-06)
    sum e = 0.05029480804189983
    sum de = 0.0008406976695074745
Info: cfl dt = 0.005245728853410421 cfl multiplier : 0.9999999965065482        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7250e+05    |      100000 |   5.797e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 31.25627242539759 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 49                                                      [SPH][rank=0]
Info: time since start : 1124.503859568 (s)                                           [SPH][rank=0]
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1778.44 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.21, dt = 0.005245728853410421 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 15.68 us   (3.2%)
   patch tree reduce : 1422.00 ns (0.3%)
   gen split merge   : 732.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.2%)
   LB compute        : 459.99 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.08 us    (75.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.4257246945376365e-05,8.610243338369762e-05,-1.5475448030240085e-06)
    sum a = (-0.00012566629407680796,-0.00035099220505901225,-7.18712363857921e-06)
    sum e = 0.050299917397999425
    sum de = 0.0008530514759981558
Info: cfl dt = 0.005033766220493969 cfl multiplier : 0.9999999976710322        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7483e+05    |      100000 |   5.720e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 33.01602539103294 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.21524572885341042, dt = 0.004754271146589578 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.05 us    (2.1%)
   patch tree reduce : 1323.00 ns (0.4%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1453.00 ns (0.4%)
   LB compute        : 353.45 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (70.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.483045109748092e-05,8.442665317061646e-05,-1.5816937598122489e-06)
    sum a = (-0.00011722877710833715,-0.000353223318388826,-7.179166265729072e-06)
    sum e = 0.050302554617651894
    sum de = 0.0008639423343879889
Info: cfl dt = 0.005077188472717679 cfl multiplier : 0.9999999984473549        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7500e+05    |      100000 |   5.714e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 29.951852685291502 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 51                                                      [SPH][rank=0]
Info: time since start : 1127.4514370460001 (s)                                       [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000011.vtk        [VTK Dump][rank=0]
              - took 8.15 ms, bandwidth = 655.03 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump_0000011.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.08 us    (57.7%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000011.sham  [Shamrock Dump][rank=0]
              - took 11.64 ms, bandwidth = 983.78 MB/s
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1770.15 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.22, dt = 0.005077188472717679 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.20 us   (2.3%)
   patch tree reduce : 1432.00 ns (0.3%)
   gen split merge   : 711.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.2%)
   LB compute        : 454.01 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (69.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.540558657154821e-05,8.262796815132415e-05,-1.6181248242662653e-06)
    sum a = (-0.0001081618987774164,-0.00035538271365516963,-7.169754990428898e-06)
    sum e = 0.05030792918173949
    sum de = 0.0008741005255493388
Info: cfl dt = 0.0052006881873160275 cfl multiplier : 0.9999999989649032       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7343e+05    |      100000 |   5.766e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 31.699152429621506 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.22507718847271768, dt = 0.004922811527282328 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (1.8%)
   patch tree reduce : 1443.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.3%)
   LB compute        : 361.64 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (70.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.591503008859838e-05,8.087300420356983e-05,-1.6533962853716968e-06)
    sum a = (-9.932118322588846e-05,-0.0003572549139814935,-7.159706421644528e-06)
    sum e = 0.05031181229154753
    sum de = 0.0008833526570325709
Info: cfl dt = 0.0050671452336652 cfl multiplier : 0.9999999993099354          [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7563e+05    |      100000 |   5.694e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 31.12585872513649 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 53                                                      [SPH][rank=0]
Info: time since start : 1130.418744327 (s)                                           [SPH][rank=0]
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1779.86 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.23, dt = 0.0050671452336652 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.88 us   (2.2%)
   patch tree reduce : 1563.00 ns (0.3%)
   gen split merge   : 682.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.2%)
   LB compute        : 479.11 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (72.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.639654436056748e-05,7.905813342430851e-05,-1.6896508240354566e-06)
    sum a = (-9.017632046061392e-05,-0.00035895300114613285,-7.14839817589621e-06)
    sum e = 0.05031675873408363
    sum de = 0.0008916769149356725
Info: cfl dt = 0.004902431416360152 cfl multiplier : 0.999999999539957         [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7602e+05    |      100000 |   5.681e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 32.10821416406148 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2350671452336652, dt = 0.004902431416360152 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.21 us    (1.9%)
   patch tree reduce : 1432.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 359.79 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (69.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.6815458413124495e-05,7.729408872735978e-05,-1.724666705567849e-06)
    sum a = (-8.12913121407247e-05,-0.00036037378142724413,-7.1365168496081915e-06)
    sum e = 0.050320674730783464
    sum de = 0.0008989784562043207
Info: cfl dt = 0.00493186313756195 cfl multiplier : 0.9999999996933046         [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7465e+05    |      100000 |   5.726e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 30.824387910325594 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.23996957665002536, dt = 3.042334997463425e-05 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.13 us    (2.0%)
   patch tree reduce : 1343.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 343.45 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (71.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.6796152495197714e-05,7.7279642310744e-05,-1.7248546986239342e-06)
    sum a = (-8.123607697991847e-05,-0.0003603819143617144,-7.136440204316002e-06)
    sum e = 0.050313497345415896
    sum de = 0.000900424901180073
Info: cfl dt = 0.004935917078601979 cfl multiplier : 0.9999999997955363        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.8453e+05    |      100000 |   5.419e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 0.20210189380664598 (tsim/hr)                           [sph::Model][rank=0]
Info: iteration since start : 56                                                      [SPH][rank=0]
Info: time since start : 1133.907687265 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000012.vtk        [VTK Dump][rank=0]
              - took 8.26 ms, bandwidth = 646.46 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump_0000012.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (55.8%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000012.sham  [Shamrock Dump][rank=0]
              - took 12.05 ms, bandwidth = 949.77 MB/s
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1788.09 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.24, dt = 0.004935917078601979 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.17 us   (2.5%)
   patch tree reduce : 1853.00 ns (0.4%)
   gen split merge   : 682.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.2%)
   LB compute        : 453.81 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.33 us    (68.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.719712619474007e-05,7.55008269410999e-05,-1.760079574542939e-06)
    sum a = (-7.225880898767795e-05,-0.0003615895539448222,-7.123539666437868e-06)
    sum e = 0.050325271430894776
    sum de = 0.0009052235923614534
Info: cfl dt = 0.004983406274042229 cfl multiplier : 0.9999999998636909        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7389e+05    |      100000 |   5.751e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 30.89956172311946 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.24493591707860196, dt = 0.004983406274042229 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.21 us    (1.9%)
   patch tree reduce : 1283.00 ns (0.3%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.3%)
   LB compute        : 359.26 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.80 us    (71.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.753506567160832e-05,7.369589888492715e-05,-1.7955472288174328e-06)
    sum a = (-6.316918573197932e-05,-0.0003625827422718432,-7.109578766835804e-06)
    sum e = 0.050329956122957625
    sum de = 0.0009104089046255106
Info: cfl dt = 0.005089870354966003 cfl multiplier : 0.9999999999091272        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7630e+05    |      100000 |   5.672e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 31.629214660178924 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2499193233526442, dt = 8.06766473558096e-05 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.95 us    (1.8%)
   patch tree reduce : 1373.00 ns (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.3%)
   LB compute        : 358.31 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (69.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.7517513306942096e-05,7.366417219442238e-05,-1.7960860193791206e-06)
    sum a = (-6.302186879523049e-05,-0.00036259694969374294,-7.109345071112349e-06)
    sum e = 0.05032255880134876
    sum de = 0.0009119830677595934
Info: cfl dt = 0.00509220949896778 cfl multiplier : 0.9999999999394182         [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.8232e+05    |      100000 |   5.485e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 0.529528492393928 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 59                                                      [SPH][rank=0]
Info: time since start : 1137.4407253900001 (s)                                       [SPH][rank=0]
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1838.03 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.25, dt = 0.00509220949896778 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.66 us   (2.1%)
   patch tree reduce : 1934.00 ns (0.4%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1153.00 ns (0.2%)
   LB compute        : 524.73 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (72.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.783842792334906e-05,7.181775198979793e-05,-1.8322882844547816e-06)
    sum a = (-5.3712773886759495e-05,-0.00036337296616463223,-7.09411580137504e-06)
    sum e = 0.05033502648032693
    sum de = 0.0009145751024687003
Info: cfl dt = 0.005159496876704882 cfl multiplier : 0.9999999999596122        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7365e+05    |      100000 |   5.759e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 31.833888099870236 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.25509220949896777, dt = 0.004907790501032239 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (1.6%)
   patch tree reduce : 1102.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 385.81 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (69.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.807833703405058e-05,7.003241777889454e-05,-1.8670659432819852e-06)
    sum a = (-4.472717388083352e-05,-0.00036389578313579947,-7.078562221860541e-06)
    sum e = 0.05033898620466226
    sum de = 0.0009176297870374078
Info: cfl dt = 0.00497431554711994 cfl multiplier : 0.9999999999730749         [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7555e+05    |      100000 |   5.696e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 31.01590946087686 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 61                                                      [SPH][rank=0]
Info: time since start : 1140.450067795 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000013.vtk        [VTK Dump][rank=0]
              - took 8.14 ms, bandwidth = 656.25 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump_0000013.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (57.2%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000013.sham  [Shamrock Dump][rank=0]
              - took 11.89 ms, bandwidth = 962.58 MB/s
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1787.94 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.26, dt = 0.00497431554711994 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.18 us   (2.1%)
   patch tree reduce : 1603.00 ns (0.3%)
   gen split merge   : 701.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.2%)
   LB compute        : 516.39 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.87 us    (72.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.8278774389289185e-05,6.822100238922546e-05,-1.902238778538542e-06)
    sum a = (-3.561196995951053e-05,-0.000364200225944539,-7.061960677310702e-06)
    sum e = 0.050343773363649376
    sum de = 0.00091939418953584
Info: cfl dt = 0.005215449796862962 cfl multiplier : 0.9999999999820499        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7546e+05    |      100000 |   5.699e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 31.419833885504165 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2649743155471199, dt = 0.005025684452880097 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.13 us    (1.8%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 1232.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.3%)
   LB compute        : 365.31 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (68.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.843507796276299e-05,6.638988977867193e-05,-1.9376886738607676e-06)
    sum a = (-2.6400696413719618e-05,-0.00036427751240228736,-7.044381021853295e-06)
    sum e = 0.05034857147856142
    sum de = 0.0009199804183658945
Info: cfl dt = 0.005115123312086232 cfl multiplier : 0.9999999999880332        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7554e+05    |      100000 |   5.697e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 31.7592250438925 (tsim/hr)                              [sph::Model][rank=0]
Info: iteration since start : 63                                                      [SPH][rank=0]
Info: time since start : 1143.430183102 (s)                                           [SPH][rank=0]
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1793.16 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.27, dt = 0.005115123312086232 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.33 us   (2.2%)
   patch tree reduce : 1843.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.2%)
   LB compute        : 484.96 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.67 us    (71.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.8546974303320645e-05,6.452637117422437e-05,-1.9736773765443067e-06)
    sum a = (-1.7029733651062938e-05,-0.0003641189152465982,-7.025713949825946e-06)
    sum e = 0.0503535723871939
    sum de = 0.0009192704988331683
Info: cfl dt = 0.005004666165184032 cfl multiplier : 0.999999999992022         [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7454e+05    |      100000 |   5.729e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 32.140195685631355 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.27511512331208626, dt = 0.004884876687913764 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.87 us    (1.7%)
   patch tree reduce : 1323.00 ns (0.3%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.4%)
   LB compute        : 378.25 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (72.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.86061956371865e-05,6.274810079551846e-05,-2.0079493806461217e-06)
    sum a = (-8.090503567574994e-06,-0.0003637446553840298,-7.007214948923527e-06)
    sum e = 0.050357379449182754
    sum de = 0.0009176488184025894
Info: cfl dt = 0.005043041615156821 cfl multiplier : 0.9999999999946813        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7254e+05    |      100000 |   5.796e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 30.341818873995564 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 65                                                      [SPH][rank=0]
Info: time since start : 1146.401846127 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000014.vtk        [VTK Dump][rank=0]
              - took 8.63 ms, bandwidth = 618.69 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump_0000014.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (55.9%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000014.sham  [Shamrock Dump][rank=0]
              - took 11.82 ms, bandwidth = 968.61 MB/s
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1790.29 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.28, dt = 0.005043041615156821 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.17 us   (2.2%)
   patch tree reduce : 1402.00 ns (0.3%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.2%)
   LB compute        : 478.08 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.46 us    (77.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.862516286504967e-05,6.0914635467777554e-05,-2.0432418745707577e-06)
    sum a = (1.12230080724199e-06,-0.00036313072694453866,-6.987488579865189e-06)
    sum e = 0.05036249817852819
    sum de = 0.0009144008836504134
Info: cfl dt = 0.004938996222910223 cfl multiplier : 0.9999999999964541        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7510e+05    |      100000 |   5.711e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 31.78966860259172 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.28504304161515687, dt = 0.004938996222910223 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.60 us    (1.9%)
   patch tree reduce : 1754.00 ns (0.4%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 379.06 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (71.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.859638954767657e-05,5.9122682212302215e-05,-2.0777033138243004e-06)
    sum a = (1.01236712220894e-05,-0.000362306388076935,-6.967607682987832e-06)
    sum e = 0.050366707819407934
    sum de = 0.0009101644598843698
Info: cfl dt = 0.0047806110427329514 cfl multiplier : 0.999999999997636        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7408e+05    |      100000 |   5.744e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 30.95276255240689 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2899820378380671, dt = 1.7962161932894016e-05 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (1.9%)
   patch tree reduce : 1373.00 ns (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1073.00 ns (0.3%)
   LB compute        : 339.33 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (72.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.857397883741138e-05,5.9118210109570725e-05,-2.0777793712845015e-06)
    sum a = (1.0156358364126557e-05,-0.0003623029892194554,-6.967534406536164e-06)
    sum e = 0.05035926496095652
    sum de = 0.0009117023412834317
Info: cfl dt = 0.004780726245902642 cfl multiplier : 0.999999999998424         [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.8598e+05    |      100000 |   5.377e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 0.12026017952101724 (tsim/hr)                           [sph::Model][rank=0]
Info: iteration since start : 68                                                      [SPH][rank=0]
Info: time since start : 1149.928585564 (s)                                           [SPH][rank=0]
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1802.75 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.29, dt = 0.004780726245902642 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.70 us   (2.3%)
   patch tree reduce : 1633.00 ns (0.3%)
   gen split merge   : 741.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.2%)
   LB compute        : 478.04 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.89 us    (72.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.8525423774851345e-05,5.7386138730556966e-05,-2.111089245232954e-06)
    sum a = (1.884384398893612e-05,-0.00036129514742997044,-6.947813311036995e-06)
    sum e = 0.05037061099315622
    sum de = 0.0009049037712258035
Info: cfl dt = 0.004981717725309793 cfl multiplier : 0.9999999999989493        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7431e+05    |      100000 |   5.737e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 29.999875830484065 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2947807262459026, dt = 0.004981717725309793 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.89 us    (2.2%)
   patch tree reduce : 1162.00 ns (0.3%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1393.00 ns (0.4%)
   LB compute        : 339.73 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (67.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.8410782817968785e-05,5.558867739838654e-05,-2.145654149377266e-06)
    sum a = (2.786490022497552e-05,-0.000360027337630015,-6.926825240903584e-06)
    sum e = 0.05037572338403683
    sum de = 0.0008978764425531134
Info: cfl dt = 0.004765591190389644 cfl multiplier : 0.9999999999992996        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7465e+05    |      100000 |   5.726e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 31.321477911221727 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.29976244397121243, dt = 0.00023755602878755555 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (1.8%)
   patch tree reduce : 1182.00 ns (0.3%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 337.31 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (69.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.838169316505203e-05,5.550630866908454e-05,-2.1472473801531028e-06)
    sum a = (2.829412300358592e-05,-0.0003599613707403853,-6.925813693733724e-06)
    sum e = 0.05036833468739
    sum de = 0.0008991263157564156
Info: cfl dt = 0.004759431330254411 cfl multiplier : 0.9999999999995332        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.8028e+05    |      100000 |   5.547e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 1.5417625322318904 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 71                                                      [SPH][rank=0]
Info: time since start : 1153.458672405 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000015.vtk        [VTK Dump][rank=0]
              - took 8.38 ms, bandwidth = 637.15 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump_0000015.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.96 us    (56.8%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000015.sham  [Shamrock Dump][rank=0]
              - took 11.86 ms, bandwidth = 965.54 MB/s
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1800.50 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.3, dt = 0.004759431330254411 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.36 us   (2.3%)
   patch tree reduce : 1462.00 ns (0.3%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.3%)
   LB compute        : 457.94 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.93 us    (74.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.824697824733957e-05,5.3793105078912875e-05,-2.180210194684997e-06)
    sum a = (3.687560088307525e-05,-0.00035853414791616795,-6.905378017351822e-06)
    sum e = 0.0503795450471431
    sum de = 0.0008898710719752346
Info: cfl dt = 0.004949108200112636 cfl multiplier : 0.9999999999996888        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7480e+05    |      100000 |   5.721e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 29.950605834682303 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.3047594313302544, dt = 0.004949108200112636 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.21 us    (1.7%)
   patch tree reduce : 1272.00 ns (0.3%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 414.01 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.41 us    (76.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.804405543128585e-05,5.2022077171967585e-05,-2.214337026556334e-06)
    sum a = (4.575757522046386e-05,-0.0003568382657755435,-6.883803859723406e-06)
    sum e = 0.050384512435848794
    sum de = 0.0008802980606606622
Info: cfl dt = 0.005066080769271032 cfl multiplier : 0.9999999999997925        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7162e+05    |      100000 |   5.827e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 30.577751586173726 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.30970853953036703, dt = 0.0002914604696329648 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (1.7%)
   patch tree reduce : 1252.00 ns (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.3%)
   LB compute        : 369.12 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (71.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.8008739980909025e-05,5.1922269475537176e-05,-2.2162899968419363e-06)
    sum a = (4.6279159657576556e-05,-0.00035673171569007724,-6.882523319869412e-06)
    sum e = 0.05037724415572435
    sum de = 0.0008812914827891117
Info: cfl dt = 0.005057805798198493 cfl multiplier : 0.9999999999998618        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7939e+05    |      100000 |   5.574e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 1.8822534462600222 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 74                                                      [SPH][rank=0]
Info: time since start : 1157.023868949 (s)                                           [SPH][rank=0]
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1800.34 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.31, dt = 0.005057805798198493 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.37 us   (2.3%)
   patch tree reduce : 1613.00 ns (0.3%)
   gen split merge   : 1072.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1273.00 ns (0.3%)
   LB compute        : 459.62 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (65.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.777459296823322e-05,5.0118005263082745e-05,-2.2511002765820367e-06)
    sum a = (5.530443333751349e-05,-0.0003547645935294236,-6.860169206759698e-06)
    sum e = 0.05038954815216656
    sum de = 0.0008685552712113043
Info: cfl dt = 0.004989576937460118 cfl multiplier : 0.999999999999908         [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7422e+05    |      100000 |   5.740e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 31.722813627928456 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.3150578057981985, dt = 0.004942194201801531 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.77 us    (1.6%)
   patch tree reduce : 1082.00 ns (0.3%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.3%)
   LB compute        : 404.79 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.30 us    (66.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.747844367768253e-05,4.83696644068738e-05,-2.2849480336776094e-06)
    sum a = (6.407064398357822e-05,-0.00035262861959957956,-6.838093557421917e-06)
    sum e = 0.050393475268443955
    sum de = 0.0008565134723353306
Info: cfl dt = 0.004837486926671298 cfl multiplier : 0.9999999999999387        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7440e+05    |      100000 |   5.734e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 31.029547557986852 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 76                                                      [SPH][rank=0]
Info: time since start : 1159.997589476 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000016.vtk        [VTK Dump][rank=0]
              - took 8.32 ms, bandwidth = 641.61 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump_0000016.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.11 us    (56.1%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000016.sham  [Shamrock Dump][rank=0]
              - took 11.99 ms, bandwidth = 955.10 MB/s
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1797.31 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.32, dt = 0.004837486926671298 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.40 us   (2.2%)
   patch tree reduce : 1734.00 ns (0.3%)
   gen split merge   : 761.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.2%)
   LB compute        : 488.16 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.19 us    (71.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.714684061731767e-05,4.666910626857201e-05,-2.317972670791914e-06)
    sum a = (7.259633565106091e-05,-0.00035033523900988557,-6.816307924523775e-06)
    sum e = 0.05039728975803471
    sum de = 0.0008434862979367564
Info: cfl dt = 0.005015745720554116 cfl multiplier : 0.9999999999999591        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7413e+05    |      100000 |   5.743e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 30.324475016301296 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.3248374869266713, dt = 0.005015745720554116 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (1.8%)
   patch tree reduce : 1102.00 ns (0.3%)
   gen split merge   : 1073.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 354.85 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (72.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.6762094396454904e-05,4.491746089206573e-05,-2.3521088442371584e-06)
    sum a = (8.13748451517221e-05,-0.00034774774618541313,-6.793579171233547e-06)
    sum e = 0.05040204849981311
    sum de = 0.0008284469668194127
Info: cfl dt = 0.005242075348017714 cfl multiplier : 0.9999999999999728        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7465e+05    |      100000 |   5.726e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 31.53551088479355 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.32985323264722544, dt = 0.00014676735277457942 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.49 us    (2.0%)
   patch tree reduce : 1122.00 ns (0.3%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1293.00 ns (0.3%)
   LB compute        : 350.00 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.15 us    (75.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.67281358401173e-05,4.4872911978955834e-05,-2.3530489190444576e-06)
    sum a = (8.163069964456951e-05,-0.0003476688538060963,-6.792911803926666e-06)
    sum e = 0.05039435650744456
    sum de = 0.0008295986901847519
Info: cfl dt = 0.005245490757584188 cfl multiplier : 0.9999999999999819        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7975e+05    |      100000 |   5.563e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 0.9497537633205522 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 79                                                      [SPH][rank=0]
Info: time since start : 1163.551063959 (s)                                           [SPH][rank=0]
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1801.44 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.33, dt = 0.005245490757584188 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.18 us   (2.2%)
   patch tree reduce : 1533.00 ns (0.3%)
   gen split merge   : 811.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.2%)
   LB compute        : 535.12 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.58 us    (72.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.629992398405364e-05,4.304922400903e-05,-2.388681026155175e-06)
    sum a = (9.073798456334416e-05,-0.0003447305117763725,-6.7690270322057084e-06)
    sum e = 0.050407224594087356
    sum de = 0.00081075648627992
Info: cfl dt = 0.005120055149812608 cfl multiplier : 0.9999999999999879        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7415e+05    |      100000 |   5.742e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 32.88675908980043 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.3352454907575842, dt = 0.0047545092424158275 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.89 us    (1.8%)
   patch tree reduce : 1202.00 ns (0.3%)
   gen split merge   : 1073.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 361.08 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (69.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.5844623308374285e-05,4.1417906127622195e-05,-2.420801784067301e-06)
    sum a = (9.892584818003404e-05,-0.0003418698762374509,-6.747308125502128e-06)
    sum e = 0.05040953143849534
    sum de = 0.0007945220389904588
Info: cfl dt = 0.0049346713815279645 cfl multiplier : 0.999999999999992        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7240e+05    |      100000 |   5.801e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 29.508033300346096 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 81                                                      [SPH][rank=0]
Info: time since start : 1166.532929122 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000017.vtk        [VTK Dump][rank=0]
              - took 8.35 ms, bandwidth = 639.34 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump_0000017.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.89 us    (57.1%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000017.sham  [Shamrock Dump][rank=0]
              - took 12.15 ms, bandwidth = 942.67 MB/s
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1803.41 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.34, dt = 0.0049346713815279645 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.32 us   (2.2%)
   patch tree reduce : 1482.00 ns (0.3%)
   gen split merge   : 682.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.2%)
   LB compute        : 476.41 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.36 us    (70.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.5336992119852195e-05,3.973769109220379e-05,-2.4540459010052453e-06)
    sum a = (0.00010735346666230232,-0.0003387042435739282,-6.724737394877036e-06)
    sum e = 0.05041397047999892
    sum de = 0.0007759539985249293
Info: cfl dt = 0.004986929243096512 cfl multiplier : 0.9999999999999947        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7401e+05    |      100000 |   5.747e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 30.911989300552808 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.344934671381528, dt = 0.004986929243096512 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.83 us    (1.9%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 344.08 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (71.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.478083421373713e-05,3.805640767361586e-05,-2.4875260010026585e-06)
    sum a = (0.00011579399568888122,-0.00033530348369659906,-6.70194495501772e-06)
    sum e = 0.050417972945515546
    sum de = 0.0007560653019719498
Info: cfl dt = 0.005138142073994762 cfl multiplier : 0.9999999999999964        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7511e+05    |      100000 |   5.711e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 31.43731799097552 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.3499216006246245, dt = 7.839937537551522e-05 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.60 us    (1.9%)
   patch tree reduce : 1674.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.3%)
   LB compute        : 380.83 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.14 us    (72.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.475070987628903e-05,3.8038599764377374e-05,-2.4879945971585073e-06)
    sum a = (0.00011592604157139283,-0.0003352484191861657,-6.701586917706453e-06)
    sum e = 0.05041024182671154
    sum de = 0.0007572720778209103
Info: cfl dt = 0.005133836620172906 cfl multiplier : 0.9999999999999977        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.8140e+05    |      100000 |   5.513e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 0.5119898679616967 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 84                                                      [SPH][rank=0]
Info: time since start : 1170.0865530610001 (s)                                       [SPH][rank=0]
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1797.29 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.35000000000000003, dt = 0.005133836620172906 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.19 us   (2.3%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 681.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.2%)
   LB compute        : 458.48 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.98 us    (75.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.415555934268013e-05,3.6317491311613895e-05,-2.5223994354549515e-06)
    sum a = (0.00012453036866808302,-0.0003315342513592885,-6.678210477780827e-06)
    sum e = 0.05042234299279721
    sum de = 0.0007339245245093222
Info: cfl dt = 0.0047824562497385545 cfl multiplier : 0.9999999999999986       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7428e+05    |      100000 |   5.738e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 32.20939237783417 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.35513383662017295, dt = 0.0047824562497385545 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.41 us    (2.0%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 1022.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 357.88 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (67.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.353791169798911e-05,3.4741477224601326e-05,-2.554277679479815e-06)
    sum a = (0.00013246631066034665,-0.00032788407654599797,-6.656578596196463e-06)
    sum e = 0.05042472790069797
    sum de = 0.000712912584639401
Info: cfl dt = 0.005043844468745438 cfl multiplier : 0.9999999999999991        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7511e+05    |      100000 |   5.711e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 30.149176536115597 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.3599162928699115, dt = 8.370713008848396e-05 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.19 us    (1.8%)
   patch tree reduce : 1082.00 ns (0.3%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 374.15 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (72.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.3507846675602636e-05,3.4722759390217494e-05,-2.5547831558066655e-06)
    sum a = (0.00013260449808222985,-0.0003278185678322748,-6.656201446912908e-06)
    sum e = 0.050417596114006265
    sum de = 0.000713880817259032
Info: cfl dt = 0.005045622879167526 cfl multiplier : 0.9999999999999994        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.8006e+05    |      100000 |   5.554e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 0.5425980863601089 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 87                                                      [SPH][rank=0]
Info: time since start : 1173.610683928 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000018.vtk        [VTK Dump][rank=0]
              - took 8.75 ms, bandwidth = 610.58 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump_0000018.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.84 us    (57.7%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000018.sham  [Shamrock Dump][rank=0]
              - took 12.45 ms, bandwidth = 919.65 MB/s
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1807.59 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.36, dt = 0.005045622879167526 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.70 us   (1.5%)
   patch tree reduce : 1593.00 ns (0.2%)
   gen split merge   : 661.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.1%)
   LB compute        : 683.22 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.22 us    (76.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.2838768602557236e-05,3.306871326592095e-05,-2.5883678223305165e-06)
    sum a = (0.00014088971505919962,-0.00032376625024404734,-6.633606215338552e-06)
    sum e = 0.05042915501232743
    sum de = 0.0006887561880112524
Info: cfl dt = 0.004850232470896969 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7050e+05    |      100000 |   5.865e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 30.970709186176123 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.36504562287916753, dt = 0.004850232470896969 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.33 us    (2.0%)
   patch tree reduce : 1382.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1393.00 ns (0.4%)
   LB compute        : 351.23 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.13 us    (69.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.213451869159322e-05,3.1508594919172835e-05,-2.6204853510865977e-06)
    sum a = (0.00014876767092513436,-0.00031968013767964365,-6.612155087766112e-06)
    sum e = 0.050431847955717965
    sum de = 0.0006652166550710444
Info: cfl dt = 0.004688219044008069 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7276e+05    |      100000 |   5.788e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 30.165918203461747 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.3698958553500645, dt = 0.00010414464993552253 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.16 us    (1.8%)
   patch tree reduce : 1302.00 ns (0.3%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1502.00 ns (0.4%)
   LB compute        : 369.99 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (71.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.20999203759085e-05,3.148521124107577e-05,-2.6211219501857886e-06)
    sum a = (0.0001489358546973948,-0.0003195903644922351,-6.611697520447338e-06)
    sum e = 0.05042449539930355
    sum de = 0.0006660494550338184
Info: cfl dt = 0.00469144821613251 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7963e+05    |      100000 |   5.567e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 0.6734744667940633 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 90                                                      [SPH][rank=0]
Info: time since start : 1177.196881663 (s)                                           [SPH][rank=0]
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1800.94 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.37, dt = 0.00469144821613251 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.46 us   (2.3%)
   patch tree reduce : 1623.00 ns (0.3%)
   gen split merge   : 771.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.2%)
   LB compute        : 509.10 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (68.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.1401186768351726e-05,2.9985874270375677e-05,-2.6521403628971117e-06)
    sum a = (0.00015647054885238658,-0.00031545672036919624,-6.591252005259846e-06)
    sum e = 0.05043451730544069
    sum de = 0.0006410025485250481
Info: cfl dt = 0.004512671282297004 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7470e+05    |      100000 |   5.724e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 29.504663851281205 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.3746914482161325, dt = 0.004512671282297004 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.20 us    (1.9%)
   patch tree reduce : 1172.00 ns (0.3%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 356.80 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (73.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.0677412302299e-05,2.857201817623263e-05,-2.6818365569977497e-06)
    sum a = (0.00016363777297436413,-0.000311316193125439,-6.571891870642349e-06)
    sum e = 0.050436850765699606
    sum de = 0.0006174417730708115
Info: cfl dt = 0.004331090058722437 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7565e+05    |      100000 |   5.693e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 28.536032515300324 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.37920411949842947, dt = 0.0007958805015705339 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.06 us    (1.8%)
   patch tree reduce : 1152.00 ns (0.3%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 370.14 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (74.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.053100452622913e-05,2.8333590107496835e-05,-2.687023314634271e-06)
    sum a = (0.00016489330411565813,-0.0003105693054942536,-6.568508317979825e-06)
    sum e = 0.05043109388572822
    sum de = 0.0006143182794013931
Info: cfl dt = 0.004306112568069358 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7960e+05    |      100000 |   5.568e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 5.145937004288148 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 93                                                      [SPH][rank=0]
Info: time since start : 1180.7231554690002 (s)                                       [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000019.vtk        [VTK Dump][rank=0]
              - took 8.41 ms, bandwidth = 635.31 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump_0000019.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.24 us    (59.1%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000019.sham  [Shamrock Dump][rank=0]
              - took 12.13 ms, bandwidth = 943.60 MB/s
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1801.29 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.38, dt = 0.004306112568069358 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.78 us   (2.3%)
   patch tree reduce : 1883.00 ns (0.4%)
   gen split merge   : 702.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.2%)
   LB compute        : 490.35 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.38 us    (79.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.9820455770606675e-05,2.6996540934506718e-05,-2.715306704403997e-06)
    sum a = (0.00017164231561044965,-0.0003064409791465316,-6.550386142917091e-06)
    sum e = 0.05043936782240134
    sum de = 0.0005899924708185122
Info: cfl dt = 0.004151013118588954 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7476e+05    |      100000 |   5.722e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 27.091502038049715 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.38430611256806935, dt = 0.004151013118588954 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.45 us    (1.9%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 681.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1153.00 ns (0.3%)
   LB compute        : 374.01 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (67.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.909343526519923e-05,2.573338892897698e-05,-2.742458425152169e-06)
    sum a = (0.00017807483924273232,-0.0003023224779824904,-6.533196991718456e-06)
    sum e = 0.05044136339355785
    sum de = 0.0005669622570837931
Info: cfl dt = 0.004134470536922491 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7608e+05    |      100000 |   5.679e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 26.312080984736387 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.3884571256866583, dt = 0.0015428743133417133 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.90 us    (1.7%)
   patch tree reduce : 1232.00 ns (0.3%)
   gen split merge   : 1473.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 380.47 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.18 us    (70.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.8805337424880394e-05,2.527549131952975e-05,-2.7525026507786333e-06)
    sum a = (0.00018044663004413428,-0.0003007570527512813,-6.5268759879998965e-06)
    sum e = 0.05043751718457498
    sum de = 0.0005590840942079465
Info: cfl dt = 0.004470519551458531 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7812e+05    |      100000 |   5.614e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 9.893257747642352 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 96                                                      [SPH][rank=0]
Info: time since start : 1184.279541397 (s)                                           [SPH][rank=0]
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1796.84 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.39, dt = 0.004470519551458531 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.83 us   (2.2%)
   patch tree reduce : 1492.00 ns (0.3%)
   gen split merge   : 712.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.2%)
   LB compute        : 513.47 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.56 us    (73.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.79968175497229e-05,2.393215866215581e-05,-2.7816763012357923e-06)
    sum a = (0.00018726011699209233,-0.0002961143845190349,-6.508787148105088e-06)
    sum e = 0.05044555915052681
    sum de = 0.000532389176056661
Info: cfl dt = 0.004444160177119916 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7281e+05    |      100000 |   5.787e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 27.812078045761996 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.39447051955145856, dt = 0.004444160177119916 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.24 us    (1.9%)
   patch tree reduce : 1233.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 364.93 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (70.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.714937368172007e-05,2.2626556476164705e-05,-2.810561960624544e-06)
    sum a = (0.00019394285732494406,-0.00029134230943909126,-6.4911250974525725e-06)
    sum e = 0.05044780381955712
    sum de = 0.0005062120637386987
Info: cfl dt = 0.004324279099593191 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7481e+05    |      100000 |   5.721e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 27.967615397307583 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.39891467972857847, dt = 0.0010853202714215526 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.05 us    (1.8%)
   patch tree reduce : 1143.00 ns (0.3%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1503.00 ns (0.4%)
   LB compute        : 360.56 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (72.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.6924033982940784e-05,2.2320960694818846e-05,-2.8175676637860657e-06)
    sum a = (0.00019556055083253982,-0.0002901532891172936,-6.486858113252686e-06)
    sum e = 0.05044243503715037
    sum de = 0.0005007223028954061
Info: cfl dt = 0.00430358288613797 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7947e+05    |      100000 |   5.572e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 7.012234560284293 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 99                                                      [SPH][rank=0]
Info: time since start : 1187.810865531 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000020.vtk        [VTK Dump][rank=0]
              - took 8.38 ms, bandwidth = 637.30 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump_0000020.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.26 us    (54.6%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000020.sham  [Shamrock Dump][rank=0]
              - took 12.30 ms, bandwidth = 931.06 MB/s
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1825.16 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.4, dt = 0.00430358288613797 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.73 us   (2.4%)
   patch tree reduce : 1883.00 ns (0.4%)
   gen split merge   : 682.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.2%)
   LB compute        : 460.13 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.62 us    (76.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.608154508539136e-05,2.1072907199345618e-05,-2.845482079824844e-06)
    sum a = (0.0002019194737327112,-0.00028534637856360707,-6.470132157276292e-06)
    sum e = 0.05045006550806229
    sum de = 0.00047391703182742174
Info: cfl dt = 0.004196137267538695 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7488e+05    |      100000 |   5.718e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 27.09390446894315 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.404303582886138, dt = 0.004196137267538695 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (1.8%)
   patch tree reduce : 1182.00 ns (0.3%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1283.00 ns (0.4%)
   LB compute        : 343.39 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (68.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.522058018073746e-05,1.988589809509612e-05,-2.8725956517269417e-06)
    sum a = (0.0002080303542873701,-0.00028051861378605535,-6.454109686277746e-06)
    sum e = 0.050451718048404176
    sum de = 0.0004482388221151685
Info: cfl dt = 0.004585666274160739 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7591e+05    |      100000 |   5.685e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 26.572461404508754 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.4084997201536767, dt = 0.001500279846323338 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (1.8%)
   patch tree reduce : 1332.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 342.36 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (70.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.489565538595768e-05,1.947517065416023e-05,-2.882245006171388e-06)
    sum a = (0.0002101929640871292,-0.0002787589377202215,-6.448447281419258e-06)
    sum e = 0.05044748121825611
    sum de = 0.00043974222832584984
Info: cfl dt = 0.004529366782116382 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7759e+05    |      100000 |   5.631e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 9.591888930114312 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 102                                                     [SPH][rank=0]
Info: time since start : 1191.3929685990001 (s)                                       [SPH][rank=0]
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1806.30 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.41000000000000003, dt = 0.004529366782116382 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.60 us   (2.3%)
   patch tree reduce : 1592.00 ns (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.2%)
   LB compute        : 523.49 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.99 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (82.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.394199209663797e-05,1.821388918470066e-05,-2.9114481414881305e-06)
    sum a = (0.00021664979188710785,-0.00027333835282131755,-6.431574991293285e-06)
    sum e = 0.050455248927384184
    sum de = 0.00041050606610320856
Info: cfl dt = 0.004422602189190011 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7340e+05    |      100000 |   5.767e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 28.27379615073491 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.41452936678211644, dt = 0.004422602189190011 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.54 us    (1.9%)
   patch tree reduce : 1182.00 ns (0.3%)
   gen split merge   : 981.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 373.00 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (73.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.2969213582073186e-05,1.701729829571782e-05,-2.939854228729339e-06)
    sum a = (0.00022284518696580517,-0.00026788998785958607,-6.415407899263755e-06)
    sum e = 0.05045670669073715
    sum de = 0.00038251551178033593
Info: cfl dt = 0.00430627053008713 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7571e+05    |      100000 |   5.691e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 27.975922105059777 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.41895196897130643, dt = 0.0010480310286935524 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.39 us    (2.0%)
   patch tree reduce : 1482.00 ns (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 355.19 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.12 us    (69.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.272196502761533e-05,1.674858925156894e-05,-2.946542024961196e-06)
    sum a = (0.00022429683025492711,-0.00026657654983085357,-6.411618036098545e-06)
    sum e = 0.0504511954736011
    sum de = 0.00037669091837775487
Info: cfl dt = 0.004717285272333762 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7995e+05    |      100000 |   5.557e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 6.78934175029531 (tsim/hr)                              [sph::Model][rank=0]
Info: iteration since start : 105                                                     [SPH][rank=0]
Info: time since start : 1194.927708308 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000021.vtk        [VTK Dump][rank=0]
              - took 8.61 ms, bandwidth = 620.41 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump_0000021.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.97 us    (56.1%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000021.sham  [Shamrock Dump][rank=0]
              - took 12.43 ms, bandwidth = 921.13 MB/s
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1800.91 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.42, dt = 0.004717285272333762 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.62 us   (2.4%)
   patch tree reduce : 1844.00 ns (0.4%)
   gen split merge   : 681.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.3%)
   LB compute        : 458.89 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (71.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.166313221001838e-05,1.549175988100565e-05,-2.9767854703476287e-06)
    sum a = (0.0002307516329857365,-0.0002605577579938604,-6.394761491851932e-06)
    sum e = 0.050459679564792595
    sum de = 0.0003454118924639493
Info: cfl dt = 0.004463915388561095 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7486e+05    |      100000 |   5.719e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 29.695434288857825 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.42471728527233377, dt = 0.004463915388561095 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.10 us    (1.9%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 352.18 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (71.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.061785187166726e-05,1.4342848274525166e-05,-3.0052913860133206e-06)
    sum a = (0.00023673499980675296,-0.00025470297728133945,-6.379076210975888e-06)
    sum e = 0.05046042102945891
    sum de = 0.0003166145643810455
Info: cfl dt = 0.004270442072283346 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7615e+05    |      100000 |   5.677e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 28.3066808177505 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.4291812006608949, dt = 0.000818799339105114 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.89 us    (1.9%)
   patch tree reduce : 1362.00 ns (0.3%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.3%)
   LB compute        : 388.15 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.95 us    (68.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.0410658788672162e-05,1.4147365267931705e-05,-3.010479560515624e-06)
    sum a = (0.00023781878755801717,-0.0002536124408725487,-6.3762220235425974e-06)
    sum e = 0.05045450185667328
    sum de = 0.0003121065234299312
Info: cfl dt = 0.0042458286827467 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.5502e+05    |      100000 |   6.451e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 4.5694258441575855 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 108                                                     [SPH][rank=0]
Info: time since start : 1198.567112271 (s)                                           [SPH][rank=0]
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1793.60 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.43, dt = 0.0042458286827467 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.51 us   (2.3%)
   patch tree reduce : 1753.00 ns (0.3%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1123.00 ns (0.2%)
   LB compute        : 477.06 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (70.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.9400477256811592e-05,1.3071016757403623e-05,-3.037550738367356e-06)
    sum a = (0.000243369637525523,-0.0002478743003689389,-6.3615330192028276e-06)
    sum e = 0.050461340202651854
    sum de = 0.0002837835197767287
Info: cfl dt = 0.004086875524946902 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7523e+05    |      100000 |   5.707e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 26.783323241674694 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.4342458286827467, dt = 0.004086875524946902 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.07 us    (2.0%)
   patch tree reduce : 1383.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.3%)
   LB compute        : 339.07 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (69.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.839407186269293e-05,1.20701669267393e-05,-3.063518348466706e-06)
    sum a = (0.00024859890421561053,-0.00024222090347523448,-6.347514745177751e-06)
    sum e = 0.05046202648925466
    sum de = 0.00025714661495365807
Info: cfl dt = 0.004110965938438347 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7539e+05    |      100000 |   5.702e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 25.80428458425139 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.4383327042076936, dt = 0.0016672957923064002 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.72 us    (1.9%)
   patch tree reduce : 1222.00 ns (0.3%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 334.05 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.91 us    (67.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.7968898274700188e-05,1.1677865398265654e-05,-3.074072887622437e-06)
    sum a = (0.0002506989526421431,-0.0002398783603544935,-6.341811449672505e-06)
    sum e = 0.05045797437663398
    sum de = 0.0002468331822232961
Info: cfl dt = 0.0045163485000565785 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7900e+05    |      100000 |   5.587e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 10.743932193133169 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 111                                                     [SPH][rank=0]
Info: time since start : 1202.0867380880002 (s)                                       [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000022.vtk        [VTK Dump][rank=0]
              - took 8.46 ms, bandwidth = 631.49 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump_0000022.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (54.4%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000022.sham  [Shamrock Dump][rank=0]
              - took 11.95 ms, bandwidth = 957.85 MB/s
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1796.80 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.44, dt = 0.0045163485000565785 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.28 us   (2.4%)
   patch tree reduce : 1623.00 ns (0.3%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.2%)
   LB compute        : 440.22 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.88 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (72.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.683490373501513e-05,1.0596443981424823e-05,-3.102709963710504e-06)
    sum a = (0.0002562885257124555,-0.0002334275881929599,-6.326379622719206e-06)
    sum e = 0.05046468732038907
    sum de = 0.00021654238380745472
Info: cfl dt = 0.004262053644503354 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7372e+05    |      100000 |   5.756e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 28.24466549616595 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.44451634850005656, dt = 0.004262053644503354 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (1.8%)
   patch tree reduce : 1062.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.3%)
   LB compute        : 345.91 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (71.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.5729966059985707e-05,9.616130046029739e-06,-3.129638485283771e-06)
    sum a = (0.00026142512621947354,-0.00022720161704451562,-6.31173347907618e-06)
    sum e = 0.05046483936905053
    sum de = 0.00018873394039057293
Info: cfl dt = 0.0040685717016351675 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7599e+05    |      100000 |   5.682e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 27.002522676732685 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.4487784021445599, dt = 0.0012215978554401263 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.71 us    (1.9%)
   patch tree reduce : 1363.00 ns (0.3%)
   gen split merge   : 1022.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 374.53 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.64 us    (69.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.5399663452984603e-05,9.351848749407713e-06,-3.1373176740409654e-06)
    sum a = (0.00026287168124658835,-0.00022539285068748558,-6.307500354809716e-06)
    sum e = 0.05045970132475316
    sum de = 0.00018136506362405878
Info: cfl dt = 0.00402529526347619 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7924e+05    |      100000 |   5.579e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 7.882584501310366 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 114                                                     [SPH][rank=0]
Info: time since start : 1205.63831724 (s)                                            [SPH][rank=0]
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1803.86 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.45, dt = 0.00402529526347619 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.56 us   (2.2%)
   patch tree reduce : 1603.00 ns (0.3%)
   gen split merge   : 712.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.2%)
   LB compute        : 509.13 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.98 us    (75.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4340643765294478e-05,8.44568076766327e-06,-3.1627046397557997e-06)
    sum a = (0.00026755578898020186,-0.00021935646013531134,-6.293414557115934e-06)
    sum e = 0.050465114401506854
    sum de = 0.00015466959001319766
Info: cfl dt = 0.004090816540286808 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7541e+05    |      100000 |   5.701e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 25.418267025504438 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.4540252952634762, dt = 0.004090816540286808 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (1.9%)
   patch tree reduce : 1132.00 ns (0.3%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 336.30 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (69.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.323669465995016e-05,7.560482859473649e-06,-3.18842149437356e-06)
    sum a = (0.0002721820177696625,-0.00021310475255372985,-6.278779887342078e-06)
    sum e = 0.05046586824806303
    sum de = 0.00012808726144270265
Info: cfl dt = 0.0039150713243268015 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7688e+05    |      100000 |   5.654e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 26.04896523537827 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.458116111803763, dt = 0.0018838881962370269 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.72 us    (2.0%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.3%)
   LB compute        : 372.27 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.57 us    (71.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2714471642824303e-05,7.171804625965902e-06,-3.2002200798155063e-06)
    sum a = (0.0002742654532578387,-0.00021018715320344445,-6.271895023925267e-06)
    sum e = 0.050461852437302446
    sum de = 0.0001163946030855391
Info: cfl dt = 0.003844501670928321 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7929e+05    |      100000 |   5.577e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 12.159622064702859 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 117                                                     [SPH][rank=0]
Info: time since start : 1209.16208695 (s)                                            [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000023.vtk        [VTK Dump][rank=0]
              - took 8.41 ms, bandwidth = 634.85 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump_0000023.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.89 us    (56.9%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000023.sham  [Shamrock Dump][rank=0]
              - took 12.08 ms, bandwidth = 947.95 MB/s
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1801.47 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.46, dt = 0.003844501670928321 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.11 us   (1.5%)
   patch tree reduce : 1663.00 ns (0.2%)
   gen split merge   : 771.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1373.00 ns (0.2%)
   LB compute        : 771.01 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.48 us    (77.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1658095169728596e-05,6.3664879797563145e-06,-3.2243259055584146e-06)
    sum a = (0.00027842338333307625,-0.0002041586531840721,-6.257518102417878e-06)
    sum e = 0.05046587170775542
    sum de = 9.135848598890125e-05
Info: cfl dt = 0.0037903297695394203 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7302e+05    |      100000 |   5.780e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 23.946949588481612 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.46384450167092833, dt = 0.0037903297695394203 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (1.8%)
   patch tree reduce : 1213.00 ns (0.3%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1123.00 ns (0.3%)
   LB compute        : 343.81 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (69.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.059478614678588e-05,5.604247648083338e-06,-3.2480163266560615e-06)
    sum a = (0.00028239585754908877,-0.00019812032785569242,-6.242821137810643e-06)
    sum e = 0.050466041665396505
    sum de = 6.71847487084874e-05
Info: cfl dt = 0.0036982725683496432 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7615e+05    |      100000 |   5.677e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 24.036115229528555 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.46763483144046775, dt = 0.0023651685595322824 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.16 us    (2.0%)
   patch tree reduce : 1413.00 ns (0.4%)
   gen split merge   : 691.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 340.49 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (70.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9919343849532404e-05,5.147103299756929e-06,-3.262753797762759e-06)
    sum a = (0.0002848091087179821,-0.0001943063908678182,-6.233338649007908e-06)
    sum e = 0.050463356416340296
    sum de = 5.250983969189325e-05
Info: cfl dt = 0.003649631299098066 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7807e+05    |      100000 |   5.616e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 15.161595201740584 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 120                                                     [SPH][rank=0]
Info: time since start : 1212.724267511 (s)                                           [SPH][rank=0]
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1806.17 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.47000000000000003, dt = 0.003649631299098066 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.83 us   (2.1%)
   patch tree reduce : 1563.00 ns (0.3%)
   gen split merge   : 691.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.2%)
   LB compute        : 477.78 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.03 us    (77.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.887704173918515e-05,4.442466915963609e-06,-3.2854919717518683e-06)
    sum a = (0.0002884322428544979,-0.00018835356369732487,-6.218182571622048e-06)
    sum e = 0.050465997700347875
    sum de = 2.9370969442800367e-05
Info: cfl dt = 0.0035738835386304436 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7528e+05    |      100000 |   5.705e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 23.030020644911293 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.4736496312990981, dt = 0.0035738835386304436 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (1.7%)
   patch tree reduce : 1373.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 376.25 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (69.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.783960694256725e-05,3.7801760273973226e-06,-3.307687375037582e-06)
    sum a = (0.0002918589988995915,-0.00018244790159746118,-6.202641355353336e-06)
    sum e = 0.05046588827263869
    sum de = 7.152374385121862e-06
Info: cfl dt = 0.003944225458593093 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7503e+05    |      100000 |   5.713e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 22.51996708332314 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.4772235148377285, dt = 0.0027764851622714692 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.42 us    (2.2%)
   patch tree reduce : 1612.00 ns (0.4%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1713.00 ns (0.5%)
   LB compute        : 354.10 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (73.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7023141349132007e-05,3.2841652100007734e-06,-3.324881145479112e-06)
    sum a = (0.0002944366555867891,-0.00017780997461400348,-6.1900336483280644e-06)
    sum e = 0.050464252438163576
    sum de = -9.776555054864502e-06
Info: cfl dt = 0.004256282129741314 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7732e+05    |      100000 |   5.640e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 17.72342410435776 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 123                                                     [SPH][rank=0]
Info: time since start : 1216.262900014 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000024.vtk        [VTK Dump][rank=0]
              - took 8.65 ms, bandwidth = 617.50 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump_0000024.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.15 us    (54.8%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000024.sham  [Shamrock Dump][rank=0]
              - took 11.90 ms, bandwidth = 962.26 MB/s
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1810.75 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.48, dt = 0.004256282129741314 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.84 us   (2.2%)
   patch tree reduce : 1623.00 ns (0.3%)
   gen split merge   : 691.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.2%)
   LB compute        : 512.75 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (78.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.576635746085492e-05,2.533794360295232e-06,-3.351210172523252e-06)
    sum a = (0.0002982422857370304,-0.00017061866397105382,-6.169718303582569e-06)
    sum e = 0.050467512881450606
    sum de = -3.604586965739833e-05
Info: cfl dt = 0.004298483907168114 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7304e+05    |      100000 |   5.779e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 26.514994510436036 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.4842562821297413, dt = 0.004298483907168114 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.18 us    (1.9%)
   patch tree reduce : 1363.00 ns (0.4%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 363.54 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.53 us    (71.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4476268877370457e-05,1.8156969024392196e-06,-3.3776873734435625e-06)
    sum a = (0.0003019026288240407,-0.00016326191591650198,-6.1478614698221166e-06)
    sum e = 0.05046742105781448
    sum de = -6.190929909612212e-05
Info: cfl dt = 0.0042610323358487434 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7522e+05    |      100000 |   5.707e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 27.114898303594295 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.48855476603690945, dt = 0.001445233963090542 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (1.9%)
   patch tree reduce : 1233.00 ns (0.3%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.3%)
   LB compute        : 336.35 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (73.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4032081981721457e-05,1.5955566682406213e-06,-3.386525496016028e-06)
    sum a = (0.00030309119525008657,-0.00016076856345531958,-6.140183956674537e-06)
    sum e = 0.05046203976645277
    sum de = -7.008800207146276e-05
Info: cfl dt = 0.004231210627203045 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7925e+05    |      100000 |   5.579e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 9.325836439249684 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 126                                                     [SPH][rank=0]
Info: time since start : 1219.833495198 (s)                                           [SPH][rank=0]
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1817.03 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.49, dt = 0.004231210627203045 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.47 us   (2.4%)
   patch tree reduce : 1463.00 ns (0.3%)
   gen split merge   : 701.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.2%)
   LB compute        : 458.71 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (81.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2748780417088338e-05,9.171127528593586e-07,-3.4125003597251213e-06)
    sum a = (0.0003064483899339599,-0.00015341319471018992,-6.116712635788239e-06)
    sum e = 0.05046679154027088
    sum de = -9.522637712536823e-05
Info: cfl dt = 0.004068837483855155 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7554e+05    |      100000 |   5.697e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 26.73908118647065 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.49423121062720304, dt = 0.004068837483855155 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.29 us    (2.0%)
   patch tree reduce : 1333.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 335.47 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (69.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1494789222341734e-05,3.084604529052598e-07,-3.437338613324403e-06)
    sum a = (0.0003095016591372249,-0.0001462677004771289,-6.092643983731948e-06)
    sum e = 0.05046592318200519
    sum de = -0.00011860005794405447
Info: cfl dt = 0.004031308003699633 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7584e+05    |      100000 |   5.687e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 25.757275836348608 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.4983000481110582, dt = 0.0016999518889417864 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (1.9%)
   patch tree reduce : 1292.00 ns (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 329.46 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (71.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0962439664172566e-05,7.434932657758963e-08,-3.447646849256358e-06)
    sum a = (0.00031072579286128826,-0.0001432629861208431,-6.082126824436158e-06)
    sum e = 0.05046130626617413
    sum de = -0.00012792690567664817
Info: cfl dt = 0.0040336659934984255 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7859e+05    |      100000 |   5.599e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 10.929405983600567 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 129                                                     [SPH][rank=0]
Info: time since start : 1223.375825949 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000025.vtk        [VTK Dump][rank=0]
              - took 8.37 ms, bandwidth = 638.16 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump_0000025.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.08 us    (56.0%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000025.sham  [Shamrock Dump][rank=0]
              - took 12.02 ms, bandwidth = 952.34 MB/s
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1804.60 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.5, dt = 0.0040336659934984255 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.99 us   (2.3%)
   patch tree reduce : 1554.00 ns (0.3%)
   gen split merge   : 682.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.2%)
   LB compute        : 453.73 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.20 us    (78.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.708035115982988e-06,-5.009717737471732e-07,-3.472171178063824e-06)
    sum a = (0.0003135085845881207,-0.0001360899169410028,-6.056048034606122e-06)
    sum e = 0.05046505968760668
    sum de = -0.00015066392394456817
Info: cfl dt = 0.0043320124217076615 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7473e+05    |      100000 |   5.723e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 25.373409657164682 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5040336659934984, dt = 0.0043320124217076615 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (1.8%)
   patch tree reduce : 1182.00 ns (0.3%)
   gen split merge   : 682.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 352.63 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (69.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.34429960705111e-06,-1.0760481017927759e-06,-3.498353456812362e-06)
    sum a = (0.0003163043942725355,-0.00012832450978780079,-6.0262036147215685e-06)
    sum e = 0.05046516119683292
    sum de = -0.00017439718042768358
Info: cfl dt = 0.004204593776280714 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7396e+05    |      100000 |   5.749e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 27.12892218787468 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5083656784152061, dt = 0.0016343215847939296 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.86 us    (1.8%)
   patch tree reduce : 1442.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1143.00 ns (0.3%)
   LB compute        : 359.81 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (73.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.821300766989575e-06,-1.2689516978770768e-06,-3.5081375682554273e-06)
    sum a = (0.00031730683012438183,-0.0001253800735455169,-6.014430583864707e-06)
    sum e = 0.05045967992057587
    sum de = -0.00018283855611434335
Info: cfl dt = 0.004195206702237375 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7821e+05    |      100000 |   5.611e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 10.485368564652159 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 132                                                     [SPH][rank=0]
Info: time since start : 1226.941623743 (s)                                           [SPH][rank=0]
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1805.36 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.51, dt = 0.004195206702237375 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.67 us   (2.4%)
   patch tree reduce : 1503.00 ns (0.3%)
   gen split merge   : 671.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.2%)
   LB compute        : 449.75 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (74.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.489313875317984e-06,-1.792540944890129e-06,-3.5333597272917847e-06)
    sum a = (0.0003197490043673606,-0.0001177869959117057,-5.982891917001097e-06)
    sum e = 0.050463678346771096
    sum de = -0.00020513894759789517
Info: cfl dt = 0.004046165290129488 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7424e+05    |      100000 |   5.739e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 26.315670889711157 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5141952067022374, dt = 0.004046165290129488 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (1.8%)
   patch tree reduce : 1072.00 ns (0.3%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 346.23 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (70.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.1904338394130174e-06,-2.253199334284801e-06,-3.557501341287639e-06)
    sum a = (0.00032192485681062377,-0.00011042205935282174,-5.950618364774217e-06)
    sum e = 0.05046241061921208
    sum de = -0.00022583556310506303
Info: cfl dt = 0.003993324515596394 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7549e+05    |      100000 |   5.698e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 25.562519379860596 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5182413719923669, dt = 0.0017586280076331562 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (1.7%)
   patch tree reduce : 1093.00 ns (0.3%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 369.36 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (69.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.619885840550284e-06,-2.432490785189006e-06,-3.5679009733432713e-06)
    sum a = (0.0003228154515571545,-0.00010720997749508222,-5.936005922613123e-06)
    sum e = 0.05045772700285203
    sum de = -0.00023442283930923645
Info: cfl dt = 0.004238221143614482 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7935e+05    |      100000 |   5.576e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 11.354928501036232 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 135                                                     [SPH][rank=0]
Info: time since start : 1230.474909069 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000026.vtk        [VTK Dump][rank=0]
              - took 8.30 ms, bandwidth = 643.45 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump_0000026.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.12 us    (53.3%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000026.sham  [Shamrock Dump][rank=0]
              - took 11.94 ms, bandwidth = 958.84 MB/s
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1810.65 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.52, dt = 0.004238221143614482 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.22 us   (2.3%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 692.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.2%)
   LB compute        : 461.69 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (72.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.2509394558498283e-06,-2.8840459500530614e-06,-3.593046230228075e-06)
    sum a = (0.0003248251709954433,-9.944388313660206e-05,-5.899309418269938e-06)
    sum e = 0.05046147884521442
    sum de = -0.0002554214109175273
Info: cfl dt = 0.004156467912707866 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7613e+05    |      100000 |   5.678e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 26.87251146196254 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5242382211436145, dt = 0.004156467912707866 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (1.9%)
   patch tree reduce : 1222.00 ns (0.3%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 338.51 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (69.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8965552376581257e-06,-3.2809240467680268e-06,-3.6174887565819438e-06)
    sum a = (0.00032660848481001764,-9.179907771073015e-05,-5.861235501584565e-06)
    sum e = 0.05046015462293827
    sum de = -0.00027517279232499746
Info: cfl dt = 0.004000292569853458 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7551e+05    |      100000 |   5.698e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 26.262122244396043 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5283946890563224, dt = 0.0016053109436776625 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.53 us    (2.0%)
   patch tree reduce : 1694.00 ns (0.4%)
   gen split merge   : 671.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1133.00 ns (0.3%)
   LB compute        : 362.23 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (71.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3685409193791144e-06,-3.4124024166108454e-06,-3.626818735569614e-06)
    sum a = (0.0003272475322350865,-8.884046350347294e-05,-5.845966011896875e-06)
    sum e = 0.05045497406970289
    sum de = -0.000282407994429773
Info: cfl dt = 0.004033923319971104 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7844e+05    |      100000 |   5.604e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 10.312118386882158 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 138                                                     [SPH][rank=0]
Info: time since start : 1234.0362627460001 (s)                                       [SPH][rank=0]
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1816.01 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.53, dt = 0.004033923319971104 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.32 us   (2.3%)
   patch tree reduce : 1303.00 ns (0.3%)
   gen split merge   : 661.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1113.00 ns (0.2%)
   LB compute        : 458.75 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (72.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.793653277122871e-08,-3.7684032862161785e-06,-3.6503886580533063e-06)
    sum a = (0.0003287320171496975,-8.139260701986532e-05,-5.8061943384939346e-06)
    sum e = 0.05045820538036594
    sum de = -0.0003007891299390846
Info: cfl dt = 0.0039521110060426615 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7323e+05    |      100000 |   5.773e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 25.156445488575994 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5340339233199711, dt = 0.0039521110060426615 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.52 us    (2.0%)
   patch tree reduce : 1432.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 355.36 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (70.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.254243039398071e-06,-4.075053863250926e-06,-3.6732551646612816e-06)
    sum a = (0.0003300183420033003,-7.408216549328393e-05,-5.765257085538898e-06)
    sum e = 0.05045677139607652
    sum de = -0.0003180437920557845
Info: cfl dt = 0.0038566958982444053 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7555e+05    |      100000 |   5.696e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 24.976683451442618 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5379860343260138, dt = 0.002013965673986262 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.32 us    (1.9%)
   patch tree reduce : 1302.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 365.27 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 2.98 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (67.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.921430501283851e-06,-4.209806963398122e-06,-3.684785300249285e-06)
    sum a = (0.0003306100940689058,-7.035338537561736e-05,-5.743637534719983e-06)
    sum e = 0.05045240247609976
    sum de = -0.00032642563272712013
Info: cfl dt = 0.003803776850830074 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7843e+05    |      100000 |   5.605e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 12.936488519206117 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 141                                                     [SPH][rank=0]
Info: time since start : 1237.586006809 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000027.vtk        [VTK Dump][rank=0]
              - took 8.61 ms, bandwidth = 620.21 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump_0000027.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (54.1%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000027.sham  [Shamrock Dump][rank=0]
              - took 11.95 ms, bandwidth = 958.31 MB/s
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1812.99 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.54, dt = 0.003803776850830074 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.00 us   (2.1%)
   patch tree reduce : 1924.00 ns (0.4%)
   gen split merge   : 731.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.2%)
   LB compute        : 489.25 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.21 us    (77.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.179593407933484e-06,-4.473660724488311e-06,-3.706611045226799e-06)
    sum a = (0.0003316112317286877,-6.330610921198851e-05,-5.701400865084354e-06)
    sum e = 0.05045447823599925
    sum de = -0.0003421722800094441
Info: cfl dt = 0.0037738787840129926 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7502e+05    |      100000 |   5.714e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 23.96611832248602 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5438037768508301, dt = 0.0037738787840129926 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.43 us    (1.7%)
   patch tree reduce : 1242.00 ns (0.3%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 427.24 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.05 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.14 us    (76.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.432958052016221e-06,-4.699167173974487e-06,-3.728047111557585e-06)
    sum a = (0.0003324545601176096,-5.631191971774247e-05,-5.657668531593942e-06)
    sum e = 0.05045308467579421
    sum de = -0.00035714112446210404
Info: cfl dt = 0.0035974706273460754 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7636e+05    |      100000 |   5.670e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 23.96016781348387 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5475776556348432, dt = 0.00242234436515687 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.88 us    (1.9%)
   patch tree reduce : 1232.00 ns (0.3%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 344.45 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (70.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.239868791947123e-06,-4.822376423721721e-06,-3.7416694127822422e-06)
    sum a = (0.0003329175840215661,-5.1823283867201936e-05,-5.6286318608518565e-06)
    sum e = 0.05044951688321067
    sum de = -0.0003663161554643575
Info: cfl dt = 0.003974200699367627 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7757e+05    |      100000 |   5.632e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 15.484832204244233 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 144                                                     [SPH][rank=0]
Info: time since start : 1241.1537610990001 (s)                                       [SPH][rank=0]
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1859.90 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.55, dt = 0.003974200699367627 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.85 us   (2.1%)
   patch tree reduce : 1603.00 ns (0.3%)
   gen split merge   : 831.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.2%)
   LB compute        : 544.31 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 5.21 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (76.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.563510888867142e-06,-5.022896043830647e-06,-3.7640035570522547e-06)
    sum a = (0.00033354571243640027,-4.446222460906161e-05,-5.579347208956296e-06)
    sum e = 0.05045121869650212
    sum de = -0.00038112908892278273
Info: cfl dt = 0.003822835676682546 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7534e+05    |      100000 |   5.703e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 25.08543513310848 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5539742006993676, dt = 0.003822835676682546 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.79 us    (1.5%)
   patch tree reduce : 1233.00 ns (0.3%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 425.42 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (70.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.839849492367602e-06,-5.178240658908121e-06,-3.7852345510662336e-06)
    sum a = (0.00033399653803646985,-3.7389175503332974e-05,-5.529992442609581e-06)
    sum e = 0.050449355315700245
    sum de = -0.0003946745358471449
Info: cfl dt = 0.0036873623180295775 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7464e+05    |      100000 |   5.726e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 24.033985356918347 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5577970363760502, dt = 0.002202963623949894 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.97 us    (1.8%)
   patch tree reduce : 1102.00 ns (0.3%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 366.81 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (72.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.576493432282552e-06,-5.247088100238233e-06,-3.79732258567722e-06)
    sum a = (0.0003341884407212112,-3.33183033400196e-05,-5.500674824910067e-06)
    sum e = 0.050445344577772715
    sum de = -0.00040209078357250795
Info: cfl dt = 0.003685053637691267 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7751e+05    |      100000 |   5.633e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 14.077709551532037 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 147                                                     [SPH][rank=0]
Info: time since start : 1244.7467113730002 (s)                                       [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000028.vtk        [VTK Dump][rank=0]
              - took 8.49 ms, bandwidth = 629.29 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump_0000028.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.80 us    (55.6%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000028.sham  [Shamrock Dump][rank=0]
              - took 11.77 ms, bandwidth = 972.67 MB/s
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1820.90 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.56, dt = 0.003685053637691267 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.00 us   (2.1%)
   patch tree reduce : 2.02 us    (0.4%)
   gen split merge   : 722.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1513.00 ns (0.3%)
   LB compute        : 491.68 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.36 us    (75.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.808207138751979e-06,-5.365383843513521e-06,-3.8175605746278395e-06)
    sum a = (0.0003343994197273615,-2.651832944620063e-05,-5.450187779250683e-06)
    sum e = 0.05044663847367062
    sum de = -0.0004142383600174975
Info: cfl dt = 0.003858638949373562 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7579e+05    |      100000 |   5.689e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 23.320095628664347 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5636850536376913, dt = 0.003858638949373562 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.42 us    (1.8%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 394.64 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (69.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1098922498839551e-05,-5.4551793681181175e-06,-3.8384978577386194e-06)
    sum a = (0.00033447369238157146,-1.9414434031038036e-05,-5.395357695415486e-06)
    sum e = 0.05044543489223761
    sum de = -0.00042634817911802207
Info: cfl dt = 0.003731423170691583 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7360e+05    |      100000 |   5.761e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 24.114291581064943 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5675436925870648, dt = 0.0024563074129352325 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.11 us    (1.7%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.3%)
   LB compute        : 394.90 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (71.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1920636004546887e-05,-5.489161502581111e-06,-3.8516447300927695e-06)
    sum a = (0.0003344434236764821,-1.4902928035493875e-05,-5.359390789465868e-06)
    sum e = 0.050441539739070035
    sum de = -0.00043360570012657205
Info: cfl dt = 0.0036630240161652614 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7684e+05    |      100000 |   5.655e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 15.637883210686391 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 150                                                     [SPH][rank=0]
Info: time since start : 1248.330698572 (s)                                           [SPH][rank=0]
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1827.41 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.5700000000000001, dt = 0.0036630240161652614 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.65 us   (2.2%)
   patch tree reduce : 1583.00 ns (0.3%)
   gen split merge   : 681.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.2%)
   LB compute        : 502.23 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.75 us    (79.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3145673122897402e-05,-5.538210463076245e-06,-3.871232134377756e-06)
    sum a = (0.0003342873102558608,-8.19192318449648e-06,-5.304193655314857e-06)
    sum e = 0.05044229623098394
    sum de = -0.00044410553571624315
Info: cfl dt = 0.003564410068943921 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7639e+05    |      100000 |   5.669e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 23.26044399257894 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5736630240161653, dt = 0.003564410068943921 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (1.8%)
   patch tree reduce : 1383.00 ns (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1353.00 ns (0.4%)
   LB compute        : 336.83 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (69.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4336924253897557e-05,-5.5551185505871075e-06,-3.890037361436374e-06)
    sum a = (0.00033400895880493134,-1.683891417416641e-06,-5.248655606821924e-06)
    sum e = 0.050440466264879955
    sum de = -0.00045373506559803664
Info: cfl dt = 0.003711633049932839 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7542e+05    |      100000 |   5.700e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 22.5101146518069 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.5772274340851092, dt = 0.0027725659148907233 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.86 us    (1.9%)
   patch tree reduce : 1072.00 ns (0.3%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.3%)
   LB compute        : 347.55 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5262490028985936e-05,-5.548188603558211e-06,-3.9044906248812145e-06)
    sum a = (0.0003337070919440525,3.3612847002990953e-06,-5.204187349399965e-06)
    sum e = 0.05043759151765025
    sum de = -0.0004607761569153399
Info: cfl dt = 0.0038572358269694644 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7793e+05    |      100000 |   5.620e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 17.759800737685193 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 153                                                     [SPH][rank=0]
Info: time since start : 1251.883560023 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000029.vtk        [VTK Dump][rank=0]
              - took 8.44 ms, bandwidth = 633.16 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump_0000029.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.13 us    (56.1%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000029.sham  [Shamrock Dump][rank=0]
              - took 11.82 ms, bandwidth = 968.48 MB/s
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1843.92 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.58, dt = 0.0038572358269694644 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.92 us   (2.2%)
   patch tree reduce : 1523.00 ns (0.3%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.2%)
   LB compute        : 509.99 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (78.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6549258506858667e-05,-5.528229294122923e-06,-3.924502757188181e-06)
    sum a = (0.0003331643357648591,1.0353530620675656e-05,-5.140446255140517e-06)
    sum e = 0.050438094698793096
    sum de = -0.00047015541428798715
Info: cfl dt = 0.003688162127670504 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7508e+05    |      100000 |   5.712e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 24.311026566487133 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5838572358269695, dt = 0.003688162127670504 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.95 us    (1.9%)
   patch tree reduce : 1353.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.3%)
   LB compute        : 351.25 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (70.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7776975823029735e-05,-5.476558423854249e-06,-3.9433386241694925e-06)
    sum a = (0.0003325133398046952,1.700714973735267e-05,-5.0774256288301136e-06)
    sum e = 0.05043593561508511
    sum de = -0.0004784594526217878
Info: cfl dt = 0.0035332992696636943 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7685e+05    |      100000 |   5.654e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 23.48147043664716 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.58754539795464, dt = 0.002454602045359966 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (1.7%)
   patch tree reduce : 1102.00 ns (0.3%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 349.22 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (70.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.85919632577013e-05,-5.422542826308225e-06,-3.955685468359571e-06)
    sum a = (0.00033200945587826865,2.1416394274481824e-05,-5.034344767211839e-06)
    sum e = 0.05043233262659082
    sum de = -0.00048357257376862873
Info: cfl dt = 0.0034426535223070153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7823e+05    |      100000 |   5.611e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 15.749596614129494 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 156                                                     [SPH][rank=0]
Info: time since start : 1255.477693712 (s)                                           [SPH][rank=0]
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1822.15 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.59, dt = 0.0034426535223070153 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.16 us   (2.2%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.2%)
   LB compute        : 452.33 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (72.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.973433836316201e-05,-5.343402130793677e-06,-3.972964099919399e-06)
    sum a = (0.0003312088827596289,2.7573885104669e-05,-4.97236912995965e-06)
    sum e = 0.05043251578906968
    sum de = -0.0004903842958443844
Info: cfl dt = 0.0034020366973915497 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.5532e+05    |      100000 |   6.439e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 19.249125100898674 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.593442653522307, dt = 0.0034020366973915497 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.07 us    (1.9%)
   patch tree reduce : 1212.00 ns (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 346.20 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (69.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0859745088873918e-05,-5.238995708025649e-06,-3.989773601849553e-06)
    sum a = (0.0003303115166937645,3.362610313802532e-05,-4.909322313580812e-06)
    sum e = 0.05043074664404383
    sum de = -0.0004965946135962984
Info: cfl dt = 0.0036758471516715884 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7506e+05    |      100000 |   5.712e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 21.44010727453228 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5968446902196985, dt = 0.0031553097803014296 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (1.7%)
   patch tree reduce : 1293.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.3%)
   LB compute        : 363.70 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (72.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.190045381189334e-05,-5.122600001994013e-06,-4.005156790768761e-06)
    sum a = (0.00032938625549157883,3.9208725843712705e-05,-4.849227492286027e-06)
    sum e = 0.05042865377554069
    sum de = -0.0005018738308592306
Info: cfl dt = 0.0035488284958553884 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7426e+05    |      100000 |   5.739e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 19.794031018768933 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 159                                                     [SPH][rank=0]
Info: time since start : 1259.1152099170001 (s)                                       [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000030.vtk        [VTK Dump][rank=0]
              - took 16.47 ms, bandwidth = 324.20 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump_0000030.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.85 us    (56.6%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000030.sham  [Shamrock Dump][rank=0]
              - took 12.29 ms, bandwidth = 931.75 MB/s
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1856.27 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.6, dt = 0.0035488284958553884 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.71 us   (2.2%)
   patch tree reduce : 1493.00 ns (0.3%)
   gen split merge   : 722.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.2%)
   LB compute        : 509.87 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (75.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3067929398673068e-05,-4.974647506431563e-06,-4.022271058587583e-06)
    sum a = (0.0003282403633874804,4.545075842867428e-05,-4.779752766284768e-06)
    sum e = 0.050427702776196535
    sum de = -0.0005073339261274103
Info: cfl dt = 0.00355615900145304 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7638e+05    |      100000 |   5.670e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 22.533583040135696 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6035488284958553, dt = 0.00355615900145304 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (1.6%)
   patch tree reduce : 1082.00 ns (0.3%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.3%)
   LB compute        : 381.91 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 2.92 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (70.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4233171034299313e-05,-4.801941431162882e-06,-4.0391453424684486e-06)
    sum a = (0.0003269822051720438,5.166463632012414e-05,-4.708112365762409e-06)
    sum e = 0.05042590474636472
    sum de = -0.0005122439522754855
Info: cfl dt = 0.003442400538377292 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7678e+05    |      100000 |   5.657e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 22.63156763903033 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6071049874973083, dt = 0.0028950125026916407 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.89 us    (1.8%)
   patch tree reduce : 1102.00 ns (0.3%)
   gen split merge   : 671.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 369.13 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (71.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5177551501093772e-05,-4.6413228941701335e-06,-4.052648004303813e-06)
    sum a = (0.00032587809713502505,5.6691528433653114e-05,-4.648283149318926e-06)
    sum e = 0.05042305661458209
    sum de = -0.0005157734905963687
Info: cfl dt = 0.0034541642141959223 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7607e+05    |      100000 |   5.680e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 18.349983461651266 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 162                                                     [SPH][rank=0]
Info: time since start : 1262.735467858 (s)                                           [SPH][rank=0]
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1822.25 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.61, dt = 0.0034541642141959223 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.13 us   (2.0%)
   patch tree reduce : 1843.00 ns (0.3%)
   gen split merge   : 701.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1093.00 ns (0.2%)
   LB compute        : 515.67 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.50 us    (77.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.630158975912834e-05,-4.438224587646925e-06,-4.068617334450825e-06)
    sum a = (0.00032446849251043105,6.265111771528928e-05,-4.575106652685403e-06)
    sum e = 0.05042239750430293
    sum de = -0.0005195674457618414
Info: cfl dt = 0.0033134085160766383 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7616e+05    |      100000 |   5.677e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 21.905842198905525 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.613454164214196, dt = 0.0033134085160766383 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.03 us    (2.0%)
   patch tree reduce : 1312.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 337.48 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (70.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.737425192247574e-05,-4.220343140651141e-06,-4.0836501499777935e-06)
    sum a = (0.00032302358314381614,6.832733359679808e-05,-4.50306114035389e-06)
    sum e = 0.05042036613648303
    sum de = -0.0005226989726854937
Info: cfl dt = 0.003525532677183696 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7610e+05    |      100000 |   5.679e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 21.00518958673938 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6167675727302726, dt = 0.0032324272697273893 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.32 us    (1.9%)
   patch tree reduce : 1102.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 361.28 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (70.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8416008373902263e-05,-3.990076193246818e-06,-4.098086609498072e-06)
    sum a = (0.00032152799277497307,7.382547295411297e-05,-4.431006934897212e-06)
    sum e = 0.05041850234857165
    sum de = -0.0005252902750892065
Info: cfl dt = 0.00339765415765066 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7668e+05    |      100000 |   5.660e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 20.55949093049532 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 165                                                     [SPH][rank=0]
Info: time since start : 1266.2854002000001 (s)                                       [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000031.vtk        [VTK Dump][rank=0]
              - took 8.47 ms, bandwidth = 630.29 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump_0000031.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.02 us    (55.1%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000031.sham  [Shamrock Dump][rank=0]
              - took 11.98 ms, bandwidth = 955.98 MB/s
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1815.31 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.62, dt = 0.00339765415765066 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.47 us   (2.5%)
   patch tree reduce : 1562.00 ns (0.3%)
   gen split merge   : 712.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.2%)
   LB compute        : 441.60 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (69.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.950603210181236e-05,-3.7303566003255664e-06,-4.113025183643699e-06)
    sum a = (0.0003198659966915248,7.956173085309117e-05,-4.353357874440375e-06)
    sum e = 0.050417060621779884
    sum de = -0.0005275485127925713
Info: cfl dt = 0.003277457789105745 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7721e+05    |      100000 |   5.643e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 21.675383657382053 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6233976541576507, dt = 0.003277457789105745 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.04 us    (1.8%)
   patch tree reduce : 1453.00 ns (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 362.06 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (72.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0551555960186416e-05,-3.4598514755828205e-06,-4.127161217991484e-06)
    sum a = (0.000318177006464441,8.505231123607674e-05,-4.276570602668657e-06)
    sum e = 0.050415072460074414
    sum de = -0.0005292441322324057
Info: cfl dt = 0.0031742635013070216 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7706e+05    |      100000 |   5.648e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 20.89045908155121 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6266751119467564, dt = 0.0031742635013070216 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.94 us    (1.8%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1533.00 ns (0.4%)
   LB compute        : 369.51 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (72.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.15587658216726e-05,-3.1808754555997806e-06,-4.1406103464453215e-06)
    sum a = (0.0003164623462274058,9.03291793204276e-05,-4.200407328862726e-06)
    sum e = 0.0504131778388553
    sum de = -0.0005304462887923044
Info: cfl dt = 0.0030841457801090953 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7534e+05    |      100000 |   5.703e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 20.03623708606037 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6298493754480634, dt = 0.00015062455193659563 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.83 us    (1.7%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.3%)
   LB compute        : 372.68 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.61 us    (72.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.160371142907352e-05,-3.158894578554168e-06,-4.141122149767082e-06)
    sum a = (0.00031637908263758237,9.057854596959394e-05,-4.196749077559698e-06)
    sum e = 0.05040990591924491
    sum de = -0.000530537908556911
Info: cfl dt = 0.0030831099038715246 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.8001e+05    |      100000 |   5.555e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 0.9760914187130624 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 169                                                     [SPH][rank=0]
Info: time since start : 1270.408862122 (s)                                           [SPH][rank=0]
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1820.64 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.63, dt = 0.0030831099038715246 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.48 us   (2.6%)
   patch tree reduce : 2.05 us    (0.4%)
   gen split merge   : 1062.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.2%)
   LB compute        : 457.19 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (74.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2579136641364504e-05,-2.879612186026844e-06,-4.154060912900948e-06)
    sum a = (0.0003146372252007975,9.566285415399073e-05,-4.120972284622473e-06)
    sum e = 0.05041127872068052
    sum de = -0.0005312278858811066
Info: cfl dt = 0.0032709884040464697 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7664e+05    |      100000 |   5.661e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 19.605927856759237 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6330831099038715, dt = 0.0032709884040464697 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.99 us    (1.4%)
   patch tree reduce : 1252.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1452.00 ns (0.3%)
   LB compute        : 479.44 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 us    (73.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.360562618751808e-05,-2.5588623589383984e-06,-4.167423751366947e-06)
    sum a = (0.00031271206600271814,0.00010101425015192746,-4.038697055601109e-06)
    sum e = 0.05040991821540151
    sum de = -0.0005316044969733884
Info: cfl dt = 0.0032363249324547073 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7516e+05    |      100000 |   5.709e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 20.62620269617124 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.636354098307918, dt = 0.0032363249324547073 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.99 us    (1.8%)
   patch tree reduce : 1423.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 361.40 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (71.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.461451545669266e-05,-2.2231952455039958e-06,-4.180359726682588e-06)
    sum a = (0.00031073053100141645,0.00010626501568840657,-3.955360205775767e-06)
    sum e = 0.05040812509899841
    sum de = -0.0005315471307202709
Info: cfl dt = 0.0030947226053347856 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7668e+05    |      100000 |   5.660e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 20.584908503815917 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6395904232403727, dt = 0.0004095767596272726 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (1.8%)
   patch tree reduce : 1213.00 ns (0.3%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 347.78 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (67.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.473857701514013e-05,-2.171174973009144e-06,-4.181844897736381e-06)
    sum a = (0.000310474396922753,0.00010692633950603671,-3.9446757205385865e-06)
    sum e = 0.050404639565358865
    sum de = -0.000531534465780339
Info: cfl dt = 0.003080848448267093 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7779e+05    |      100000 |   5.625e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 2.6214466796151106 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 173                                                     [SPH][rank=0]
Info: time since start : 1274.521595272 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000032.vtk        [VTK Dump][rank=0]
              - took 8.38 ms, bandwidth = 637.49 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump_0000032.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.55 us    (56.5%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000032.sham  [Shamrock Dump][rank=0]
              - took 11.27 ms, bandwidth = 1015.97 MB/s
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1818.01 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.64, dt = 0.003080848448267093 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.92 us   (2.5%)
   patch tree reduce : 1613.00 ns (0.3%)
   gen split merge   : 732.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.2%)
   LB compute        : 484.70 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.93 us    (70.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.5695049125838986e-05,-1.8416156944331873e-06,-4.1939956577505e-06)
    sum a = (0.0003085094063986944,0.00011187846350055128,-3.863293520981865e-06)
    sum e = 0.05040595783389591
    sum de = -0.0005309897397742917
Info: cfl dt = 0.002961429548939717 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7737e+05    |      100000 |   5.638e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 19.67236538369649 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6430808484482671, dt = 0.002961429548939717 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.37 us    (2.0%)
   patch tree reduce : 1373.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 355.13 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (69.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.6605651079071e-05,-1.502667134972208e-06,-4.20531116622816e-06)
    sum a = (0.000306557683489257,0.00011660055102464788,-3.783373714144355e-06)
    sum e = 0.05040415708313067
    sum de = -0.0005301463524034923
Info: cfl dt = 0.003027867947313662 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7711e+05    |      100000 |   5.646e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 18.882341239916876 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6460422779972068, dt = 0.003027867947313662 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (1.9%)
   patch tree reduce : 1262.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.3%)
   LB compute        : 336.03 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (71.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.753097731795732e-05,-1.1426239991222643e-06,-4.216648383791168e-06)
    sum a = (0.0003044993866188485,0.00012138976219972666,-3.6999219097881422e-06)
    sum e = 0.05040267881717054
    sum de = -0.0005289434286185269
Info: cfl dt = 0.0029470360635236656 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7405e+05    |      100000 |   5.746e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 18.97176095242725 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6490701459445205, dt = 0.0009298540554795176 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (1.8%)
   patch tree reduce : 1262.00 ns (0.3%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1413.00 ns (0.4%)
   LB compute        : 347.64 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (70.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.7811001181941854e-05,-1.0224986869429813e-06,-4.219962430662155e-06)
    sum a = (0.00030385472282680416,0.00012285250686197235,-3.6739395270471382e-06)
    sum e = 0.050399557717795335
    sum de = -0.0005284976260274689
Info: cfl dt = 0.0029263178589573387 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7827e+05    |      100000 |   5.609e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 5.9675894623522865 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 177                                                     [SPH][rank=0]
Info: time since start : 1278.655842971 (s)                                           [SPH][rank=0]
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1821.92 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.65, dt = 0.0029263178589573387 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.27 us   (2.2%)
   patch tree reduce : 1393.00 ns (0.3%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.2%)
   LB compute        : 488.31 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.92 us    (74.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.869987696224874e-05,-6.623131325628179e-07,-4.230701465600899e-06)
    sum a = (0.00030178761091768496,0.0001274317854442879,-3.591061944487207e-06)
    sum e = 0.05040045027363535
    sum de = -0.0005268653937829756
Info: cfl dt = 0.003026615143805252 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7735e+05    |      100000 |   5.638e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 18.683683503968073 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6529263178589574, dt = 0.003026615143805252 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (1.5%)
   patch tree reduce : 1492.00 ns (0.3%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.3%)
   LB compute        : 406.48 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (73.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.9610247402426604e-05,-2.699259485874961e-07,-4.241448964989457e-06)
    sum a = (0.00029958925503615973,0.00013212896282875538,-3.5035658666004712e-06)
    sum e = 0.050399046895354
    sum de = -0.0005248722303883648
Info: cfl dt = 0.003115942593581369 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7717e+05    |      100000 |   5.644e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 19.303959680164347 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6559529330027626, dt = 0.003115942593581369 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.61 us    (1.9%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 671.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 386.03 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.30 us    (76.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.054042353417029e-05,1.4888858863813537e-07,-4.252233466625446e-06)
    sum a = (0.00029726270075968396,0.00013692309127389036,-3.4115781227075848e-06)
    sum e = 0.05039758792318239
    sum de = -0.0005224683960628163
Info: cfl dt = 0.003111608350214202 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7721e+05    |      100000 |   5.643e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 19.878180173609493 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.659068875596344, dt = 0.0009311244036560584 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (1.8%)
   patch tree reduce : 1463.00 ns (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 347.60 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (69.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.081358738436396e-05,2.8385013485648753e-07,-4.255266756005846e-06)
    sum a = (0.00029655516861847096,0.00013834735996849472,-3.3837139140534785e-06)
    sum e = 0.05039430519098933
    sum de = -0.0005216542681111893
Info: cfl dt = 0.0031010095218101472 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7947e+05    |      100000 |   5.572e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 6.0159941736893945 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 181                                                     [SPH][rank=0]
Info: time since start : 1282.754326103 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000033.vtk        [VTK Dump][rank=0]
              - took 8.20 ms, bandwidth = 651.35 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump_0000033.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.04 us    (55.2%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000033.sham  [Shamrock Dump][rank=0]
              - took 11.60 ms, bandwidth = 986.86 MB/s
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1826.03 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.66, dt = 0.0031010095218101472 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.91 us   (2.1%)
   patch tree reduce : 1423.00 ns (0.3%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.2%)
   LB compute        : 498.20 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.65 us    (76.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.173287838577231e-05,7.135297011081973e-07,-4.265746712550063e-06)
    sum a = (0.00029415811626090405,0.00014306367797227787,-3.289639941463685e-06)
    sum e = 0.050395457974145116
    sum de = -0.000518780203867844
Info: cfl dt = 0.002975141072714604 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7711e+05    |      100000 |   5.646e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 19.771685549625477 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6631010095218102, dt = 0.002975141072714604 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.20 us    (2.0%)
   patch tree reduce : 1373.00 ns (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.4%)
   LB compute        : 344.18 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (67.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.2604323638237866e-05,1.146476998976928e-06,-4.275387993311973e-06)
    sum a = (0.0002918002640505987,0.0001475488282301969,-3.197542325625521e-06)
    sum e = 0.05039367677317887
    sum de = -0.0005156791370132752
Info: cfl dt = 0.0028700306637511022 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7709e+05    |      100000 |   5.647e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 18.96683922957677 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6660761505945247, dt = 0.0028700306637511022 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.66 us    (2.1%)
   patch tree reduce : 1243.00 ns (0.3%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 345.85 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (70.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.343829187227635e-05,1.5766186377730264e-06,-4.2844280361353724e-06)
    sum a = (0.000289472391078038,0.00015183856801302483,-3.106974741944369e-06)
    sum e = 0.050392006743268214
    sum de = -0.000512370192961202
Info: cfl dt = 0.0027790047395397396 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7783e+05    |      100000 |   5.623e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 18.37401089566132 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6689461812582759, dt = 0.0010538187417241662 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.81 us    (1.7%)
   patch tree reduce : 1312.00 ns (0.3%)
   gen split merge   : 1253.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 369.69 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (69.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.3740002769797336e-05,1.7427848088165432e-06,-4.28757225847734e-06)
    sum a = (0.00028860464856098457,0.00015340446578516632,-3.0732953858158862e-06)
    sum e = 0.05038921596547531
    sum de = -0.0005110486498865335
Info: cfl dt = 0.0027497401974139186 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7765e+05    |      100000 |   5.629e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 6.7394977565118515 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 185                                                     [SPH][rank=0]
Info: time since start : 1286.888295677 (s)                                           [SPH][rank=0]
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1819.40 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.67, dt = 0.0027497401974139186 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.69 us   (2.1%)
   patch tree reduce : 1563.00 ns (0.3%)
   gen split merge   : 681.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.2%)
   LB compute        : 526.75 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.19 us    (78.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.4533133351443584e-05,2.1654323210596657e-06,-4.2960052763698935e-06)
    sum a = (0.0002863075891544903,0.00015746751524278756,-2.9843199686746456e-06)
    sum e = 0.05038985271344703
    sum de = -0.0005074816963167823
Info: cfl dt = 0.0027471816323063817 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7773e+05    |      100000 |   5.626e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 17.59407571244549 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.672749740197414, dt = 0.0027471816323063817 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.97 us    (1.8%)
   patch tree reduce : 1052.00 ns (0.3%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1051.00 ns (0.3%)
   LB compute        : 373.10 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (70.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.531651414326255e-05,2.6036103518264326e-06,-4.304081415732223e-06)
    sum a = (0.0002839657116808466,0.0001614934097332501,-2.8938468254033673e-06)
    sum e = 0.0503884590255597
    sum de = -0.0005036454324268422
Info: cfl dt = 0.0028593755377458335 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7678e+05    |      100000 |   5.657e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 17.48315384637246 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6754969218297203, dt = 0.0028593755377458335 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.38 us    (1.9%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 360.62 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.50 us    (75.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.612526197141862e-05,3.0709105888292355e-06,-4.312231737476055e-06)
    sum a = (0.0002814787348781063,0.00016564827668468643,-2.797989370475879e-06)
    sum e = 0.05038722317200559
    sum de = -0.0004993783775591906
Info: cfl dt = 0.002937754815952188 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7764e+05    |      100000 |   5.629e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 18.28612458184804 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6783562973674662, dt = 0.0016437026325338833 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.13 us    (1.9%)
   patch tree reduce : 1442.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 349.14 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 2.94 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (70.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.658437370861882e-05,3.34912725975019e-06,-4.316693753739245e-06)
    sum a = (0.0002800264870483563,0.0001680201999361208,-2.7421063694686922e-06)
    sum e = 0.05038467649405646
    sum de = -0.000496738861673182
Info: cfl dt = 0.002985994379274256 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7945e+05    |      100000 |   5.573e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 10.618441196878106 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 189                                                     [SPH][rank=0]
Info: time since start : 1290.982822137 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000034.vtk        [VTK Dump][rank=0]
              - took 8.36 ms, bandwidth = 638.95 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump_0000034.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.15 us    (57.8%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000034.sham  [Shamrock Dump][rank=0]
              - took 11.79 ms, bandwidth = 971.30 MB/s
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1814.83 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.68, dt = 0.002985994379274256 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.29 us   (2.4%)
   patch tree reduce : 1493.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1313.00 ns (0.3%)
   LB compute        : 453.80 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (69.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.741933769320648e-05,3.852784000611302e-06,-4.324835740427918e-06)
    sum a = (0.00027734603755311,0.00017229874112783966,-2.639108174652644e-06)
    sum e = 0.050385161285147126
    sum de = -0.0004918389751810199
Info: cfl dt = 0.0028763683604249067 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7731e+05    |      100000 |   5.640e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 19.060180554214767 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6829859943792743, dt = 0.0028763683604249067 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.22 us    (2.0%)
   patch tree reduce : 1223.00 ns (0.3%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 333.63 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (70.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.821308515694853e-05,4.35476649811128e-06,-4.332273011665812e-06)
    sum a = (0.0002747128654940441,0.00017638290508992054,-2.538089501189866e-06)
    sum e = 0.05038355076835109
    sum de = -0.00048679789400178614
Info: cfl dt = 0.002792747239470656 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7846e+05    |      100000 |   5.603e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 18.479571124711583 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6858623627396992, dt = 0.002792747239470656 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.68 us    (2.0%)
   patch tree reduce : 1102.00 ns (0.3%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.3%)
   LB compute        : 353.67 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (72.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.897650176730188e-05,4.853233149386145e-06,-4.3392159706557255e-06)
    sum a = (0.0002721084285541973,0.00018031337212122701,-2.4383090842181126e-06)
    sum e = 0.05038204862821507
    sum de = -0.0004816392975677025
Info: cfl dt = 0.0026912861037656477 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7698e+05    |      100000 |   5.650e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 17.79362782848193 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6886551099791699, dt = 0.0013448900208301584 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.89 us    (1.9%)
   patch tree reduce : 1182.00 ns (0.3%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 348.09 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (11.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.933882091040865e-05,5.101223204648215e-06,-4.342355897468752e-06)
    sum a = (0.0002708375131066543,0.0001821937901097565,-2.3896643133331578e-06)
    sum e = 0.05037951328015812
    sum de = -0.0004790090730807791
Info: cfl dt = 0.0026657286511585537 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7733e+05    |      100000 |   5.639e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 8.58551960769601 (tsim/hr)                              [sph::Model][rank=0]
Info: iteration since start : 193                                                     [SPH][rank=0]
Info: time since start : 1295.1039065030002 (s)                                       [SPH][rank=0]
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1822.99 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.6900000000000001, dt = 0.0026657286511585537 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.33 us   (2.2%)
   patch tree reduce : 1533.00 ns (0.3%)
   gen split merge   : 681.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.2%)
   LB compute        : 494.79 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (73.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.005994560815915e-05,5.588166888702645e-06,-4.348693383162001e-06)
    sum a = (0.0002682860983163645,0.00018589762325983832,-2.2920883337969724e-06)
    sum e = 0.05037991355424673
    sum de = -0.00047375260902762073
Info: cfl dt = 0.002774473218888803 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7820e+05    |      100000 |   5.612e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 17.101284192167242 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6926657286511586, dt = 0.002774473218888803 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.93 us    (1.9%)
   patch tree reduce : 1383.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 345.32 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (71.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.080089751317955e-05,6.108871572968801e-06,-4.354922665317292e-06)
    sum a = (0.00026558510147078933,0.00018971936800064632,-2.188912586409886e-06)
    sum e = 0.05037879346488137
    sum de = -0.00046803624328816844
Info: cfl dt = 0.002741200598137593 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7760e+05    |      100000 |   5.631e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 17.739069760077026 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6954402018700474, dt = 0.002741200598137593 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.59 us    (2.1%)
   patch tree reduce : 1403.00 ns (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 343.09 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (69.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.152517263048569e-05,6.634232082226563e-06,-4.360779784634447e-06)
    sum a = (0.00026287083299259944,0.0001934620355620389,-2.0853618204364066e-06)
    sum e = 0.05037746057096536
    sum de = -0.000462148138191784
Info: cfl dt = 0.0028338467788189704 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7516e+05    |      100000 |   5.709e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 17.285479632921042 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6981814024681849, dt = 0.0018185975318151248 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.47 us    (2.1%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 682.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.3%)
   LB compute        : 371.22 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (74.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.1999508701364244e-05,6.991191363876563e-06,-4.364430291783218e-06)
    sum a = (0.0002610450388386839,0.000195926715133122,-2.0157897803550364e-06)
    sum e = 0.05037529786024204
    sum de = -0.0004580541154506577
Info: cfl dt = 0.002761904349689902 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7839e+05    |      100000 |   5.606e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 11.678907996242765 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 197                                                     [SPH][rank=0]
Info: time since start : 1299.208938808 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000035.vtk        [VTK Dump][rank=0]
              - took 8.38 ms, bandwidth = 637.61 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump_0000035.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.04 us    (57.2%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000035.sham  [Shamrock Dump][rank=0]
              - took 17.40 ms, bandwidth = 658.09 MB/s
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1838.70 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.7000000000000001, dt = 0.002761904349689902 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.51 us   (2.4%)
   patch tree reduce : 1553.00 ns (0.3%)
   gen split merge   : 692.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.2%)
   LB compute        : 450.77 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.31 us    (75.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.271882993722927e-05,7.534563340713873e-06,-4.369934448575451e-06)
    sum a = (0.00025823358585550226,0.00019964208709157498,-1.9087968373529986e-06)
    sum e = 0.05037540297343901
    sum de = -0.0004517813108841409
Info: cfl dt = 0.002717253075319445 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7740e+05    |      100000 |   5.637e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 17.638741557953022 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.70276190434969, dt = 0.002717253075319445 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.83 us    (1.9%)
   patch tree reduce : 1433.00 ns (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 347.26 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (73.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.341663346042951e-05,8.08217216681514e-06,-4.37497338051458e-06)
    sum a = (0.00025542199669655025,0.00020326447531666475,-1.801992566402186e-06)
    sum e = 0.05037410703790378
    sum de = -0.0004453542947971754
Info: cfl dt = 0.002669076688481742 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7600e+05    |      100000 |   5.682e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 17.216812658429244 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7054791574250094, dt = 0.002669076688481742 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.33 us    (1.9%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 363.53 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (71.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.40945544578965e-05,8.62962211225294e-06,-4.3796379297495354e-06)
    sum a = (0.0002526159013573675,0.0002067906684051272,-1.6956184042646906e-06)
    sum e = 0.05037284531181149
    sum de = -0.00043883353112447314
Info: cfl dt = 0.0027710046175699367 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7706e+05    |      100000 |   5.648e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 17.01322200948622 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7081482341134911, dt = 0.001851765886508816 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.05 us    (1.8%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 1192.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 369.26 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (69.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.455859512459144e-05,9.01725585753816e-06,-4.382635857668879e-06)
    sum a = (0.00025064311426531324,0.00020921826652576015,-1.620983491559896e-06)
    sum e = 0.05037087302381672
    sum de = -0.0004341282382655354
Info: cfl dt = 0.0026815083961363464 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7813e+05    |      100000 |   5.614e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 11.875054548321325 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 201                                                     [SPH][rank=0]
Info: time since start : 1303.385889763 (s)                                           [SPH][rank=0]
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1831.05 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.71, dt = 0.0026815083961363464 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.89 us   (2.6%)
   patch tree reduce : 1433.00 ns (0.3%)
   gen split merge   : 691.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 432.54 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (73.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.522887017000772e-05,9.580524067543208e-06,-4.3869134353188495e-06)
    sum a = (0.0002477481671582823,0.00021270626716793662,-1.5117023419736853e-06)
    sum e = 0.05037090300752833
    sum de = -0.00042728275898134193
Info: cfl dt = 0.0025636661578251566 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7739e+05    |      100000 |   5.637e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 17.12452876155658 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7126815083961363, dt = 0.0025636661578251566 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.02 us    (1.9%)
   patch tree reduce : 1253.00 ns (0.3%)
   gen split merge   : 921.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 340.39 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (69.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.586013234932824e-05,1.0130508477744757e-05,-4.39064241629358e-06)
    sum a = (0.000244937963025161,0.00021601023012007383,-1.4059248424346718e-06)
    sum e = 0.05036962174325556
    sum de = -0.0004205048727439559
Info: cfl dt = 0.0024653343153254064 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7804e+05    |      100000 |   5.617e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 16.431931505493168 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7152451745539614, dt = 0.0024653343153254064 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.52 us    (2.0%)
   patch tree reduce : 1293.00 ns (0.3%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 354.35 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.97 us    (74.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.6460384102079785e-05,1.0667281039526657e-05,-4.3939729019544965e-06)
    sum a = (0.00024219601282055554,0.0002191587076305544,-1.3030321738356668e-06)
    sum e = 0.050368437661409214
    sum de = -0.0004138197522234549
Info: cfl dt = 0.0025648281803841355 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7459e+05    |      100000 |   5.728e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 15.49510168324093 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7177105088692868, dt = 0.002289491130713195 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.05 us    (1.9%)
   patch tree reduce : 1132.00 ns (0.3%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.4%)
   LB compute        : 342.35 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.70 us    (71.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.701150981336126e-05,1.1172923981684303e-05,-4.396829350146194e-06)
    sum a = (0.0002396146196758316,0.00022205696103936483,-1.206471685426794e-06)
    sum e = 0.050367234289928044
    sum de = -0.0004074563800684335
Info: cfl dt = 0.0025002659478092428 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7766e+05    |      100000 |   5.629e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 14.643208438297654 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 205                                                     [SPH][rank=0]
Info: time since start : 1307.504791648 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000036.vtk        [VTK Dump][rank=0]
              - took 8.30 ms, bandwidth = 643.72 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump_0000036.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (53.6%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000036.sham  [Shamrock Dump][rank=0]
              - took 11.29 ms, bandwidth = 1013.76 MB/s
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1831.44 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.72, dt = 0.0025002659478092428 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.03 us   (2.5%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1173.00 ns (0.2%)
   LB compute        : 447.03 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.23 us    (75.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.76076550491764e-05,1.1731443202579202e-05,-4.399735313027352e-06)
    sum a = (0.00023675666246985783,0.00022519337485388786,-1.0999359530980554e-06)
    sum e = 0.05036654251206657
    sum de = -0.00040039052859849595
Info: cfl dt = 0.002412427120943459 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7822e+05    |      100000 |   5.611e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 16.04138411554254 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7225002659478093, dt = 0.002412427120943459 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.93 us    (1.8%)
   patch tree reduce : 1242.00 ns (0.3%)
   gen split merge   : 702.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 363.65 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (70.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.817524041625062e-05,1.2278626741867477e-05,-4.402255644520033e-06)
    sum a = (0.00023396028833002404,0.00022819066973815187,-9.960966866352433e-07)
    sum e = 0.05036544935132997
    sum de = -0.00039339759232804287
Info: cfl dt = 0.002520137251924406 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7759e+05    |      100000 |   5.631e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 15.423632042470569 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7249126930687527, dt = 0.002520137251924406 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.31 us    (2.0%)
   patch tree reduce : 1212.00 ns (0.3%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 352.72 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (71.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.876147942992501e-05,1.2857313926950559e-05,-4.4046406925552334e-06)
    sum a = (0.00023099793570324718,0.00023129083196399782,-8.865509343013062e-07)
    sum e = 0.05036463490405088
    sum de = -0.0003859580779183771
Info: cfl dt = 0.0024523633790679324 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7746e+05    |      100000 |   5.635e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 16.100072191773023 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7274328303206772, dt = 0.0024523633790679324 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.77 us    (1.7%)
   patch tree reduce : 1102.00 ns (0.3%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1303.00 ns (0.3%)
   LB compute        : 385.47 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (72.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.9324237540491525e-05,1.3428429510328985e-05,-4.406676802434569e-06)
    sum a = (0.00022807455625885995,0.00023427654148454633,-7.789322765016854e-07)
    sum e = 0.05036359164330914
    sum de = -0.0003785491890508
Info: cfl dt = 0.002393162628233894 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7733e+05    |      100000 |   5.639e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 15.655252518900149 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7298851936997451, dt = 0.00011480630025484384 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.05 us    (2.0%)
   patch tree reduce : 1272.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 338.41 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (70.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.9346837342125796e-05,1.3458986955636874e-05,-4.406634268739727e-06)
    sum a = (0.00022793671743968498,0.0002344155454737332,-7.738705170443884e-07)
    sum e = 0.05036165805672699
    sum de = -0.0003781250319021819
Info: cfl dt = 0.0023924119682776405 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.8026e+05    |      100000 |   5.548e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 0.7450189383783291 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 210                                                     [SPH][rank=0]
Info: time since start : 1312.195558051 (s)                                           [SPH][rank=0]
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1832.82 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.73, dt = 0.0023924119682776405 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.23 us   (2.5%)
   patch tree reduce : 1463.00 ns (0.3%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.2%)
   LB compute        : 466.31 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (74.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.989214796055661e-05,1.4019813491444426e-05,-4.408485395265668e-06)
    sum a = (0.0002250439246328739,0.00023729654577836845,-6.678990627102792e-07)
    sum e = 0.05036256094005317
    sum de = -0.0003708186599484999
Info: cfl dt = 0.0023384325630901796 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7769e+05    |      100000 |   5.628e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 15.303468590997184 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7323924119682776, dt = 0.0023384325630901796 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.23 us    (1.9%)
   patch tree reduce : 1232.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 354.33 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (67.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.041493762597763e-05,1.4578161731009063e-05,-4.409920468494948e-06)
    sum a = (0.0002221788441707112,0.00024008287089529606,-5.634504166475322e-07)
    sum e = 0.05036162233946148
    sum de = -0.00036347059446987905
Info: cfl dt = 0.0024409629096123356 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7767e+05    |      100000 |   5.628e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 14.957234415913174 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7347308445313678, dt = 0.0024409629096123356 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.30 us    (1.8%)
   patch tree reduce : 1212.00 ns (0.3%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1153.00 ns (0.3%)
   LB compute        : 382.77 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (72.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.095391804517693e-05,1.5167452930785287e-05,-4.4111737070058155e-06)
    sum a = (0.0002191482333278854,0.00024295922893049487,-4.5353367550812834e-07)
    sum e = 0.05036089936117082
    sum de = -0.00035568288221379135
Info: cfl dt = 0.0023671084555838377 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7808e+05    |      100000 |   5.615e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 15.648882009516102 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7371718074409802, dt = 0.0023671084555838377 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (1.6%)
   patch tree reduce : 1122.00 ns (0.3%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 381.58 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.24 us    (74.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.146896687697306e-05,1.5746074317590433e-05,-4.412113119059871e-06)
    sum a = (0.00021617017674180133,0.0002457162858172496,-3.4610365673881367e-07)
    sum e = 0.05035995507887332
    sum de = -0.00034797841673271413
Info: cfl dt = 0.002302894094223443 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7874e+05    |      100000 |   5.595e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 15.231677042165254 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7395389158965641, dt = 0.000461084103435927 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.90 us    (1.9%)
   patch tree reduce : 1202.00 ns (0.3%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 347.24 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (71.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.156511481765119e-05,1.5862633317271704e-05,-4.412145552701234e-06)
    sum a = (0.00021558561668992373,0.00024624952567595007,-3.2508514144553214e-07)
    sum e = 0.05035809663424886
    sum de = -0.00034637200297316486
Info: cfl dt = 0.0022927653143272864 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7717e+05    |      100000 |   5.644e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 2.940854753319104 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 215                                                     [SPH][rank=0]
Info: time since start : 1316.86643024 (s)                                            [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000037.vtk        [VTK Dump][rank=0]
              - took 8.37 ms, bandwidth = 637.79 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump_0000037.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.82 us    (53.7%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000037.sham  [Shamrock Dump][rank=0]
              - took 11.28 ms, bandwidth = 1015.32 MB/s
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1858.34 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.74, dt = 0.0022927653143272864 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.25 us   (2.2%)
   patch tree reduce : 1483.00 ns (0.3%)
   gen split merge   : 722.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1263.00 ns (0.3%)
   LB compute        : 475.52 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.78 us    (71.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.20592672761859e-05,1.6427348622625438e-05,-4.412886050986103e-06)
    sum a = (0.0002126568560960371,0.0002488825292797323,-2.2011472728972659e-07)
    sum e = 0.050358900587879354
    sum de = -0.00033884019810860285
Info: cfl dt = 0.0022358828676586114 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7716e+05    |      100000 |   5.645e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 14.622626571205878 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7422927653143273, dt = 0.0022358828676586114 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (1.8%)
   patch tree reduce : 1212.00 ns (0.3%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 347.04 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.99 us    (73.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.253138561707676e-05,1.698683923556689e-05,-4.413257865471466e-06)
    sum a = (0.000209765637317869,0.00025141962116681835,-1.1704550370683124e-07)
    sum e = 0.05035807069452735
    sum de = -0.0003312968694124462
Info: cfl dt = 0.0024512570705128604 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7755e+05    |      100000 |   5.632e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 14.291675312807287 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7445286481819859, dt = 0.0024512570705128604 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.36 us    (1.8%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 388.24 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.20 us    (76.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.304234290543087e-05,1.760596967975728e-05,-4.413429548734412e-06)
    sum a = (0.00020655594720251947,0.00025416540276967996,-3.2675976168158757e-09)
    sum e = 0.05035758748289479
    sum de = -0.00032293498274744373
Info: cfl dt = 0.0024018329734434287 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7805e+05    |      100000 |   5.616e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 15.711885558631138 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7469799052524988, dt = 0.0024018329734434287 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.79 us    (1.8%)
   patch tree reduce : 1162.00 ns (0.3%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1502.00 ns (0.4%)
   LB compute        : 365.84 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (72.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.353452190248944e-05,1.8219797833124232e-05,-4.413297947509726e-06)
    sum a = (0.00020337042017446727,0.00025681850226253594,1.0898747393594261e-07)
    sum e = 0.05035674687159634
    sum de = -0.00031457719137778257
Info: cfl dt = 0.0024036578995519425 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7823e+05    |      100000 |   5.611e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 15.411259554604664 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7493817382259422, dt = 0.0006182617740577712 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.09 us    (2.0%)
   patch tree reduce : 1132.00 ns (0.3%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1423.00 ns (0.4%)
   LB compute        : 338.36 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.365643250733264e-05,1.8381765046864403e-05,-4.4130957557545845e-06)
    sum a = (0.00020254397295625952,0.00025749530353275156,1.3800266918218298e-07)
    sum e = 0.05035485509438504
    sum de = -0.0003122862900078658
Info: cfl dt = 0.0023757044198213038 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7834e+05    |      100000 |   5.607e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 3.9694600454159077 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 220                                                     [SPH][rank=0]
Info: time since start : 1321.588560007 (s)                                           [SPH][rank=0]
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1830.99 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.75, dt = 0.0023757044198213038 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.12 us   (2.3%)
   patch tree reduce : 1573.00 ns (0.3%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1053.00 ns (0.2%)
   LB compute        : 450.34 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (72.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.41373616387339e-05,1.8993706997724117e-05,-4.412758932710418e-06)
    sum a = (0.0001993433878953967,0.0002600722506451753,2.4995867986488795e-07)
    sum e = 0.050355782194656716
    sum de = -0.00030396227785313955
Info: cfl dt = 0.002369616387818765 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7674e+05    |      100000 |   5.658e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 15.115663014816807 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7523757044198213, dt = 0.002369616387818765 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.22 us    (1.9%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 359.37 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (69.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.460592717545427e-05,1.9613039497199768e-05,-4.412033639331633e-06)
    sum a = (0.00019611191803676158,0.000262604125858754,3.6233650343921784e-07)
    sum e = 0.050355063619695675
    sum de = -0.0002954264041336561
Info: cfl dt = 0.0022717026106388906 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7690e+05    |      100000 |   5.653e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 15.090977958803377 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.75474532080764, dt = 0.0022717026106388906 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.09 us    (1.9%)
   patch tree reduce : 1182.00 ns (0.3%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.3%)
   LB compute        : 346.64 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (69.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.504760645967342e-05,2.021259776197735e-05,-4.411077372384657e-06)
    sum a = (0.00019297740770743521,0.0002649942587341392,4.7072122354642123e-07)
    sum e = 0.05035425923040658
    sum de = -0.0002871092805142139
Info: cfl dt = 0.002259529610699815 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7902e+05    |      100000 |   5.586e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 14.640560028149826 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7570170234182789, dt = 0.002259529610699815 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.93 us    (1.9%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 346.92 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (70.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.548008428892487e-05,2.0814074971798756e-05,-4.409890654915852e-06)
    sum a = (0.00018982426850987303,0.0002673345154807994,5.791441015352232e-07)
    sum e = 0.0503536031591335
    sum de = -0.000278733055518449
Info: cfl dt = 0.0023068457317110156 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7711e+05    |      100000 |   5.646e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 14.406733647115894 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7592765530289788, dt = 0.0007234469710212243 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (1.8%)
   patch tree reduce : 1192.00 ns (0.3%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 344.10 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (69.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.561384977531909e-05,2.101012125697344e-05,-4.4093491825181734e-06)
    sum a = (0.00018880730907679038,0.0002680758071459406,6.139845408261037e-07)
    sum e = 0.05035195692946254
    sum de = -0.000275908047175695
Info: cfl dt = 0.0022850879707280148 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7917e+05    |      100000 |   5.581e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 4.666212554628586 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 225                                                     [SPH][rank=0]
Info: time since start : 1326.258921668 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000038.vtk        [VTK Dump][rank=0]
              - took 8.17 ms, bandwidth = 654.08 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump_0000038.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (54.2%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000038.sham  [Shamrock Dump][rank=0]
              - took 11.22 ms, bandwidth = 1020.06 MB/s
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1839.99 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.76, dt = 0.0022850879707280148 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 13.38 us   (2.8%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 691.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.2%)
   LB compute        : 445.63 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.56 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (74.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.604492322795905e-05,2.1622966201735607e-05,-4.407933571224577e-06)
    sum a = (0.0001855713211420708,0.00027039135675868,7.244414969866087e-07)
    sum e = 0.05035281902745914
    sum de = -0.0002673998103890449
Info: cfl dt = 0.0022158021753988523 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7821e+05    |      100000 |   5.611e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 14.659917913181774 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.762285087970728, dt = 0.0022158021753988523 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.84 us    (1.7%)
   patch tree reduce : 1192.00 ns (0.3%)
   gen split merge   : 1032.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 375.14 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (71.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.645241530649303e-05,2.2224745575532332e-05,-4.406202150248693e-06)
    sum a = (0.00018239927030954203,0.00027259820894463805,8.321217830000186e-07)
    sum e = 0.05035213821188162
    sum de = -0.000258923192806174
Info: cfl dt = 0.002277710277033268 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7777e+05    |      100000 |   5.625e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 14.180134254599116 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7645008901461269, dt = 0.002277710277033268 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.40 us    (1.9%)
   patch tree reduce : 1303.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.3%)
   LB compute        : 376.76 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (70.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.686435368042825e-05,2.2848090291486638e-05,-4.404187518805823e-06)
    sum a = (0.0001791036806831749,0.0002748261345578995,9.433847901988901e-07)
    sum e = 0.05035164700348178
    sum de = -0.00025012173435681387
Info: cfl dt = 0.002312189608668495 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7658e+05    |      100000 |   5.663e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 14.478785910264879 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7667786004231602, dt = 0.002312189608668495 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.10 us    (1.9%)
   patch tree reduce : 1152.00 ns (0.3%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1393.00 ns (0.4%)
   LB compute        : 348.50 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (71.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.727472215059481e-05,2.348607770853039e-05,-4.401879521849477e-06)
    sum a = (0.00017572222788741966,0.0002770445242526151,1.0569107635453556e-06)
    sum e = 0.05035112990078892
    sum de = -0.00024107267149466982
Info: cfl dt = 0.00222717017664643 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7782e+05    |      100000 |   5.624e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 14.801429270649253 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7690907900318287, dt = 0.0009092099681713428 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.96 us    (2.2%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1203.00 ns (0.3%)
   LB compute        : 343.00 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (70.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.743058127181108e-05,2.374053402040757e-05,-4.400787321259842e-06)
    sum a = (0.00017438274805555565,0.0002779046206072753,1.1017044788078682e-06)
    sum e = 0.050349484995310015
    sum de = -0.00023733568777693298
Info: cfl dt = 0.002197413646672003 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7937e+05    |      100000 |   5.575e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 5.8709388977455195 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 230                                                     [SPH][rank=0]
Info: time since start : 1330.9612723740001 (s)                                       [SPH][rank=0]
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1833.71 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.77, dt = 0.002197413646672003 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.41 us   (2.3%)
   patch tree reduce : 1713.00 ns (0.3%)
   gen split merge   : 1022.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.2%)
   LB compute        : 467.53 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (72.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.78131633679294e-05,2.435159643029221e-05,-4.398346057357294e-06)
    sum a = (0.0001711224531609914,0.0002799542757411135,1.2103233241996772e-06)
    sum e = 0.05035023769400892
    sum de = -0.00022868899019350543
Info: cfl dt = 0.0021269152879040115 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7773e+05    |      100000 |   5.626e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 14.059953146647079 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.772197413646672, dt = 0.0021269152879040115 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.86 us    (1.8%)
   patch tree reduce : 1282.00 ns (0.3%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 369.50 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.80 us    (72.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.817354422142113e-05,2.4949287429361143e-05,-4.395652461909182e-06)
    sum a = (0.0001679361892857353,0.0002818980942024473,1.3159174816918501e-06)
    sum e = 0.050349664864941523
    sum de = -0.00022009873433665464
Info: cfl dt = 0.0021445015460944293 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7859e+05    |      100000 |   5.599e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 13.674790947682292 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.774324328934576, dt = 0.0021445015460944293 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.12 us    (2.0%)
   patch tree reduce : 1222.00 ns (0.3%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 341.91 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (71.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.853029518230836e-05,2.5555885496823712e-05,-4.392718179921219e-06)
    sum a = (0.00016469343595405475,0.00028381696839786797,1.4228243382003105e-06)
    sum e = 0.05034922672030296
    sum de = -0.0002113517877457787
Info: cfl dt = 0.00207254217102592 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7608e+05    |      100000 |   5.679e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 13.593370747960828 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7764688304806705, dt = 0.00207254217102592 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.25 us    (2.0%)
   patch tree reduce : 1182.00 ns (0.3%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 337.82 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (67.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.886815222885451e-05,2.614616564701539e-05,-4.389654685518802e-06)
    sum a = (0.00016153108720036658,0.0002856312450570708,1.5265439797306655e-06)
    sum e = 0.050348702332830626
    sum de = -0.00020278564499220047
Info: cfl dt = 0.0021314229828820063 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7813e+05    |      100000 |   5.614e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 13.290762317931172 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7785413726516964, dt = 0.0014586273483035983 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.78 us    (1.9%)
   patch tree reduce : 1102.00 ns (0.3%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 343.79 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (71.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.910048883966357e-05,2.656467527503736e-05,-4.38732054505605e-06)
    sum a = (0.0001592889833607007,0.00028688382183111644,1.599763983972351e-06)
    sum e = 0.050347725671955904
    sum de = -0.0001966172325489032
Info: cfl dt = 0.002091748942401458 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7825e+05    |      100000 |   5.610e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 9.35986867363288 (tsim/hr)                              [sph::Model][rank=0]
Info: iteration since start : 235                                                     [SPH][rank=0]
Info: time since start : 1335.634827609 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000039.vtk        [VTK Dump][rank=0]
              - took 8.84 ms, bandwidth = 604.26 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump_0000039.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.12 us    (58.5%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000039.sham  [Shamrock Dump][rank=0]
              - took 11.80 ms, bandwidth = 970.41 MB/s
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1833.68 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.78, dt = 0.002091748942401458 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.85 us   (2.0%)
   patch tree reduce : 2.00 us    (0.3%)
   gen split merge   : 691.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.2%)
   LB compute        : 562.46 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (79.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.943204620515572e-05,2.716567772730592e-05,-4.383920840084177e-06)
    sum a = (0.00015605011903860718,0.0002886442353031837,1.705079329976299e-06)
    sum e = 0.05034803531483859
    sum de = -0.00018789484008267565
Info: cfl dt = 0.002146830657886376 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7779e+05    |      100000 |   5.625e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 13.387790076901346 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7820917489424015, dt = 0.002146830657886376 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.17 us    (2.0%)
   patch tree reduce : 1051.00 ns (0.3%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1183.00 ns (0.3%)
   LB compute        : 345.66 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (70.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.976367193936956e-05,2.7787189192386265e-05,-4.3801501768726384e-06)
    sum a = (0.00015269766961272397,0.0002904059708776377,1.8135281343832084e-06)
    sum e = 0.05034771651707297
    sum de = -0.00017877034787114804
Info: cfl dt = 0.002190959250811636 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7872e+05    |      100000 |   5.595e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 13.812307017137085 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7842385796002879, dt = 0.002190959250811636 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.74 us    (2.2%)
   patch tree reduce : 1202.00 ns (0.3%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 337.78 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (72.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.009462774057817e-05,2.8425347914743042e-05,-4.3760604000209495e-06)
    sum a = (0.00014924741766466804,0.00029215557818003786,1.9245556905944737e-06)
    sum e = 0.05034739672677548
    sum de = -0.00016935232014071426
Info: cfl dt = 0.0021117788473474976 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7844e+05    |      100000 |   5.604e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 14.074498516531737 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7864295388510995, dt = 0.0021117788473474976 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.15 us    (2.0%)
   patch tree reduce : 1293.00 ns (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 343.19 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.01 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (70.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.040602559951421e-05,2.9044232544037146e-05,-4.37187453559733e-06)
    sum a = (0.00014589496783085014,0.0002937944648393059,2.031875380583518e-06)
    sum e = 0.05034694182664617
    sum de = -0.0001601496053632298
Info: cfl dt = 0.0021995490693816357 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7719e+05    |      100000 |   5.644e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 13.470739526890252 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7885413176984469, dt = 0.0014586823015531047 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.78 us    (1.8%)
   patch tree reduce : 1072.00 ns (0.3%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 403.02 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (71.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.061530019065281e-05,2.947451581327956e-05,-4.3687973572150905e-06)
    sum a = (0.00014356435241821491,0.0002948986239568353,2.106160921765395e-06)
    sum e = 0.050345974393714035
    sum de = -0.00015363693523449663
Info: cfl dt = 0.002156119896072264 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7901e+05    |      100000 |   5.586e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 9.400137536384644 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 240                                                     [SPH][rank=0]
Info: time since start : 1340.3280324500001 (s)                                       [SPH][rank=0]
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1829.63 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.79, dt = 0.002156119896072264 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.56 us   (1.8%)
   patch tree reduce : 1353.00 ns (0.2%)
   gen split merge   : 671.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.2%)
   LB compute        : 627.24 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.73 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (80.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.092314233353817e-05,3.0111157912397446e-05,-4.364202042245256e-06)
    sum a = (0.00014009750541862148,0.00029648800554592106,2.2161777487243303e-06)
    sum e = 0.050346453321817995
    sum de = -0.00014419886083969616
Info: cfl dt = 0.002188570994229475 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7841e+05    |      100000 |   5.605e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 13.848428620479257 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7921561198960723, dt = 0.002188570994229475 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.89 us    (1.9%)
   patch tree reduce : 1412.00 ns (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 340.09 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (67.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.122601820137018e-05,3.076175641010692e-05,-4.359233175171589e-06)
    sum a = (0.00013655276989270717,0.00029804796016869614,2.3280669426292044e-06)
    sum e = 0.05034619427890809
    sum de = -0.0001344295337747964
Info: cfl dt = 0.0021413177232177277 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7824e+05    |      100000 |   5.610e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 14.043555879385952 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7943446908903017, dt = 0.0021413177232177277 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.02 us    (1.8%)
   patch tree reduce : 1143.00 ns (0.3%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1323.00 ns (0.3%)
   LB compute        : 370.17 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (70.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.15145421150099e-05,3.14016788253042e-05,-4.354125605444332e-06)
    sum a = (0.0001330605759600989,0.0002995208580233364,2.437702652530944e-06)
    sum e = 0.05034585294260344
    sum de = -0.0001247689872859676
Info: cfl dt = 0.002201868216307087 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7741e+05    |      100000 |   5.637e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 13.676063365114835 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7964860086135194, dt = 0.002201868216307087 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (1.6%)
   patch tree reduce : 1373.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 385.35 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (74.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.180378501968016e-05,3.206276125384492e-05,-4.348640723008545e-06)
    sum a = (0.00012944607169800706,0.0003009789345901462,2.5505496782189326e-06)
    sum e = 0.050345673896384856
    sum de = -0.00011477678795896164
Info: cfl dt = 0.0021818021453086653 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7476e+05    |      100000 |   5.722e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 13.852614945135189 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7986878768298264, dt = 0.0013121231701735958 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (1.7%)
   patch tree reduce : 1122.00 ns (0.3%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.3%)
   LB compute        : 347.68 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 2.88 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (67.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.196965487861839e-05,3.245928793388356e-05,-4.3451698505394965e-06)
    sum a = (0.00012728139126506332,0.00030182001903208646,2.617821495030253e-06)
    sum e = 0.05034453458135282
    sum de = -0.00010861169201813829
Info: cfl dt = 0.0021832688420010456 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7771e+05    |      100000 |   5.627e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 8.394193617520044 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 245                                                     [SPH][rank=0]
Info: time since start : 1345.004723511 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000040.vtk        [VTK Dump][rank=0]
              - took 8.27 ms, bandwidth = 645.63 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump_0000040.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.81 us    (51.2%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000040.sham  [Shamrock Dump][rank=0]
              - took 11.80 ms, bandwidth = 970.49 MB/s
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1865.11 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.8, dt = 0.0021832688420010456 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.01 us   (2.0%)
   patch tree reduce : 1522.00 ns (0.3%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.2%)
   LB compute        : 530.54 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (74.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.224612421065982e-05,3.311879398051424e-05,-4.339410307980708e-06)
    sum a = (0.00012366248883388065,0.0003031724921758071,2.7297602172269575e-06)
    sum e = 0.05034527684101421
    sum de = -9.870388073640821e-05
Info: cfl dt = 0.002102425627475164 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7837e+05    |      100000 |   5.606e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 14.019307448984973 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8021832688420011, dt = 0.002102425627475164 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.14 us    (2.0%)
   patch tree reduce : 1252.00 ns (0.3%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 343.57 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (68.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.250216487788607e-05,3.375766800385078e-05,-4.333548993980957e-06)
    sum a = (0.00012015880287673501,0.0003044182816961388,2.8374968228075223e-06)
    sum e = 0.05034497070021861
    sum de = -8.893233669502038e-05
Info: cfl dt = 0.0020784925125233262 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7829e+05    |      100000 |   5.609e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 13.494225935619106 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8042856944694763, dt = 0.0020784925125233262 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.14 us    (1.8%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 371.91 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (72.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.274823093039578e-05,3.439170871294011e-05,-4.327538023980154e-06)
    sum a = (0.00011667826843802879,0.000305594128638217,2.943887709487831e-06)
    sum e = 0.050344765296201036
    sum de = -7.921509287383766e-05
Info: cfl dt = 0.0021082250697569797 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7723e+05    |      100000 |   5.642e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 13.26115738509432 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8063641869819996, dt = 0.0021082250697569797 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.91 us    (1.8%)
   patch tree reduce : 1203.00 ns (0.3%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 359.77 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (68.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.299059784862993e-05,3.5037191910635194e-05,-4.3212210797777695e-06)
    sum a = (0.00011313243284552875,0.0003067290284270271,3.051611378235229e-06)
    sum e = 0.0503446496229584
    sum de = -6.930251861796892e-05
Info: cfl dt = 0.00204515405955913 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7649e+05    |      100000 |   5.666e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 13.39462848507547 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8084724120517566, dt = 0.0015275879482434807 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (1.8%)
   patch tree reduce : 1192.00 ns (0.3%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1383.00 ns (0.4%)
   LB compute        : 354.04 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.00 us    (72.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.31596798798557e-05,3.550694378993155e-05,-4.316445922144131e-06)
    sum a = (0.00011055437011394624,0.00030751441368156453,3.129504995509772e-06)
    sum e = 0.05034387756093286
    sum de = -6.194167744076422e-05
Info: cfl dt = 0.0020042498268928893 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7784e+05    |      100000 |   5.623e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 9.780251579750537 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 250                                                     [SPH][rank=0]
Info: time since start : 1349.7392873570002 (s)                                       [SPH][rank=0]
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1836.34 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.81, dt = 0.0020042498268928893 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.40 us   (2.3%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 671.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1343.00 ns (0.3%)
   LB compute        : 457.61 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.53 us    (69.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.33792893482431e-05,3.612387937284648e-05,-4.310114117623117e-06)
    sum a = (0.00010716172223890064,0.0003084969723102049,3.2314475927637513e-06)
    sum e = 0.050344300381806616
    sum de = -5.248668799680412e-05
Info: cfl dt = 0.0020977973801806038 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7689e+05    |      100000 |   5.653e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 12.762872359087476 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8120042498268929, dt = 0.0020977973801806038 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.96 us    (1.9%)
   patch tree reduce : 1342.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 341.82 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (70.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.360069307145663e-05,3.677202815963148e-05,-4.303233036112384e-06)
    sum a = (0.0001035999946648998,0.00030946632887662493,3.337766406309408e-06)
    sum e = 0.05034432453509549
    sum de = -4.24544347616177e-05
Info: cfl dt = 0.0020912515368465656 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7831e+05    |      100000 |   5.608e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 13.465847509271697 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8141020472070735, dt = 0.0020912515368465656 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.92 us    (1.8%)
   patch tree reduce : 1432.00 ns (0.4%)
   gen split merge   : 661.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.4%)
   LB compute        : 356.23 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (73.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.381361082812295e-05,3.742021685233304e-05,-4.296141409321303e-06)
    sum a = (0.00010004026184440598,0.00031037164511061666,3.44328600755698e-06)
    sum e = 0.050344238989959156
    sum de = -3.235760116010964e-05
Info: cfl dt = 0.0020037528465872818 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7888e+05    |      100000 |   5.590e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 13.467296601852746 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.81619329874392, dt = 0.0020037528465872818 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (1.7%)
   patch tree reduce : 1122.00 ns (0.3%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1383.00 ns (0.4%)
   LB compute        : 360.28 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (72.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.401034463920287e-05,3.8043071541704806e-05,-4.2891315811678974e-06)
    sum a = (9.662266572793869e-05,0.00031118116351094334,3.5438776564441963e-06)
    sum e = 0.050344070854458016
    sum de = -2.2586376811452893e-05
Info: cfl dt = 0.001995714449661217 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7854e+05    |      100000 |   5.601e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 12.879288683822773 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8181970515905073, dt = 0.0018029484094927994 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.13 us    (2.0%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 334.33 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (71.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.41811263117228e-05,3.860492616292072e-05,-4.282641372182372e-06)
    sum a = (9.354329485557898e-05,0.00031186055410564745,3.63389889865575e-06)
    sum e = 0.05034379489817869
    sum de = -1.3694171967291787e-05
Info: cfl dt = 0.0020065809719867853 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7690e+05    |      100000 |   5.653e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 11.482126681643459 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 255                                                     [SPH][rank=0]
Info: time since start : 1354.413094063 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000041.vtk        [VTK Dump][rank=0]
              - took 8.63 ms, bandwidth = 618.58 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump_0000041.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.70 us    (54.6%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000041.sham  [Shamrock Dump][rank=0]
              - took 11.96 ms, bandwidth = 957.49 MB/s
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1846.86 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.8200000000000001, dt = 0.0020065809719867853 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.28 us   (2.1%)
   patch tree reduce : 2.00 us    (0.4%)
   gen split merge   : 671.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.2%)
   LB compute        : 500.32 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.61 us    (76.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.436605253383282e-05,3.9231312069793114e-05,-4.275268507970472e-06)
    sum a = (9.011292781309674e-05,0.00031256148463759816,3.7334730032455717e-06)
    sum e = 0.05034402667995754
    sum de = -3.83872285809206e-06
Info: cfl dt = 0.001994409897508515 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7596e+05    |      100000 |   5.683e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 12.711026321717169 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8220065809719869, dt = 0.001994409897508515 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.20 us    (1.7%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.3%)
   LB compute        : 398.18 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (70.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.454233299433545e-05,3.985539102527341e-05,-4.267722530708938e-06)
    sum a = (8.670173779138313e-05,0.00031320002225065707,3.831728212401693e-06)
    sum e = 0.05034401477993511
    sum de = 6.091307870232626e-06
Info: cfl dt = 0.002048219738451852 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7832e+05    |      100000 |   5.608e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 12.80349999797807 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8240009908694954, dt = 0.002048219738451852 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.45 us    (2.1%)
   patch tree reduce : 1472.00 ns (0.4%)
   gen split merge   : 1182.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 341.59 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.13 us    (67.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.471651554947454e-05,4.049753024579964e-05,-4.259776328771098e-06)
    sum a = (8.319865255304094e-05,0.0003137948965201988,3.931810777094768e-06)
    sum e = 0.05034410900623931
    sum de = 1.6355365963687856e-05
Info: cfl dt = 0.0020090152367556644 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7848e+05    |      100000 |   5.603e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 13.16033836450833 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8260492106079472, dt = 0.0020090152367556644 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.61 us    (2.2%)
   patch tree reduce : 1313.00 ns (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 332.69 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (69.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.488007536596197e-05,4.1128558190730633e-05,-4.251774765469639e-06)
    sum a = (7.976458228231319e-05,0.0003143179339201975,4.029082873735612e-06)
    sum e = 0.05034410268756924
    sum de = 2.6541986746961767e-05
Info: cfl dt = 0.002077882791699264 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7700e+05    |      100000 |   5.650e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 12.801688682083725 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8280582258447029, dt = 0.0019417741552971712 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.72 us    (2.1%)
   patch tree reduce : 1373.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.3%)
   LB compute        : 343.33 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (67.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.503151062058863e-05,4.173941802641712e-05,-4.243853485913732e-06)
    sum a = (7.644899944966806e-05,0.0003147660789897863,4.122174236008331e-06)
    sum e = 0.05034408012828455
    sum de = 3.6488392279469745e-05
Info: cfl dt = 0.0019729748327689516 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7761e+05    |      100000 |   5.630e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 12.41530627304645 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 260                                                     [SPH][rank=0]
Info: time since start : 1359.131195566 (s)                                           [SPH][rank=0]
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1846.30 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.8300000000000001, dt = 0.0019729748327689516 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.94 us   (2.2%)
   patch tree reduce : 1804.00 ns (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.2%)
   LB compute        : 464.58 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (73.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.51791235159725e-05,4.2360878676728824e-05,-4.235630158689134e-06)
    sum a = (7.308542446479488e-05,0.00031516310054886733,4.215742063479436e-06)
    sum e = 0.05034420293282602
    sum de = 4.665638508687069e-05
Info: cfl dt = 0.0018786240965532333 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7280e+05    |      100000 |   5.787e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 12.27327744975595 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.831972974832769, dt = 0.0018786240965532333 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (1.9%)
   patch tree reduce : 1192.00 ns (0.3%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1412.00 ns (0.4%)
   LB compute        : 339.45 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (72.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.531310543108315e-05,4.295334332853775e-05,-4.227618060579445e-06)
    sum a = (6.988925907604466e-05,0.0003154859637528111,4.303794531957569e-06)
    sum e = 0.0503441844475464
    sum de = 5.646953984030572e-05
Info: cfl dt = 0.0018469717352241075 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7697e+05    |      100000 |   5.651e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 11.968306119242618 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8338515989293223, dt = 0.0018469717352241075 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (1.7%)
   patch tree reduce : 1122.00 ns (0.3%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 362.12 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (70.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.543918672053012e-05,4.35363402557471e-05,-4.219586364980177e-06)
    sum a = (6.675476273918845e-05,0.00031575032461258335,4.389282496618172e-06)
    sum e = 0.050344261163019925
    sum de = 6.618303515568826e-05
Info: cfl dt = 0.0017845535837771249 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7857e+05    |      100000 |   5.600e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 11.873463469129879 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8356985706645463, dt = 0.0017845535837771249 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.26 us    (2.0%)
   patch tree reduce : 1072.00 ns (0.3%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 341.58 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (72.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.555541950854558e-05,4.410005776263235e-05,-4.211674508243422e-06)
    sum a = (6.373511082601862e-05,0.0003159551834061627,4.470769833755424e-06)
    sum e = 0.05034431603473044
    sum de = 7.565663834268775e-05
Info: cfl dt = 0.0018590360864584078 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7883e+05    |      100000 |   5.592e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 11.48891273379576 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8374831242483235, dt = 0.0018590360864584078 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (1.6%)
   patch tree reduce : 1172.00 ns (0.3%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 387.68 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (70.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.56712110142169e-05,4.468761264103114e-05,-4.203290476528455e-06)
    sum a = (6.060051955181594e-05,0.00031611503334476153,4.5543832541966866e-06)
    sum e = 0.05034455482258201
    sum de = 8.55543176658297e-05
Info: cfl dt = 0.0017874263154279819 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7838e+05    |      100000 |   5.606e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 11.938433044131818 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8393421603347819, dt = 0.0006578396652180407 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.28 us    (1.8%)
   patch tree reduce : 1252.00 ns (0.3%)
   gen split merge   : 701.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 377.57 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (72.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.570816278057672e-05,4.489571423214132e-05,-4.200216702390289e-06)
    sum a = (5.94943690538946e-05,0.0003161584061317729,4.583638508451687e-06)
    sum e = 0.05034363682111291
    sum de = 8.935091906547255e-05
Info: cfl dt = 0.001772208020535702 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7693e+05    |      100000 |   5.652e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 4.190037379481625 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 266                                                     [SPH][rank=0]
Info: time since start : 1364.3934940190002 (s)                                       [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000042.vtk        [VTK Dump][rank=0]
              - took 8.24 ms, bandwidth = 648.47 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump_0000042.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.29 us    (18.5%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000042.sham  [Shamrock Dump][rank=0]
              - took 11.17 ms, bandwidth = 1.00 GB/s
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1843.48 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.84, dt = 0.001772208020535702 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.44 us   (2.3%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 681.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.2%)
   LB compute        : 463.49 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.39 us    (77.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.58132353437501e-05,4.545602696141859e-05,-4.192083918829036e-06)
    sum a = (5.6523504218973426e-05,0.000316240347105505,4.661501660989849e-06)
    sum e = 0.0503446787564476
    sum de = 9.867211270853136e-05
Info: cfl dt = 0.0018132587963685678 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7585e+05    |      100000 |   5.687e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 11.21926306831558 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8417722080205357, dt = 0.0018132587963685678 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.92 us    (1.9%)
   patch tree reduce : 1162.00 ns (0.3%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 345.94 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (68.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.5913094589726e-05,4.6029525160803607e-05,-4.1835624150862514e-06)
    sum a = (5.349916559960832e-05,0.0003162710252799752,4.73962880462821e-06)
    sum e = 0.05034491568260312
    sum de = 0.00010848886182196401
Info: cfl dt = 0.0018495910502560667 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7817e+05    |      100000 |   5.613e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 11.630641604948924 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8435854668169043, dt = 0.0018495910502560667 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.08 us    (1.8%)
   patch tree reduce : 1262.00 ns (0.3%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 370.21 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 2.96 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (72.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.600930421332342e-05,4.661452503234847e-05,-4.174725207702452e-06)
    sum a = (5.0432705740153404e-05,0.0003162460783027278,4.8175402375101216e-06)
    sum e = 0.05034517032638066
    sum de = 0.00011855207602425618
Info: cfl dt = 0.001807563004664833 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7729e+05    |      100000 |   5.640e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 11.8049712025712 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.8454350578671603, dt = 0.001807563004664833 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.57 us    (2.0%)
   patch tree reduce : 1363.00 ns (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1153.00 ns (0.3%)
   LB compute        : 353.38 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (69.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.609762865807934e-05,4.7186136673001996e-05,-4.165945148051151e-06)
    sum a = (4.745670214325614e-05,0.00031616600874253637,4.8917433638923144e-06)
    sum e = 0.05034534541360865
    sum de = 0.0001284551286198876
Info: cfl dt = 0.0018045542790196285 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7840e+05    |      100000 |   5.605e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 11.609013789019569 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8472426208718251, dt = 0.0018045542790196285 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.35 us    (2.1%)
   patch tree reduce : 1082.00 ns (0.3%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 336.71 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.618057719600191e-05,4.7756603031575455e-05,-4.157050668218939e-06)
    sum a = (4.450920936916903e-05,0.0003160304061913387,4.963684324827671e-06)
    sum e = 0.050345584261139414
    sum de = 0.00013835485368261536
Info: cfl dt = 0.001815156357415754 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7855e+05    |      100000 |   5.601e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 11.599571827708836 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8490471751508447, dt = 0.0009528248491552649 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (1.8%)
   patch tree reduce : 1202.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.3%)
   LB compute        : 342.89 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (68.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.622032722135629e-05,4.805760230460336e-05,-4.152256235766444e-06)
    sum a = (4.2963471943828596e-05,0.00031593619332367934,5.0007280548637e-06)
    sum e = 0.050344956733106565
    sum de = 0.0001438412395947307
Info: cfl dt = 0.0017733862201811607 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7890e+05    |      100000 |   5.590e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 6.136600894867844 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 272                                                     [SPH][rank=0]
Info: time since start : 1369.6630974050001 (s)                                       [SPH][rank=0]
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1843.78 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.85, dt = 0.0017733862201811607 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.80 us   (2.3%)
   patch tree reduce : 2.05 us    (0.4%)
   gen split merge   : 682.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.2%)
   LB compute        : 474.99 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.11 us    (75.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.629578164195559e-05,4.861783431211424e-05,-4.143370365449828e-06)
    sum a = (4.010856066407596e-05,0.0003157187517275591,5.067745885055111e-06)
    sum e = 0.05034594821878851
    sum de = 0.00015336713028680515
Info: cfl dt = 0.0017005965403583108 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7792e+05    |      100000 |   5.621e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 11.358697824218742 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8517733862201812, dt = 0.0017005965403583108 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.36 us    (2.1%)
   patch tree reduce : 1422.00 ns (0.4%)
   gen split merge   : 1013.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 337.94 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (69.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.636145869129806e-05,4.91545517250647e-05,-4.13469275008201e-06)
    sum a = (3.740054519328974e-05,0.0003154586808584792,5.129445422288865e-06)
    sum e = 0.0503461364045886
    sum de = 0.00016276069422109543
Info: cfl dt = 0.0016383486424180374 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7867e+05    |      100000 |   5.597e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 10.938530364765018 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8534739827605394, dt = 0.0016383486424180374 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.99 us    (2.0%)
   patch tree reduce : 1252.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.3%)
   LB compute        : 337.50 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (70.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.642043120287107e-05,4.9671161888775984e-05,-4.126236467128251e-06)
    sum a = (3.482266259594677e-05,0.0003151603379189647,5.1862436442338335e-06)
    sum e = 0.05034634422963793
    sum de = 0.00017180984462933797
Info: cfl dt = 0.001584095264812514 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7870e+05    |      100000 |   5.596e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 10.540090704093807 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8551123314029575, dt = 0.001584095264812514 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.14 us    (1.9%)
   patch tree reduce : 1402.00 ns (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1093.00 ns (0.3%)
   LB compute        : 360.76 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 2.96 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (71.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.647348188257212e-05,5.017016149285998e-05,-4.117974435484364e-06)
    sum a = (3.2362540324008605e-05,0.0003148274952240367,5.238430853743236e-06)
    sum e = 0.050346567653139794
    sum de = 0.00018055167740611082
Info: cfl dt = 0.0015559752174968645 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7881e+05    |      100000 |   5.592e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 10.197210136283925 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.85669642666777, dt = 0.0015559752174968645 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.80 us    (1.7%)
   patch tree reduce : 1302.00 ns (0.3%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 390.59 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (71.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.65218886592724e-05,5.0659761645943306e-05,-4.109782232141627e-06)
    sum a = (2.9980591366775005e-05,0.00031445858466782483,5.286809401909719e-06)
    sum e = 0.05034682771525421
    sum de = 0.00018911299396791155
Info: cfl dt = 0.0015075444659899543 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7656e+05    |      100000 |   5.664e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 9.89005226838636 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.8582524018852669, dt = 0.0015075444659899543 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (1.8%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 346.73 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (68.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.656523260709889e-05,5.1133534937202654e-05,-4.10177449397403e-06)
    sum a = (2.7708825819574717e-05,0.00031406226026768755,5.330690310856142e-06)
    sum e = 0.0503470717856363
    sum de = 0.0001973924786965397
Info: cfl dt = 0.0015528692693104107 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7838e+05    |      100000 |   5.606e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 9.681129703751656 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8597599463512569, dt = 0.00024005364874313262 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.34 us    (2.0%)
   patch tree reduce : 1323.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 354.93 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (70.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.657017181805042e-05,5.120862799038144e-05,-4.1004617661038695e-06)
    sum a = (2.7350555040967235e-05,0.0003139956973772522,5.337389814899999e-06)
    sum e = 0.05034639434685552
    sum de = 0.00019896826855162554
Info: cfl dt = 0.0015439177313333681 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7767e+05    |      100000 |   5.628e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 1.5354298244387417 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 279                                                     [SPH][rank=0]
Info: time since start : 1375.464858605 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000043.vtk        [VTK Dump][rank=0]
              - took 8.22 ms, bandwidth = 649.66 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump_0000043.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.91 us    (57.9%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000043.sham  [Shamrock Dump][rank=0]
              - took 11.14 ms, bandwidth = 1.00 GB/s
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1850.27 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.86, dt = 0.0015439177313333681 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.51 us   (2.1%)
   patch tree reduce : 1563.00 ns (0.3%)
   gen split merge   : 721.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1093.00 ns (0.2%)
   LB compute        : 532.11 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (79.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.66123558228298e-05,5.169340352579338e-05,-4.0922204712094e-06)
    sum a = (2.507114078276891e-05,0.0003135453358281526,5.378431059561894e-06)
    sum e = 0.050347470353223386
    sum de = 0.00020711264939387433
Info: cfl dt = 0.0015961160001282334 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.5779e+05    |      100000 |   6.338e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 8.770055294923228 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8615439177313333, dt = 0.0015961160001282334 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.20 us    (2.0%)
   patch tree reduce : 1433.00 ns (0.4%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 344.92 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (68.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.665061265773287e-05,5.219351059248455e-05,-4.083604189186981e-06)
    sum a = (2.276243920102472e-05,0.0003130407277227626,5.416918743397177e-06)
    sum e = 0.0503478631028255
    sum de = 0.00021575117547579362
Info: cfl dt = 0.0015513591401746536 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7836e+05    |      100000 |   5.607e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 10.248318677084516 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8631400337314615, dt = 0.0015513591401746536 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.84 us    (1.9%)
   patch tree reduce : 1183.00 ns (0.3%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 336.85 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.83 us    (73.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.66840828980758e-05,5.267874648015086e-05,-4.075169887378847e-06)
    sum a = (2.0569111687661306e-05,0.00031251446247393356,5.4501486697557795e-06)
    sum e = 0.05034815957976898
    sum de = 0.00022414158411209457
Info: cfl dt = 0.0015118287337642135 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7743e+05    |      100000 |   5.636e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 9.90929535691489 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.8646913928716362, dt = 0.0015118287337642135 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (1.8%)
   patch tree reduce : 1193.00 ns (0.3%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 349.94 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.89 us    (67.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.671347855280916e-05,5.315080661103489e-05,-4.066904420241611e-06)
    sum a = (1.8483608707209443e-05,0.00031197019097760164,5.478237894204254e-06)
    sum e = 0.05034846621402671
    sum de = 0.00023227436424925576
Info: cfl dt = 0.0014773082467035082 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7857e+05    |      100000 |   5.600e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 9.718703222964482 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8662032216054004, dt = 0.0014773082467035082 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.77 us    (1.7%)
   patch tree reduce : 1283.00 ns (0.3%)
   gen split merge   : 691.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 369.41 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (73.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.673920807871445e-05,5.361127132424657e-05,-4.058790141174796e-06)
    sum a = (1.6498863931124855e-05,0.0003114112084782455,5.501278351218716e-06)
    sum e = 0.050348782601629824
    sum de = 0.00024018085468129966
Info: cfl dt = 0.0014464622151077803 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7823e+05    |      100000 |   5.611e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 9.478559920116378 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.867680529852104, dt = 0.0014464622151077803 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.92 us    (1.9%)
   patch tree reduce : 1022.00 ns (0.3%)
   gen split merge   : 1032.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1253.00 ns (0.3%)
   LB compute        : 342.51 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (72.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.67616070220716e-05,5.406130297594408e-05,-4.0508157309763905e-06)
    sum a = (1.4609771648622677e-05,0.0003108409639200581,5.5193219141957556e-06)
    sum e = 0.05034910718911102
    sum de = 0.00024788796892289295
Info: cfl dt = 0.0014515018830351292 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7781e+05    |      100000 |   5.624e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 9.258782416096224 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8691269920672118, dt = 0.0008730079327882168 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.13 us    (2.0%)
   patch tree reduce : 1413.00 ns (0.4%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1303.00 ns (0.4%)
   LB compute        : 342.70 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (72.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.677299521831473e-05,5.433225718467702e-05,-4.045984269495648e-06)
    sum a = (1.3496774456244105e-05,0.00031048723004487223,5.52793754439994e-06)
    sum e = 0.050348886993687454
    sum de = 0.0002527224052661578
Info: cfl dt = 0.0014384342573074986 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7920e+05    |      100000 |   5.580e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 5.63210154238717 (tsim/hr)                              [sph::Model][rank=0]
Info: iteration since start : 286                                                     [SPH][rank=0]
Info: time since start : 1381.367737174 (s)                                           [SPH][rank=0]
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1842.93 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.87, dt = 0.0014384342573074986 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.69 us   (2.3%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.2%)
   LB compute        : 480.43 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (77.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.679192361336784e-05,5.477871824659298e-05,-4.038028934002772e-06)
    sum a = (1.1710071115631941e-05,0.0003098912620198931,5.538163692866626e-06)
    sum e = 0.05034968883456294
    sum de = 0.00026012314227584986
Info: cfl dt = 0.0014911325390003086 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7894e+05    |      100000 |   5.589e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 9.266015300115091 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8714384342573075, dt = 0.0014911325390003086 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.89 us    (1.7%)
   patch tree reduce : 1102.00 ns (0.3%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 381.51 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (73.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.68080998537904e-05,5.524037856053038e-05,-4.0297634430929e-06)
    sum a = (9.922324291873405e-06,0.00030926011607725973,5.543291828258068e-06)
    sum e = 0.05035013517497075
    sum de = 0.0002679263937868962
Info: cfl dt = 0.001436575978446258 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7792e+05    |      100000 |   5.620e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 9.551136163648934 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8729295667963078, dt = 0.001436575978446258 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.20 us    (2.0%)
   patch tree reduce : 1193.00 ns (0.3%)
   gen split merge   : 1083.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 339.92 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (69.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.682102114279664e-05,5.5684183653253545e-05,-4.021796259846124e-06)
    sum a = (8.264781183731374e-06,0.0003086440043308233,5.542654938502207e-06)
    sum e = 0.050350473994652145
    sum de = 0.0002754449516371202
Info: cfl dt = 0.0013886121931682629 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7830e+05    |      100000 |   5.608e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 9.221287716561076 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8743661427747541, dt = 0.0013886121931682629 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.7%)
   patch tree reduce : 1162.00 ns (0.3%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.3%)
   LB compute        : 337.26 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (68.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.683130712541228e-05,5.611232793534841e-05,-4.0141001190862605e-06)
    sum a = (6.725386066849918e-06,0.00030804589690764826,5.536542481903112e-06)
    sum e = 0.050350817834681226
    sum de = 0.0002826550074900428
Info: cfl dt = 0.001399434041545054 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7619e+05    |      100000 |   5.676e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 8.807809637171394 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8757547549679223, dt = 0.001399434041545054 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.97 us    (2.0%)
   patch tree reduce : 1072.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 337.05 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (70.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.683965004820236e-05,5.6543002580204514e-05,-4.006356336980507e-06)
    sum a = (5.238472829794145e-06,0.00030744593159670163,5.524623187233481e-06)
    sum e = 0.050351229803395306
    sum de = 0.00028982955131603386
Info: cfl dt = 0.0013568929196830335 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7833e+05    |      100000 |   5.608e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 8.984103944655114 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8771541890094674, dt = 0.0013568929196830335 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.88 us    (1.9%)
   patch tree reduce : 1312.00 ns (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1183.00 ns (0.3%)
   LB compute        : 349.43 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (68.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.684571767638712e-05,5.695975398203245e-05,-3.99886835502718e-06)
    sum a = (3.860020669186183e-06,0.00030687241918594585,5.507275010877744e-06)
    sum e = 0.050351590011436284
    sum de = 0.000296743178105386
Info: cfl dt = 0.0013295949391596063 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7673e+05    |      100000 |   5.658e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 8.632978980759082 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8785110819291504, dt = 0.0013295949391596063 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.98 us    (1.8%)
   patch tree reduce : 1142.00 ns (0.3%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.3%)
   LB compute        : 373.04 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 2.96 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (71.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.684991473435237e-05,5.7367380900084295e-05,-3.991557679852995e-06)
    sum a = (2.5706899549251815e-06,0.0003063239249682292,5.484492206256599e-06)
    sum e = 0.05035196578417493
    sum de = 0.0003034399974992227
Info: cfl dt = 0.0014263056661557502 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7929e+05    |      100000 |   5.578e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 8.581863498421372 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.87984067686831, dt = 0.00015932313168998125 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.83 us    (1.7%)
   patch tree reduce : 1262.00 ns (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 375.22 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (71.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.684946716092772e-05,5.741582074955839e-05,-3.990699019329831e-06)
    sum a = (2.4202491710271503e-06,0.0003062593664905082,5.481369634960282e-06)
    sum e = 0.05035143175091368
    sum de = 0.00030451551935683027
Info: cfl dt = 0.00142492484386092 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7981e+05    |      100000 |   5.561e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 1.031333730918403 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 294                                                     [SPH][rank=0]
Info: time since start : 1387.728444718 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000044.vtk        [VTK Dump][rank=0]
              - took 8.13 ms, bandwidth = 656.89 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump_0000044.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.11 us    (57.3%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000044.sham  [Shamrock Dump][rank=0]
              - took 11.30 ms, bandwidth = 1012.94 MB/s
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1841.98 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.88, dt = 0.00142492484386092 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.53 us   (2.2%)
   patch tree reduce : 1894.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.2%)
   LB compute        : 447.44 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.68 us    (76.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.685290384975256e-05,5.785221218670668e-05,-3.982888728307513e-06)
    sum a = (1.1143929704039195e-06,0.00030569598213964536,5.449538817022596e-06)
    sum e = 0.05035254197455408
    sum de = 0.00031125467136514676
Info: cfl dt = 0.001454047017268074 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7889e+05    |      100000 |   5.590e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 9.176790887682511 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8814249248438609, dt = 0.001454047017268074 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.95 us    (1.8%)
   patch tree reduce : 1202.00 ns (0.3%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1151.00 ns (0.3%)
   LB compute        : 373.83 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (73.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.685359385606045e-05,5.829630712754822e-05,-3.974987520906774e-06)
    sum a = (-1.458867019492139e-07,0.00030515267608949916,5.409678469470546e-06)
    sum e = 0.050353029529909756
    sum de = 0.00031835066015527253
Info: cfl dt = 0.0014091951686106723 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7734e+05    |      100000 |   5.639e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 9.283185080399738 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.882878971861129, dt = 0.0014091951686106723 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.69 us    (2.0%)
   patch tree reduce : 1402.00 ns (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1223.00 ns (0.3%)
   LB compute        : 362.46 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (70.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.68524720202757e-05,5.8725931808107085e-05,-3.967393207553588e-06)
    sum a = (-1.2988272496757993e-06,0.00030466455692206777,5.3636899015263375e-06)
    sum e = 0.050353441495223146
    sum de = 0.00032517794781711544
Info: cfl dt = 0.0014557564485787869 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7862e+05    |      100000 |   5.598e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 9.061577599108679 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8842881670297397, dt = 0.0014557564485787869 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.45 us    (1.9%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 365.81 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (67.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.684976888499973e-05,5.916910527391478e-05,-3.959617384825146e-06)
    sum a = (-2.4211900508904945e-06,0.0003042085818277463,5.3083419892320805e-06)
    sum e = 0.050353966473872046
    sum de = 0.00033210027263371025
Info: cfl dt = 0.0014940334709582688 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7767e+05    |      100000 |   5.628e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 9.311307490510524 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8857439234783184, dt = 0.0014940334709582688 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.12 us    (1.8%)
   patch tree reduce : 1293.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.3%)
   LB compute        : 383.04 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (73.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.684533460258689e-05,5.9623271182979374e-05,-3.951726830758058e-06)
    sum a = (-3.503984511018523e-06,0.0003038008110575624,5.243047933183788e-06)
    sum e = 0.05035450786551626
    sum de = 0.00033913963094334197
Info: cfl dt = 0.001468718038955379 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7790e+05    |      100000 |   5.621e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 9.56854262618949 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.8872379569492767, dt = 0.001468718038955379 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (1.7%)
   patch tree reduce : 1393.00 ns (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.4%)
   LB compute        : 349.25 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (70.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.683937937174627e-05,6.006916430283469e-05,-3.944075047432082e-06)
    sum a = (-4.504977960299218e-06,0.00030346844268282935,5.170314189929082e-06)
    sum e = 0.05035498770525431
    sum de = 0.00034605312535978335
Info: cfl dt = 0.0014176727079651561 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7808e+05    |      100000 |   5.615e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 9.41598501775172 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.8887066749882321, dt = 0.0012933250117679318 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.72 us    (1.7%)
   patch tree reduce : 1303.00 ns (0.3%)
   gen split merge   : 1002.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 366.53 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (72.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.68328178825054e-05,6.046140355232887e-05,-3.9374415634519224e-06)
    sum a = (-5.339118423529182e-06,0.00030323888638813704,5.0991594354032476e-06)
    sum e = 0.050355276960147036
    sum de = 0.0003522149522796339
Info: cfl dt = 0.001378720220592795 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7773e+05    |      100000 |   5.627e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 8.274974159982044 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 301                                                     [SPH][rank=0]
Info: time since start : 1393.5552748960001 (s)                                       [SPH][rank=0]
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1846.22 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.89, dt = 0.001378720220592795 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.10 us   (2.5%)
   patch tree reduce : 1543.00 ns (0.3%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1834.00 ns (0.4%)
   LB compute        : 457.03 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.49 us    (76.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.682491732460978e-05,6.087933669121187e-05,-3.930457262342171e-06)
    sum a = (-6.184860133198147e-06,0.00030306598694903144,5.015889610902797e-06)
    sum e = 0.05035584584216925
    sum de = 0.00035862555972659933
Info: cfl dt = 0.00134753398211411 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7795e+05    |      100000 |   5.620e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 8.832120397834382 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8913787202205928, dt = 0.00134753398211411 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.97 us    (1.9%)
   patch tree reduce : 1353.00 ns (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 350.67 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (69.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.681599999481001e-05,6.128760921747093e-05,-3.923755583536349e-06)
    sum a = (-6.97443252785005e-06,0.00030297460052205186,4.9270721125754245e-06)
    sum e = 0.05035630613497657
    sum de = 0.00036495937361100047
Info: cfl dt = 0.0013306401795588573 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7651e+05    |      100000 |   5.665e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 8.562578988149207 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8927262542027069, dt = 0.0013306401795588573 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (1.8%)
   patch tree reduce : 1133.00 ns (0.3%)
   gen split merge   : 671.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 361.60 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 us    (70.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.680618754683678e-05,6.169069782115893e-05,-3.917259265714375e-06)
    sum a = (-7.72499149682551e-06,0.00030296506684615224,4.832142061182714e-06)
    sum e = 0.050356782093247655
    sum de = 0.0003712198359617456
Info: cfl dt = 0.0015516851487966717 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7805e+05    |      100000 |   5.617e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 8.528924955560516 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8940568943822658, dt = 0.0015516851487966717 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.13 us    (2.0%)
   patch tree reduce : 1152.00 ns (0.3%)
   gen split merge   : 1033.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 343.74 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (69.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.679370143029348e-05,6.21607978730395e-05,-3.909824461511461e-06)
    sum a = (-8.573319434270262e-06,0.0003030617223656016,4.712364610825831e-06)
    sum e = 0.05035758297166521
    sum de = 0.00037839445541874937
Info: cfl dt = 0.0014675762352436552 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7847e+05    |      100000 |   5.603e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 9.969475592034017 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8956085795310624, dt = 0.0014675762352436552 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.02 us    (1.8%)
   patch tree reduce : 1684.00 ns (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1513.00 ns (0.4%)
   LB compute        : 359.90 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (71.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.678046126150579e-05,6.260563904406513e-05,-3.9030016356422685e-06)
    sum a = (-9.36042703933639e-06,0.00030326513661561736,4.590159312695877e-06)
    sum e = 0.05035805903381885
    sum de = 0.0003854305686933733
Info: cfl dt = 0.0014095303142996987 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7738e+05    |      100000 |   5.638e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 9.371351035715627 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8970761557663061, dt = 0.0014095303142996987 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (1.8%)
   patch tree reduce : 1122.00 ns (0.3%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 346.89 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (72.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.676668988562838e-05,6.303324971034815e-05,-3.8966213397392324e-06)
    sum a = (-1.0113465345322307e-05,0.00030356690776315096,4.464693331331761e-06)
    sum e = 0.050358551942517295
    sum de = 0.0003922618240251008
Info: cfl dt = 0.001448390582490878 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7834e+05    |      100000 |   5.607e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 9.049370149649924 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8984856860806057, dt = 0.001448390582490878 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.80 us    (1.9%)
   patch tree reduce : 1483.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 334.70 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (68.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.675151092250248e-05,6.347314583849871e-05,-3.89024314401649e-06)
    sum a = (-1.089577845692329e-05,0.0003039883137681172,4.327592521219796e-06)
    sum e = 0.050359165378652176
    sum de = 0.00039933622795559616
Info: cfl dt = 0.0013716183310651098 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7855e+05    |      100000 |   5.601e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 9.310064526458662 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8999340766630967, dt = 6.592333690336183e-05 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.98 us    (1.7%)
   patch tree reduce : 1202.00 ns (0.3%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 385.13 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (74.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.675022608896486e-05,6.34934909427717e-05,-3.890057142437853e-06)
    sum a = (-1.0931828156829181e-05,0.000304010172698988,4.3211603168193365e-06)
    sum e = 0.05035847180753435
    sum de = 0.0004001136089318602
Info: cfl dt = 0.0013702313404250616 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.8029e+05    |      100000 |   5.546e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 0.4278824606924344 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 309                                                     [SPH][rank=0]
Info: time since start : 1399.919093892 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000045.vtk        [VTK Dump][rank=0]
              - took 8.84 ms, bandwidth = 603.90 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump_0000045.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.34 us    (55.4%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000045.sham  [Shamrock Dump][rank=0]
              - took 12.50 ms, bandwidth = 916.08 MB/s
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1845.42 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.9, dt = 0.0013702313404250616 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.62 us   (2.2%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 681.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.2%)
   LB compute        : 510.09 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (78.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.673524576715626e-05,6.391005592971716e-05,-3.884136365160928e-06)
    sum a = (-1.1692096506047615e-05,0.0003045187008065093,4.183593346567435e-06)
    sum e = 0.05035967010019042
    sum de = 0.00040659048497033876
Info: cfl dt = 0.0013743120304395631 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7875e+05    |      100000 |   5.594e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 8.817634267296384 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.901370231340425, dt = 0.0013743120304395631 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.27 us    (2.0%)
   patch tree reduce : 1232.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 343.45 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (70.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.671865630651028e-05,6.432890804430244e-05,-3.878481051781301e-06)
    sum a = (-1.248441684799272e-05,0.000305131156326027,4.038381434391291e-06)
    sum e = 0.050360239632031865
    sum de = 0.00041366597969930775
Info: cfl dt = 0.0013812601467746782 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7837e+05    |      100000 |   5.606e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 8.824683638423567 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9027445433708646, dt = 0.0013812601467746782 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (1.8%)
   patch tree reduce : 1212.00 ns (0.3%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 348.15 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (70.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.670086763137414e-05,6.475079440256663e-05,-3.8730027796874325e-06)
    sum a = (-1.3321418709917412e-05,0.0003058486363300023,3.885239043951725e-06)
    sum e = 0.050360824642941907
    sum de = 0.00042099975250090466
Info: cfl dt = 0.0014256693617564445 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7899e+05    |      100000 |   5.587e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 8.900319564837016 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9041258035176393, dt = 0.0014256693617564445 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (1.8%)
   patch tree reduce : 1372.00 ns (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 350.42 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.05 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (68.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.668129763420224e-05,6.518732894598677e-05,-3.86756947815972e-06)
    sum a = (-1.4239098611892598e-05,0.000306693626792433,3.7197087243411044e-06)
    sum e = 0.050361475707598094
    sum de = 0.0004288138091670501
Info: cfl dt = 0.001375012394593249 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7695e+05    |      100000 |   5.651e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 9.081671421316933 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9055514728793957, dt = 0.001375012394593249 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.92 us    (1.9%)
   patch tree reduce : 1443.00 ns (0.4%)
   gen split merge   : 671.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 342.26 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (73.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.666106454306604e-05,6.560963882267548e-05,-3.862572828312023e-06)
    sum a = (-1.518619756131614e-05,0.00030760515138234104,3.552979731893571e-06)
    sum e = 0.05036202365743043
    sum de = 0.0004367254153782129
Info: cfl dt = 0.0014588633711953613 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7867e+05    |      100000 |   5.597e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 8.844126945416486 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.906926485273989, dt = 0.0014588633711953613 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (1.8%)
   patch tree reduce : 1273.00 ns (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1403.00 ns (0.4%)
   LB compute        : 342.53 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (70.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.66382588193046e-05,6.60590193896213e-05,-3.857504143538147e-06)
    sum a = (-1.6267913353046334e-05,0.0003086707457628616,3.368552459901722e-06)
    sum e = 0.05036275205578262
    sum de = 0.0004453830569817442
Info: cfl dt = 0.001417584723428601 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7898e+05    |      100000 |   5.587e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 9.399979483100047 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9083853486451844, dt = 0.001417584723428601 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (1.9%)
   patch tree reduce : 1232.00 ns (0.3%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 335.56 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (72.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.661440863606999e-05,6.649736360168942e-05,-3.8528634621267955e-06)
    sum a = (-1.7404341209328862e-05,0.000309796669852679,3.1819861912186787e-06)
    sum e = 0.050363350800743605
    sum de = 0.0004543152654156772
Info: cfl dt = 0.0013686800979809458 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7908e+05    |      100000 |   5.584e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 9.139026134888514 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.909802933368613, dt = 0.00019706663138707725 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.20 us    (1.9%)
   patch tree reduce : 1292.00 ns (0.3%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 355.52 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (71.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.661017332979758e-05,6.655921223422867e-05,-3.8523686355731664e-06)
    sum a = (-1.7569544613875516e-05,0.00030995966771420636,3.155488466845913e-06)
    sum e = 0.050362751737748575
    sum de = 0.0004561330253079568
Info: cfl dt = 0.0013647421436718374 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7743e+05    |      100000 |   5.636e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 1.2587489008008 (tsim/hr)                               [sph::Model][rank=0]
Info: iteration since start : 317                                                     [SPH][rank=0]
Info: time since start : 1406.304199339 (s)                                           [SPH][rank=0]
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1848.80 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.91, dt = 0.0013647421436718374 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.68 us   (2.3%)
   patch tree reduce : 1353.00 ns (0.3%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.2%)
   LB compute        : 449.83 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.89 us    (73.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.658617915377679e-05,6.698224331631662e-05,-3.848064818387236e-06)
    sum a = (-1.8763409218839058e-05,0.00031113130464501204,2.968076114038957e-06)
    sum e = 0.0503640193006438
    sum de = 0.0004647195444518795
Info: cfl dt = 0.0015107506186797784 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7884e+05    |      100000 |   5.592e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 8.786531437951973 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9113647421436719, dt = 0.0015107506186797784 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.49 us    (2.0%)
   patch tree reduce : 1353.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 363.10 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (71.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.655701766301862e-05,6.745308461844659e-05,-3.84370868032973e-06)
    sum a = (-2.0192516284049183e-05,0.0003125070176134271,2.7527328358964558e-06)
    sum e = 0.05036487936349256
    sum de = 0.0004751996899840352
Info: cfl dt = 0.0014852608780672775 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7800e+05    |      100000 |   5.618e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 9.680947481913293 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9128754927623517, dt = 0.0014852608780672775 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.39 us    (1.9%)
   patch tree reduce : 1403.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 377.67 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (72.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.652594699636308e-05,6.791827824543964e-05,-3.839782818936141e-06)
    sum a = (-2.1713175601387242e-05,0.00031392988609256706,2.5328547992941512e-06)
    sum e = 0.05036556967513327
    sum de = 0.00048630551666819307
Info: cfl dt = 0.001444181250192863 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7821e+05    |      100000 |   5.611e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 9.528870734317282 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.914360753640419, dt = 0.001444181250192863 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.90 us    (1.8%)
   patch tree reduce : 1172.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 356.26 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (70.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.64934599473832e-05,6.83727065662522e-05,-3.83628820564839e-06)
    sum a = (-2.330475634469784e-05,0.0003153706413987442,2.3110984015384226e-06)
    sum e = 0.0503662408237657
    sum de = 0.0004977991754083269
Info: cfl dt = 0.0013657837265728663 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7804e+05    |      100000 |   5.617e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 9.256652566424997 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9158049348906119, dt = 0.0013657837265728663 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.43 us    (2.1%)
   patch tree reduce : 1173.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 338.14 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (70.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.646048142488457e-05,6.88044750120128e-05,-3.833291873276937e-06)
    sum a = (-2.4913236661402708e-05,0.0003167770578758105,2.093925407703432e-06)
    sum e = 0.05036685339123013
    sum de = 0.0005093551664603058
Info: cfl dt = 0.0014420104343596935 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7795e+05    |      100000 |   5.619e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 8.749680538152122 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9171707186171847, dt = 0.0014420104343596935 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.24 us    (1.9%)
   patch tree reduce : 1262.00 ns (0.3%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1313.00 ns (0.3%)
   LB compute        : 360.18 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.76 us    (74.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.642345785954158e-05,6.926223126521094e-05,-3.830420716660672e-06)
    sum a = (-2.6719572241080055e-05,0.0003183014197363512,1.8564591053239254e-06)
    sum e = 0.0503676757746373
    sum de = 0.0005220705780538899
Info: cfl dt = 0.0013809362325811676 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7721e+05    |      100000 |   5.643e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 9.199176026336248 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9186127290515443, dt = 0.0013809362325811676 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.56 us    (2.0%)
   patch tree reduce : 1202.00 ns (0.3%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 360.41 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (70.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.638525745673984e-05,6.97028843014618e-05,-3.8280282794607455e-06)
    sum a = (-2.8551263874163342e-05,0.0003197933378089968,1.620881851248845e-06)
    sum e = 0.05036834735659877
    sum de = 0.0005350750653222468
Info: cfl dt = 0.0013319815348589094 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7875e+05    |      100000 |   5.594e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 8.886519409509177 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9199936652841255, dt = 6.334715874523056e-06 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.92 us    (1.9%)
   patch tree reduce : 1182.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 336.17 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (68.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.638381186791929e-05,6.970594022325003e-05,-3.828180670217614e-06)
    sum a = (-2.8559890866997948e-05,0.00031980023939402253,1.6197825643596352e-06)
    sum e = 0.05036767054477506
    sum de = 0.0005358390000947922
Info: cfl dt = 0.0013340791361964675 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.9193e+05    |      100000 |   5.210e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 0.04377026376099269 (tsim/hr)                           [sph::Model][rank=0]
Info: iteration since start : 325                                                     [SPH][rank=0]
Info: time since start : 1412.6317567570002 (s)                                       [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000046.vtk        [VTK Dump][rank=0]
              - took 15.88 ms, bandwidth = 336.35 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump_0000046.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.81 us    (56.1%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000046.sham  [Shamrock Dump][rank=0]
              - took 11.56 ms, bandwidth = 990.76 MB/s
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1864.21 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.92, dt = 0.0013340791361964675 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.35 us   (2.4%)
   patch tree reduce : 1603.00 ns (0.3%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.2%)
   LB compute        : 456.49 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.64 us    (72.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.634571068605099e-05,7.013257907223805e-05,-3.826019755575168e-06)
    sum a = (-3.0421146545881315e-05,0.0003212681856939431,1.3842678355317795e-06)
    sum e = 0.05036903038010193
    sum de = 0.0005483486608357853
Info: cfl dt = 0.0014089573673245885 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7805e+05    |      100000 |   5.616e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 8.551208778167714 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9213340791361965, dt = 0.0014089573673245885 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.37 us    (1.8%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 378.70 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (73.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.630160705632853e-05,7.058621142762414e-05,-3.824226478852945e-06)
    sum a = (-3.247982628476113e-05,0.0003228455623142976,1.1267477976557676e-06)
    sum e = 0.05036989000555029
    sum de = 0.0005629107255135448
Info: cfl dt = 0.0013872144157682038 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7750e+05    |      100000 |   5.634e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 9.003067028954316 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9227430365035211, dt = 0.0013872144157682038 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (1.8%)
   patch tree reduce : 1163.00 ns (0.3%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 356.44 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 2.96 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (70.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.625510027708914e-05,7.103517867393955e-05,-3.822844855442383e-06)
    sum a = (-3.45945580280816e-05,0.0003244264918659915,8.640317386626397e-07)
    sum e = 0.05037066303854081
    sum de = 0.0005781849729866092
Info: cfl dt = 0.0013664964392409483 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7543e+05    |      100000 |   5.700e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 8.761055990802106 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9241302509192892, dt = 0.0013664964392409483 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.19 us    (1.8%)
   patch tree reduce : 1512.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 373.86 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (71.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.620636014354981e-05,7.147960286400398e-05,-3.821846380900273e-06)
    sum a = (-3.675679376489943e-05,0.00032601497857841075,5.959939791063384e-07)
    sum e = 0.05037144685646838
    sum de = 0.0005941050224039029
Info: cfl dt = 0.0013228822008791844 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7594e+05    |      100000 |   5.684e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 8.655000956676927 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9254967473585302, dt = 0.0013228822008791844 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.79 us    (1.7%)
   patch tree reduce : 1222.00 ns (0.3%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1103.00 ns (0.3%)
   LB compute        : 384.07 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.93 us    (74.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.61562578915934e-05,7.191196760709956e-05,-3.821241087395482e-06)
    sum a = (-3.8918776395717196e-05,0.00032758942112736555,3.274651022107461e-07)
    sum e = 0.050372204560301316
    sum de = 0.0006104625998636379
Info: cfl dt = 0.0014267668244608732 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7892e+05    |      100000 |   5.589e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 8.520875316396733 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9268196295594093, dt = 0.0014267668244608732 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.88 us    (1.7%)
   patch tree reduce : 1283.00 ns (0.3%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 383.11 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (69.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.609929984841414e-05,7.238040272622213e-05,-3.820951487087313e-06)
    sum a = (-4.132019290419909e-05,0.000329341217134192,2.7572168797903105e-08)
    sum e = 0.05037319640152466
    sum de = 0.0006289617539908704
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010277857667064313
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.609758671771651e-05,7.238165242843541e-05,-3.821165425731456e-06)
    sum a = (-4.1320192904198594e-05,0.00032934121713419206,2.7572168797904998e-08)
    sum e = 0.050372454581796525
    sum de = 0.0006301437552767984
Info: cfl dt = 0.0006694915435483045 cfl multiplier : 0.49999999999999983      [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.4641e+05    |      100000 |   6.830e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 7.520336236016644 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9282463963838702, dt = 0.0006694915435483045 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.90 us    (1.9%)
   patch tree reduce : 1111.00 ns (0.3%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 337.66 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (71.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.606992319798352e-05,7.260214358824793e-05,-3.821146966397609e-06)
    sum a = (-4.246949834336658e-05,0.0003301865669178683,-1.1687920093526544e-07)
    sum e = 0.050373043117618005
    sum de = 0.0006391572428039514
Info: cfl dt = 0.0008660283374203312 cfl multiplier : 0.6666666666666665       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7910e+05    |      100000 |   5.583e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 4.316732529085259 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9289158879274185, dt = 0.0008660283374203312 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (1.8%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 671.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 362.60 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (72.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.603275868380417e-05,7.288837748909964e-05,-3.821296541582921e-06)
    sum a = (-4.3977050210536584e-05,0.0003313089128939348,-3.0732542277414746e-07)
    sum e = 0.050373713207461514
    sum de = 0.0006513877719137304
Info: cfl dt = 0.0010276302107885887 cfl multiplier : 0.7777777777777777       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7872e+05    |      100000 |   5.595e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 5.572112854293406 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9297819162648389, dt = 0.00021808373516118973 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.99 us    (1.8%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1093.00 ns (0.3%)
   LB compute        : 366.61 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (70.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.602251521311756e-05,7.296111656602647e-05,-3.82144603017146e-06)
    sum a = (-4.436015077944202e-05,0.00033159713352340386,-3.5592502560987827e-07)
    sum e = 0.050373598185710605
    sum de = 0.0006550492281907979
Info: cfl dt = 0.0011208780017449307 cfl multiplier : 0.8518518518518517       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7889e+05    |      100000 |   5.590e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 1.4044960954942434 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 334                                                     [SPH][rank=0]
Info: time since start : 1419.743480041 (s)                                           [SPH][rank=0]
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1849.40 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.93, dt = 0.0011208780017449307 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.16 us   (2.2%)
   patch tree reduce : 1562.00 ns (0.3%)
   gen split merge   : 691.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.2%)
   LB compute        : 512.95 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.95 us    (76.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.597275112195032e-05,7.333282792655167e-05,-3.821850278094402e-06)
    sum a = (-4.63530796141282e-05,0.0003331227728882791,-6.097365203837411e-07)
    sum e = 0.05037478657278988
    sum de = 0.0006712594017343875
Info: cfl dt = 0.0011760162003685711 cfl multiplier : 0.9012345679012345       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7741e+05    |      100000 |   5.637e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 7.158923411369622 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.931120878001745, dt = 0.0011760162003685711 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (1.6%)
   patch tree reduce : 1203.00 ns (0.3%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 387.97 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (67.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.591712223434832e-05,7.372544073197842e-05,-3.822709583980858e-06)
    sum a = (-4.848596935292828e-05,0.0003348154275460969,-8.832143915381483e-07)
    sum e = 0.05037563675535268
    sum de = 0.0006900405873289702
Info: cfl dt = 0.001255882528640006 cfl multiplier : 0.934156378600823         [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7800e+05    |      100000 |   5.618e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 7.5357406650426935 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9322968942021136, dt = 0.001255882528640006 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.30 us    (1.9%)
   patch tree reduce : 1143.00 ns (0.3%)
   gen split merge   : 681.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 355.17 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (72.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.585497539610869e-05,7.414692487240188e-05,-3.823979604707691e-06)
    sum a = (-5.081538888744433e-05,0.00033675514720779483,-1.1830627269765524e-06)
    sum e = 0.05037659230236202
    sum de = 0.0007113235075364843
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01006284282155281
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.585351265745943e-05,7.414814290242349e-05,-3.824167891850558e-06)
    sum a = (-5.0815388887444864e-05,0.0003367551472077942,-1.1830627269765604e-06)
    sum e = 0.050376006225031564
    sum de = 0.0007126126476077033
Info: cfl dt = 0.0006154181256858071 cfl multiplier : 0.4780521262002743       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.4569e+05    |      100000 |   6.864e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 6.5870627635803976 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9335527767307535, dt = 0.0006154181256858071 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.80 us    (1.8%)
   patch tree reduce : 1293.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 366.80 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (73.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.582223994607314e-05,7.435538812393252e-05,-3.824895970096552e-06)
    sum a = (-5.1977669007714834e-05,0.00033776535107972753,-1.332785057601576e-06)
    sum e = 0.05037658919875114
    sum de = 0.0007234386122602103
Info: cfl dt = 0.0008314650223506365 cfl multiplier : 0.6520347508001829       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7721e+05    |      100000 |   5.643e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 3.926055505282031 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9341681948564393, dt = 0.0008314650223506365 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.16 us    (2.0%)
   patch tree reduce : 1302.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 340.53 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (67.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.577866468822165e-05,7.463653904800081e-05,-3.826050205172322e-06)
    sum a = (-5.357498350116155e-05,0.0003392052112381631,-1.5377317008442823e-06)
    sum e = 0.050377314784629326
    sum de = 0.0007388059125521008
Info: cfl dt = 0.0009495269316470119 cfl multiplier : 0.768023167200122        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7732e+05    |      100000 |   5.639e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 5.307756534137592 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.93499965987879, dt = 0.0009495269316470119 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.79 us    (1.7%)
   patch tree reduce : 1342.00 ns (0.3%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 375.58 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (72.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.572712974296044e-05,7.495922212811095e-05,-3.827595525818566e-06)
    sum a = (-5.5443745826660865e-05,0.00034097084245100664,-1.7751426623521797e-06)
    sum e = 0.050378105697033264
    sum de = 0.0007574057798039655
Info: cfl dt = 0.0010117258456080263 cfl multiplier : 0.8453487781334147       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7901e+05    |      100000 |   5.586e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 6.118969006146231 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9359491868104369, dt = 0.0010117258456080263 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (1.7%)
   patch tree reduce : 1373.00 ns (0.3%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.3%)
   LB compute        : 380.84 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (72.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.567014865225462e-05,7.530502939920784e-05,-3.829504197580616e-06)
    sum a = (-5.7499649976044686e-05,0.00034301896591059776,-2.0313932167553117e-06)
    sum e = 0.050378931110668754
    sum de = 0.0007785747992243557
Info: cfl dt = 0.0010976333192401835 cfl multiplier : 0.8968991854222764       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7892e+05    |      100000 |   5.589e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 6.516818636427259 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.936960912656045, dt = 0.0010976333192401835 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.49 us    (2.0%)
   patch tree reduce : 1193.00 ns (0.3%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 345.14 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (71.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.560599511491012e-05,7.568257451504208e-05,-3.831863550114227e-06)
    sum a = (-5.982733669053956e-05,0.0003454714003390058,-2.312149976472863e-06)
    sum e = 0.050379871118093285
    sum de = 0.0008031779639818049
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010246156091609705
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.560471764166829e-05,7.568392045191225e-05,-3.832017634101257e-06)
    sum a = (-5.982733669053894e-05,0.00034547140033900443,-2.312149976472859e-06)
    sum e = 0.05037941336924087
    sum de = 0.0008046764396711958
Info: cfl dt = 0.000573147021438305 cfl multiplier : 0.46563306180742553       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.4700e+05    |      100000 |   6.802e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 5.808871691480782 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9380585459752852, dt = 0.000573147021438305 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.17 us    (1.9%)
   patch tree reduce : 1203.00 ns (0.3%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 366.56 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (71.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.557042778184408e-05,7.5881926356009e-05,-3.8333428359734025e-06)
    sum a = (-6.109095154492258e-05,0.0003468613675002616,-2.459484671242473e-06)
    sum e = 0.050380003672603306
    sum de = 0.0008181460488518531
Info: cfl dt = 0.0007604526058705291 cfl multiplier : 0.6437553745382837       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7636e+05    |      100000 |   5.670e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 3.638806188449605 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9386316929967234, dt = 0.0007604526058705291 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.91 us    (1.9%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 338.06 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (73.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.552360888999482e-05,7.614609631456773e-05,-3.835255379721478e-06)
    sum a = (-6.283299743880866e-05,0.0003488378244028507,-2.655065009509968e-06)
    sum e = 0.05038072960183432
    sum de = 0.0008371561972748408
Info: cfl dt = 0.0009120828164824421 cfl multiplier : 0.7625035830255223       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7826e+05    |      100000 |   5.610e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 4.8802056447206645 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.939392145602594, dt = 0.0006078543974060713 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.88 us    (1.9%)
   patch tree reduce : 1423.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.4%)
   LB compute        : 342.80 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (70.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.548475320453602e-05,7.635889042101383e-05,-3.836943637451848e-06)
    sum a = (-6.42876822958029e-05,0.0003505370254488801,-2.8110715082752133e-06)
    sum e = 0.05038116451591615
    sum de = 0.0008538162046252664
Info: cfl dt = 0.000999812855715903 cfl multiplier : 0.8416690553503482        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7842e+05    |      100000 |   5.605e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 3.904401020035464 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 345                                                     [SPH][rank=0]
Info: time since start : 1428.048478244 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000047.vtk        [VTK Dump][rank=0]
              - took 8.26 ms, bandwidth = 646.50 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump_0000047.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 38.45 us   (87.2%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000047.sham  [Shamrock Dump][rank=0]
              - took 11.10 ms, bandwidth = 1.01 GB/s
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1882.69 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.9400000000000001, dt = 0.000999812855715903 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.02 us   (2.2%)
   patch tree reduce : 1583.00 ns (0.3%)
   gen split merge   : 671.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1143.00 ns (0.2%)
   LB compute        : 466.36 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.40 us    (69.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.542003543502471e-05,7.670987827887972e-05,-3.839801597502294e-06)
    sum a = (-6.683289064849307e-05,0.00035359170933967456,-3.0654496707253676e-06)
    sum e = 0.05038227696380783
    sum de = 0.000881451654884869
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010412809767349481
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.541876306899904e-05,7.671140533498792e-05,-3.8399287627808155e-06)
    sum a = (-6.6832890648496e-05,0.0003535917093396741,-3.0654496707253726e-06)
    sum e = 0.05038188996839793
    sum de = 0.0008831362590404746
Info: cfl dt = 0.000536702510910238 cfl multiplier : 0.4472230184501161        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.4637e+05    |      100000 |   6.832e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 5.268187955438956 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.940999812855716, dt = 0.000536702510910238 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.02 us    (1.9%)
   patch tree reduce : 1383.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 353.11 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (69.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.53828936887748e-05,7.690117889322547e-05,-3.841573997316174e-06)
    sum a = (-6.828943176175113e-05,0.00035537881257997184,-3.2002554989542417e-06)
    sum e = 0.05038248026691583
    sum de = 0.0008991473012582557
Info: cfl dt = 0.0007350013925953699 cfl multiplier : 0.6314820123000774       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7852e+05    |      100000 |   5.602e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 3.4492742145548076 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9415365153666262, dt = 0.0007350013925953699 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (1.8%)
   patch tree reduce : 1272.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 337.93 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.33 us    (74.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.533230999669753e-05,7.716286238677034e-05,-3.8439623648778194e-06)
    sum a = (-7.041264748179736e-05,0.00035801200243420437,-3.3815475159300907e-06)
    sum e = 0.05038324924469909
    sum de = 0.0009225067063033462
Info: cfl dt = 0.000843978125055909 cfl multiplier : 0.754321341533385         [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7731e+05    |      100000 |   5.640e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 4.691731639301779 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9422715167592216, dt = 0.000843978125055909 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.82 us    (1.8%)
   patch tree reduce : 1192.00 ns (0.3%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1163.00 ns (0.3%)
   LB compute        : 369.29 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.29 us    (75.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.527210297924013e-05,7.746598438443856e-05,-3.846882941952575e-06)
    sum a = (-7.307069055396967e-05,0.00036132608978928183,-3.5829880701646424e-06)
    sum e = 0.05038410974713996
    sum de = 0.0009513954015908151
Info: cfl dt = 0.000896972417935158 cfl multiplier : 0.8362142276889234        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7873e+05    |      100000 |   5.595e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 5.4304078004004595 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9431154948842775, dt = 0.000896972417935158 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.12 us    (1.8%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 1011.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 369.54 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (72.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.520543892015239e-05,7.779148242947881e-05,-3.8501817891359275e-06)
    sum a = (-7.621526259522168e-05,0.0003652250754042037,-3.785689999224963e-06)
    sum e = 0.05038501772367719
    sum de = 0.0009846498991614386
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01017842189126203
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.5204028622957e-05,7.779323107075588e-05,-3.850272698155644e-06)
    sum a = (-7.621526259522322e-05,0.00036522507540420637,-3.785689999224964e-06)
    sum e = 0.05038469829062891
    sum de = 0.0009864846648126148
Info: cfl dt = 0.00045892422386841175 cfl multiplier : 0.4454047425629744      [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.4703e+05    |      100000 |   6.801e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 4.747707961912408 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9440124673022127, dt = 0.00045892422386841175 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.04 us    (2.0%)
   patch tree reduce : 1273.00 ns (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.4%)
   LB compute        : 340.07 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (71.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.516905159272494e-05,7.79608417050222e-05,-3.85201004300034e-06)
    sum a = (-7.79754232213937e-05,0.0003673836278449901,-3.883419037203424e-06)
    sum e = 0.05038523911313973
    sum de = 0.001004230262436869
Info: cfl dt = 0.0006365721912276053 cfl multiplier : 0.6302698283753162       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7847e+05    |      100000 |   5.603e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 2.948548749981785 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9444713915260811, dt = 0.0006365721912276053 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.28 us    (2.0%)
   patch tree reduce : 1352.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 343.77 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (70.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.511901071652101e-05,7.819520321202202e-05,-3.854504544677766e-06)
    sum a = (-8.06222527182404e-05,0.0003705737121122077,-4.010125485878009e-06)
    sum e = 0.050385965556977864
    sum de = 0.0010301968584532414
Info: cfl dt = 0.0008079554214554686 cfl multiplier : 0.7535132189168774       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7683e+05    |      100000 |   5.655e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 4.052243269277337 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9451079637173087, dt = 0.0008079554214554686 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.01 us    (1.9%)
   patch tree reduce : 1172.00 ns (0.3%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 356.56 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (71.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.505302908132605e-05,7.849562561123621e-05,-3.857784876205641e-06)
    sum a = (-8.438638072135084e-05,0.0003749690023799936,-4.152204191371796e-06)
    sum e = 0.05038691408044988
    sum de = 0.001065060605102738
Info: cfl dt = 0.0008565986705551314 cfl multiplier : 0.8356754792779183       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7878e+05    |      100000 |   5.593e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 5.200210891985488 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9459159191387642, dt = 0.0008565986705551314 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.50 us    (2.1%)
   patch tree reduce : 1353.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 342.47 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (71.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.497922319597384e-05,7.881859915947673e-05,-3.861399045426032e-06)
    sum a = (-8.897523059929695e-05,0.0003800753982338061,-4.272975104596235e-06)
    sum e = 0.05038788044525875
    sum de = 0.0011050447714265224
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011874800989779036
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.497725779461687e-05,7.882078622542378e-05,-3.861450771527872e-06)
    sum a = (-8.897523059929699e-05,0.0003800753982338072,-4.272975104596262e-06)
    sum e = 0.05038758017514832
    sum de = 0.001107397099692435
Info: cfl dt = 0.0004877951954253647 cfl multiplier : 0.44522515975930615      [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.4692e+05    |      100000 |   6.807e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 4.530501468945823 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9467725178093193, dt = 0.0004877951954253647 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.16 us    (2.0%)
   patch tree reduce : 1383.00 ns (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 339.44 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (69.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.493385610462759e-05,7.900618517858519e-05,-3.8635351082540695e-06)
    sum a = (-9.191272980877831e-05,0.00038319715490469015,-4.32451398476644e-06)
    sum e = 0.05038822422326847
    sum de = 0.0011308974946817867
Info: cfl dt = 0.000675589782612245 cfl multiplier : 0.6301501065062042        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7916e+05    |      100000 |   5.582e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 3.146173098246785 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9472603130047447, dt = 0.000675589782612245 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (1.8%)
   patch tree reduce : 1163.00 ns (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 342.41 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (71.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.487104435447313e-05,7.926583065011408e-05,-3.8664692759260075e-06)
    sum a = (-9.6445215252337e-05,0.00038777842220142695,-4.369870151533468e-06)
    sum e = 0.05038909205413581
    sum de = 0.0011651750049172821
Info: cfl dt = 0.0007855873999327916 cfl multiplier : 0.7534334043374695       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7914e+05    |      100000 |   5.582e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 4.3568643622887135 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.947935902787357, dt = 0.0007855873999327916 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (1.7%)
   patch tree reduce : 1353.00 ns (0.4%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 357.67 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (74.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.479374715815957e-05,7.957201202125125e-05,-3.869917511937823e-06)
    sum a = (-0.00010250495523630245,0.00039347633829992065,-4.3760759040820175e-06)
    sum e = 0.05039009493419809
    sum de = 0.00120742594882517
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012465178503131173
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.479136693046176e-05,7.957425012679622e-05,-3.869919949518329e-06)
    sum a = (-0.0001025049552363001,0.0003934763382999206,-4.376075904082043e-06)
    sum e = 0.05038983470578266
    sum de = 0.001210063203344674
Info: cfl dt = 0.00042245626252543806 cfl multiplier : 0.4178111347791565      [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.4419e+05    |      100000 |   6.935e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 4.077912517911734 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9487214901872898, dt = 0.00042245626252543806 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (1.7%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 691.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1413.00 ns (0.4%)
   LB compute        : 365.97 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (70.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.474806307019148e-05,7.974047667006894e-05,-3.871768650189293e-06)
    sum a = (-0.0001061641296694208,0.00039670059715277107,-4.354693651197898e-06)
    sum e = 0.05039042684788814
    sum de = 0.0012334983569559212
Info: cfl dt = 0.0006419913184944753 cfl multiplier : 0.6118740898527709       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7892e+05    |      100000 |   5.589e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 2.721153945070043 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9491439464498153, dt = 0.0006419913184944753 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.96 us    (1.7%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 1113.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 384.29 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (72.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.467913370002893e-05,7.999583606364935e-05,-3.8745598091747365e-06)
    sum a = (-0.00011234895175643532,0.00040179350127844243,-4.281964573737969e-06)
    sum e = 0.05039133244939603
    sum de = 0.0012703573086110965
Info: cfl dt = 0.0007599610262484852 cfl multiplier : 0.7412493932351806       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.5541e+05    |      100000 |   6.435e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 3.5917391092961006 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9497859377683098, dt = 0.00021406223169029293 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.36 us    (1.6%)
   patch tree reduce : 1262.00 ns (0.3%)
   gen split merge   : 671.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.2%)
   LB compute        : 428.91 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.21 us    (76.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.465309873164225e-05,8.008347967733473e-05,-3.875453070349254e-06)
    sum a = (-0.00011459181827825943,0.0004035401909162873,-4.245707152844347e-06)
    sum e = 0.050391448583052445
    sum de = 0.0012853103692482535
Info: cfl dt = 0.0008434716426074243 cfl multiplier : 0.8274995954901204       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7898e+05    |      100000 |   5.587e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 1.3792583635572218 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 360                                                     [SPH][rank=0]
Info: time since start : 1438.9710155090002 (s)                                       [SPH][rank=0]
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1854.48 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.9500000000000001, dt = 0.0008434716426074243 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.51 us   (2.4%)
   patch tree reduce : 1443.00 ns (0.3%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.2%)
   LB compute        : 500.04 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.31 us    (78.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.455620372594664e-05,8.042404133516535e-05,-3.879030323263276e-06)
    sum a = (-0.00012444604816225747,0.0004105990803772464,-4.032481760716601e-06)
    sum e = 0.0503928466668084
    sum de = 0.0013342440593233603
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01898664751144906
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.455204784421981e-05,8.042701832170946e-05,-3.878940398477396e-06)
    sum a = (-0.0001244460481622548,0.0004105990803772461,-4.032481760716594e-06)
    sum e = 0.05039253360973174
    sum de = 0.001338636666782129
Info: cfl dt = 0.00045423249273189733 cfl multiplier : 0.4424998651633734      [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.4631e+05    |      100000 |   6.835e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 4.442656628595837 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9508434716426075, dt = 0.00045423249273189733 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.14 us    (2.0%)
   patch tree reduce : 1242.00 ns (0.3%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 344.19 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (70.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.44955204055468e-05,8.061352576550486e-05,-3.880772082719467e-06)
    sum a = (-0.00013047949369645142,0.0004144933099303407,-3.865483222250471e-06)
    sum e = 0.05039324040322119
    sum de = 0.0013671731421863926
Info: cfl dt = 0.000633718258051725 cfl multiplier : 0.628333243442249         [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7652e+05    |      100000 |   5.665e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 2.886568500340141 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9512977041353394, dt = 0.000633718258051725 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.80 us    (1.8%)
   patch tree reduce : 1082.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 366.31 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (72.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.441146287458544e-05,8.08770821866401e-05,-3.883183781932393e-06)
    sum a = (-0.00013987208282370826,0.0004199614005587239,-3.559324388519424e-06)
    sum e = 0.05039421099009142
    sum de = 0.0014087383124549108
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012645539858011938
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.440848674697993e-05,8.087881480107567e-05,-3.883086772711001e-06)
    sum a = (-0.0001398720828237082,0.00041996140055872193,-3.5593243885194276e-06)
    sum e = 0.05039402796315985
    sum de = 0.0014118144874197018
Info: cfl dt = 0.00037479936122032436 cfl multiplier : 0.37611108114741637     [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.4651e+05    |      100000 |   6.826e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 3.342396600534615 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9519314223933911, dt = 0.00037479936122032436 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.94 us    (1.9%)
   patch tree reduce : 1192.00 ns (0.3%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 343.50 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (70.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.435606277968486e-05,8.10362160657414e-05,-3.884420805218185e-06)
    sum a = (-0.00014600616048372194,0.00042318490087053513,-3.333296198710937e-06)
    sum e = 0.05039462689460492
    sum de = 0.0014372809066063338
Info: cfl dt = 0.0005887379181505522 cfl multiplier : 0.5840740540982776       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7893e+05    |      100000 |   5.589e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 2.4142029270187844 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9523062217546114, dt = 0.0005887379181505522 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.93 us    (1.9%)
   patch tree reduce : 1343.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 353.90 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (68.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.426895389252728e-05,8.128596514620297e-05,-3.886340885472217e-06)
    sum a = (-0.00015660675479583353,0.0004281546326000878,-2.9004161705157366e-06)
    sum e = 0.050395583864459054
    sum de = 0.0014785254068586968
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01239796984107717
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.426583340661134e-05,8.128742808096099e-05,-3.886213459028913e-06)
    sum a = (-0.00015660675479583426,0.0004281546326000914,-2.9004161705157166e-06)
    sum e = 0.050395420504813666
    sum de = 0.0014817028376911839
Info: cfl dt = 0.0003575326223996837 cfl multiplier : 0.3613580180327592       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.4551e+05    |      100000 |   6.872e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 3.084030937174135 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9528949596727619, dt = 0.0003575326223996837 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.41 us    (2.0%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.3%)
   LB compute        : 349.94 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (72.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.420984138288324e-05,8.144050732954684e-05,-3.887250452428401e-06)
    sum a = (-0.00016365839166167798,0.0004310818337154548,-2.586402482722535e-06)
    sum e = 0.05039601620800696
    sum de = 0.0015078215141680435
Info: cfl dt = 0.0005553360169811114 cfl multiplier : 0.5742386786885061       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7746e+05    |      100000 |   5.635e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 2.284164682984148 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9532524922951616, dt = 0.0005553360169811114 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.12 us    (1.9%)
   patch tree reduce : 1122.00 ns (0.3%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 350.98 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (70.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.411769538840305e-05,8.168042588302107e-05,-3.888630639812834e-06)
    sum a = (-0.00017561860497417468,0.00043539974449834513,-2.011520538059419e-06)
    sum e = 0.050396955020644674
    sum de = 0.0015496938198072529
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012359414519820259
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.411437441979911e-05,8.168162482870994e-05,-3.888471013488149e-06)
    sum a = (-0.00017561860497417703,0.00043539974449834817,-2.0115205380594087e-06)
    sum e = 0.05039680421094529
    sum de = 0.0015530077225696746
Info: cfl dt = 0.00033550211905210005 cfl multiplier : 0.3580795595628354      [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.4655e+05    |      100000 |   6.824e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 2.9297935280370653 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9538078283121427, dt = 0.00033550211905210005 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (1.7%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 376.33 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (73.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.405545400567838e-05,8.182770236562278e-05,-3.8891458828911845e-06)
    sum a = (-0.00018347164335916056,0.0004378327095233646,-1.608137766227495e-06)
    sum e = 0.05039738572386197
    sum de = 0.0015793838176341689
Info: cfl dt = 0.0005262630117470104 cfl multiplier : 0.5720530397085569       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7853e+05    |      100000 |   5.601e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 2.156258797337167 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9541433304311948, dt = 0.0005262630117470104 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.59 us    (2.2%)
   patch tree reduce : 1212.00 ns (0.3%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 332.23 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.01 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (70.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.395758231056564e-05,8.205852565844152e-05,-3.889924518427974e-06)
    sum a = (-0.00019681840594102905,0.00044127624780393514,-8.797756337353213e-07)
    sum e = 0.050398313294191165
    sum de = 0.0016220496879450676
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01241418973507762
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.395407035682303e-05,8.205943176185277e-05,-3.889732863403236e-06)
    sum a = (-0.0001968184059410307,0.00044127624780393367,-8.797756337353522e-07)
    sum e = 0.05039817236168373
    sum de = 0.0016255309773565423
Info: cfl dt = 0.00035736059108756267 cfl multiplier : 0.3573510132361856      [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.4719e+05    |      100000 |   6.794e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 2.788665826211345 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9546695934429418, dt = 0.00035736059108756267 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (1.8%)
   patch tree reduce : 1112.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 348.14 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (70.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.388373521493643e-05,8.221712650260057e-05,-3.890047260543728e-06)
    sum a = (-0.00020663267449810344,0.00044329741300556296,-3.128697697546305e-07)
    sum e = 0.050398824988724916
    sum de = 0.0016556399787287172
Info: cfl dt = 0.0005650724577263406 cfl multiplier : 0.5715673421574571       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7370e+05    |      100000 |   5.757e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 2.23461317197808 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.9550269540340294, dt = 0.0005650724577263406 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.98 us    (1.9%)
   patch tree reduce : 1303.00 ns (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.3%)
   LB compute        : 343.78 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (71.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.376521916530896e-05,8.246798280367038e-05,-3.890122759726146e-06)
    sum a = (-0.00022347860636832037,0.00044580560905605886,7.172311918836725e-07)
    sum e = 0.05039987874798205
    sum de = 0.001704879645838744
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.016155232898799006
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.37604595792475e-05,8.246869145992e-05,-3.889831718885095e-06)
    sum a = (-0.00022347860636832184,0.0004458056090560548,7.172311918836641e-07)
    sum e = 0.05039970864025751
    sum de = 0.0017096895459041432
Info: cfl dt = 0.0003478608665806996 cfl multiplier : 0.35718911405248566      [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.4712e+05    |      100000 |   6.797e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 2.992737091808709 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9555920264917557, dt = 0.0003478608665806996 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (1.8%)
   patch tree reduce : 1293.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1153.00 ns (0.3%)
   LB compute        : 351.11 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (68.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.36827201175774e-05,8.262376978541342e-05,-3.889582222221156e-06)
    sum a = (-0.000234690066696749,0.0004468531506211535,1.4395938649179626e-06)
    sum e = 0.050400374952958925
    sum de = 0.0017416806866490063
Info: cfl dt = 0.0005403316705107334 cfl multiplier : 0.5714594093683237       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7951e+05    |      100000 |   5.571e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 2.2479895328351684 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9559398873583363, dt = 0.0005403316705107334 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.06 us    (1.8%)
   patch tree reduce : 1082.00 ns (0.3%)
   gen split merge   : 702.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 366.32 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (71.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.355395962763165e-05,8.286540089412123e-05,-3.888678723210544e-06)
    sum a = (-0.00025344967401438737,0.0004475313471360482,2.71024989050795e-06)
    sum e = 0.0504014284786557
    sum de = 0.001793380596764949
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.016701160098270256
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.354889142265177e-05,8.286558411964534e-05,-3.88833543536408e-06)
    sum a = (-0.0002534496740143856,0.00044753134713604884,2.7102498905079587e-06)
    sum e = 0.05040126445981637
    sum de = 0.0017985743809463004
Info: cfl dt = 0.00032404250877957476 cfl multiplier : 0.35715313645610786     [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.4652e+05    |      100000 |   6.825e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 2.8500277951656923 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9564802190288471, dt = 0.00032404250877957476 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.50 us    (1.2%)
   patch tree reduce : 1402.00 ns (0.2%)
   gen split merge   : 861.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.2%)
   LB compute        : 588.22 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (73.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.346676295443798e-05,8.301060330013043e-05,-3.887457199190129e-06)
    sum a = (-0.00026550578649170995,0.000447300435202914,3.5653863346601486e-06)
    sum e = 0.05040191306964525
    sum de = 0.001831429486560621
Info: cfl dt = 0.0005064565296551565 cfl multiplier : 0.5714354243040719       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7884e+05    |      100000 |   5.591e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 2.0863163639677915 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9568042615376267, dt = 0.0005064565296551565 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (1.8%)
   patch tree reduce : 1242.00 ns (0.3%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 350.02 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (71.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.333034246873775e-05,8.323710411361576e-05,-3.885512935720851e-06)
    sum a = (-0.00028560617564401283,0.0004457718457294275,5.055930547516687e-06)
    sum e = 0.050402946563404
    sum de = 0.0018849332092402697
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.016569455648852347
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.332525248207426e-05,8.323671703155626e-05,-3.885135487796177e-06)
    sum a = (-0.00028560617564401365,0.0004457718457294248,5.05593054751669e-06)
    sum e = 0.050402794091408624
    sum de = 0.0018902925278924153
Info: cfl dt = 0.00034469825434305497 cfl multiplier : 0.35714514143469067     [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.4708e+05    |      100000 |   6.799e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 2.6817147439175812 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9573107180672819, dt = 0.00034469825434305497 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.21 us    (2.0%)
   patch tree reduce : 1623.00 ns (0.5%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 339.52 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (69.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.322680453190273e-05,8.339037380861373e-05,-3.883392717362372e-06)
    sum a = (-0.0003001748573705675,0.00044380791334748044,6.184986011457415e-06)
    sum e = 0.050403524934622725
    sum de = 0.0019287959439067699
Info: cfl dt = 0.0005396863799462958 cfl multiplier : 0.5714300942897937       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7925e+05    |      100000 |   5.579e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 2.2242843085578157 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9576554163216249, dt = 0.0005396863799462958 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.19 us    (1.8%)
   patch tree reduce : 1072.00 ns (0.3%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 373.76 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (71.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.306229335019861e-05,8.362955241272661e-05,-3.879860172928083e-06)
    sum a = (-0.00032445405809778907,0.000438930427226363,8.156728034345134e-06)
    sum e = 0.05040469561394529
    sum de = 0.001992145264728885
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.021522399554016955
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.305574177322089e-05,8.362823625631434e-05,-3.879328111770834e-06)
    sum a = (-0.0003244540580977897,0.0004389304272263626,8.156728034345134e-06)
    sum e = 0.050404511138883536
    sum de = 0.0019995033182244604
Info: cfl dt = 0.00032821198472730655 cfl multiplier : 0.3571433647632645      [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.4713e+05    |      100000 |   6.797e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 2.8584801612232575 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9581951027015712, dt = 0.00032821198472730655 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (1.7%)
   patch tree reduce : 1453.00 ns (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 363.75 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (72.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.294925206285851e-05,8.377229848298976e-05,-3.876650975873793e-06)
    sum a = (-0.00034008975250596316,0.00043475819047641425,9.484912119780463e-06)
    sum e = 0.05040524457373171
    sum de = 0.002041287658597733
Info: cfl dt = 0.0005170099631345231 cfl multiplier : 0.5714289098421763       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7612e+05    |      100000 |   5.678e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 2.080975895522931 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9585233146862985, dt = 0.0005170099631345231 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.38 us    (1.8%)
   patch tree reduce : 1153.00 ns (0.3%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 388.18 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.66 us    (71.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.277085636130391e-05,8.399638810997069e-05,-3.8715292188410275e-06)
    sum a = (-0.00036603931108964734,0.00042599544305577,1.1792348621128154e-05)
    sum e = 0.05040643012007726
    sum de = 0.002111165413722213
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.022772499044637403
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.276414827114169e-05,8.399412289610823e-05,-3.8709327350107865e-06)
    sum a = (-0.00036603931108964853,0.0004259954430557657,1.1792348621128146e-05)
    sum e = 0.05040624833594688
    sum de = 0.0021194405677206697
Info: cfl dt = 0.0003653687522585335 cfl multiplier : 0.3571429699473921       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.4642e+05    |      100000 |   6.830e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 2.725251271992278 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.959040324649433, dt = 0.0003653687522585335 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.70 us    (2.0%)
   patch tree reduce : 1172.00 ns (0.3%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 363.01 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (70.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.263040894477147e-05,8.414976831960676e-05,-3.866624179308878e-06)
    sum a = (-0.00038531870302214083,0.00041800485543970494,1.3590449304881954e-05)
    sum e = 0.05040712663593865
    sum de = 0.0021735236617971493
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012302205056326114
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.262688690109015e-05,8.414830856409063e-05,-3.866295694407265e-06)
    sum a = (-0.0003853187030221399,0.0004180048554397065,1.3590449304881949e-05)
    sum e = 0.050407031909254496
    sum de = 0.0021780261362631696
Info: cfl dt = 0.00028911486651802295 cfl multiplier : 0.2857143233157973      [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.4593e+05    |      100000 |   6.853e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 1.91942860783194 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.9594056934016916, dt = 0.00028911486651802295 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.23 us    (1.8%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1624.00 ns (0.4%)
   LB compute        : 379.02 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (72.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.25154855356925e-05,8.426915998207806e-05,-3.862366493470555e-06)
    sum a = (-0.00040110486147999845,0.00041049438948646876,1.511759273942558e-05)
    sum e = 0.05040772948734076
    sum de = 0.0022250995261330845
Info: cfl dt = 0.0005260105975437256 cfl multiplier : 0.5238095488771982       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7830e+05    |      100000 |   5.609e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 1.8557620405518938 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9596948082682096, dt = 0.000305191731790333 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.24 us    (2.2%)
   patch tree reduce : 1082.00 ns (0.3%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 347.22 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (72.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.239078964183859e-05,8.439335378201419e-05,-3.857531969226805e-06)
    sum a = (-0.00041825273472930613,0.0004013123155884079,1.6834601009935736e-05)
    sum e = 0.05040842707005487
    sum de = 0.0022815205447872513
Info: cfl dt = 0.00068205131234651 cfl multiplier : 0.6825396992514655         [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7721e+05    |      100000 |   5.643e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 1.9469647863102162 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 382                                                     [SPH][rank=0]
Info: time since start : 1454.5559412690002 (s)                                       [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000048.vtk        [VTK Dump][rank=0]
              - took 8.32 ms, bandwidth = 641.76 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump_0000048.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.01 us    (55.1%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000048.sham  [Shamrock Dump][rank=0]
              - took 11.28 ms, bandwidth = 1015.24 MB/s
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1852.64 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.96, dt = 0.00068205131234651 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.54 us   (2.2%)
   patch tree reduce : 1573.00 ns (0.3%)
   gen split merge   : 711.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1113.00 ns (0.2%)
   LB compute        : 502.31 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (81.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.210290312065383e-05,8.466566822700353e-05,-3.845787899151342e-06)
    sum a = (-0.0004581745358744997,0.00037541780345553844,2.1087630203070996e-05)
    sum e = 0.05041032351056898
    sum de = 0.0024066050000099578
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.0528335456209726
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.208928876223033e-05,8.465683753401643e-05,-3.844337507080032e-06)
    sum a = (-0.00045817453587450145,0.00037541780345553427,2.1087630203071e-05)
    sum e = 0.05040995848223223
    sum de = 0.002431098612955845
Info: cfl dt = 0.0003796002195476876 cfl multiplier : 0.39417989975048845      [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.4503e+05    |      100000 |   6.895e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 3.5609944922678145 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9606820513123465, dt = 0.0003796002195476876 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (1.7%)
   patch tree reduce : 1202.00 ns (0.3%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 353.81 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.98 us    (76.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.191536560781004e-05,8.47993462146257e-05,-3.836332638025214e-06)
    sum a = (-0.0004812479302230059,0.0003574923370882075,2.371676893660813e-05)
    sum e = 0.05041101676228357
    sum de = 0.0025217179751466957
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.017948562676055557
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.191098627503536e-05,8.479594395913932e-05,-3.835833627204966e-06)
    sum a = (-0.00048124793022300444,0.0003574923370882101,2.3716768936608134e-05)
    sum e = 0.050410895699947146
    sum de = 0.002530277397664007
Info: cfl dt = 0.00028109191589387184 cfl multiplier : 0.29805996658349615     [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.4649e+05    |      100000 |   6.826e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 2.0018558910981112 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9610616515318942, dt = 0.00028109191589387184 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.01 us    (1.8%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.3%)
   LB compute        : 343.11 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.57 us    (71.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.177571137231446e-05,8.489643216509311e-05,-3.8291670351857675e-06)
    sum a = (-0.000498669866447888,0.0003423685189651421,2.5794132330707458e-05)
    sum e = 0.050411686759602545
    sum de = 0.002608550493586649
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010390966875061977
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.177326278959528e-05,8.489430657358742e-05,-3.828875070157538e-06)
    sum a = (-0.0004986698664478916,0.0003423685189651366,2.579413233070744e-05)
    sum e = 0.05041161739862258
    sum de = 0.0026137245878917175
Info: cfl dt = 0.0002476944997021419 cfl multiplier : 0.2660199888611654       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.4594e+05    |      100000 |   6.852e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 1.4768516550915698 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.961342743447788, dt = 0.0002476944997021419 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 100000 min = 100000                        [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 100000 min = 100000                   [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 100000
    max = 100000
    avg = 100000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.15 us    (2.0%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 1433.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 344.13 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (70.8%)
central potential accretion : +=  1e-07
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.167846490929699e-05,8.302636113603837e-05,-3.7351994023961797e-06)
    sum a = (-0.0001243388735505576,0.00021188773023992594,3.1628539016615973e-06)
    sum e = 0.05038451075718182
    sum de = 0.00034081307019843965
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012980255597158324
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.167890414406387e-05,8.301656214466573e-05,-3.7354568765259464e-06)
    sum a = (-0.000124338873550557,0.0002118877302399271,3.162853901661602e-06)
    sum e = 0.050384400846596976
    sum de = 0.00034595277390814716
Info: cfl dt = 0.0003570895481587747 cfl multiplier : 0.2553399962870551       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.4583e+05    |       99999 |   6.857e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 1.3003667841815865 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9615904379474902, dt = 0.0003570895481587747 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.95 us    (1.9%)
   patch tree reduce : 1843.00 ns (0.5%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 343.89 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (71.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.163450403189154e-05,8.309222503852252e-05,-3.7343274544553097e-06)
    sum a = (-0.00012281038804767713,0.0002111714818477771,3.1781725974306908e-06)
    sum e = 0.050384575063782876
    sum de = 0.0003490056335989258
Info: cfl dt = 0.0006917751430158971 cfl multiplier : 0.5035599975247034       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7878e+05    |       99999 |   5.593e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 2.2983310373157164 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.961947527495649, dt = 0.0006917751430158971 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.68 us    (2.1%)
   patch tree reduce : 1312.00 ns (0.4%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.4%)
   LB compute        : 347.77 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.05 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (71.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.154981976123299e-05,8.323818033817073e-05,-3.732126138579115e-06)
    sum a = (-0.00011978794663062374,0.00020989208042502405,3.209527236864921e-06)
    sum e = 0.05038495701673748
    sum de = 0.0003553587284168369
Info: cfl dt = 0.0008898005937979175 cfl multiplier : 0.6690399983498022       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7847e+05    |       99999 |   5.603e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 4.444705554977946 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9626393026386649, dt = 0.0008898005937979175 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.82 us    (1.8%)
   patch tree reduce : 1332.00 ns (0.3%)
   gen split merge   : 691.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1051.00 ns (0.3%)
   LB compute        : 367.77 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (71.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.144427780011528e-05,8.342449990691547e-05,-3.729259454157857e-06)
    sum a = (-0.0001157833953885015,0.00020845936167437616,3.253316162767985e-06)
    sum e = 0.05038540125725036
    sum de = 0.0003645186426659831
Info: cfl dt = 0.0009986699454839127 cfl multiplier : 0.7793599988998681       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7771e+05    |       99999 |   5.627e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 5.692588750620061 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9635291032324629, dt = 0.0009986699454839127 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (1.7%)
   patch tree reduce : 1092.00 ns (0.3%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 361.76 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (73.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.133043002898853e-05,8.363204458927131e-05,-3.725990983376789e-06)
    sum a = (-0.00011113404401746404,0.00020714276258058966,3.3075068549925695e-06)
    sum e = 0.050385853353044165
    sum de = 0.0003762487068485045
Info: cfl dt = 0.0010539357891013374 cfl multiplier : 0.8529066659332454       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7858e+05    |       99999 |   5.600e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 6.420507764064577 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9645277731779468, dt = 0.0010539357891013374 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.77 us    (1.9%)
   patch tree reduce : 1623.00 ns (0.5%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 336.11 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (70.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.121562346635853e-05,8.384970233623961e-05,-3.722478024221805e-06)
    sum a = (-0.00010604922809739994,0.00020609644923401334,3.3710947399502103e-06)
    sum e = 0.050386303799145465
    sum de = 0.00039047892146072845
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010492858819214107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.121830300109033e-05,8.384915096270015e-05,-3.7224445154479567e-06)
    sum a = (-0.00010604922809739919,0.0002060964492340116,3.371094739950198e-06)
    sum e = 0.05038586392020148
    sum de = 0.0003911436833996078
Info: cfl dt = 0.0005405309541803752 cfl multiplier : 0.45096888864441514      [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.4636e+05    |       99999 |   6.832e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 5.5532785080692735 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9655817089670481, dt = 0.0005405309541803752 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.24 us    (1.9%)
   patch tree reduce : 1223.00 ns (0.3%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1093.00 ns (0.3%)
   LB compute        : 363.98 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (71.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.116098011063511e-05,8.396055247305477e-05,-3.7206223343915337e-06)
    sum a = (-0.00010337041304664111,0.00020569870412461645,3.4064704588667024e-06)
    sum e = 0.05038619320260154
    sum de = 0.0003992171101229807
Info: cfl dt = 0.000796428524495517 cfl multiplier : 0.6339792590962768        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7608e+05    |       99999 |   5.679e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 3.4263041868774713 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9661222399212285, dt = 0.000796428524495517 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.20 us    (1.9%)
   patch tree reduce : 1362.00 ns (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 354.14 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (72.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.107937695632304e-05,8.412426929169589e-05,-3.7178997633146796e-06)
    sum a = (-9.932983067699205e-05,0.00020529124827903825,3.46238601515422e-06)
    sum e = 0.05038665267954971
    sum de = 0.0004121653233834571
Info: cfl dt = 0.0010157988883396113 cfl multiplier : 0.7559861727308513       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7885e+05    |       99999 |   5.591e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 5.127793919858045 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9669186684457239, dt = 0.0010157988883396113 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (1.7%)
   patch tree reduce : 1433.00 ns (0.4%)
   gen split merge   : 1383.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 374.84 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (65.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.098008684227555e-05,8.433264165875993e-05,-3.7143604090774915e-06)
    sum a = (-9.400739207259692e-05,0.0002050916141653293,3.5408916428976095e-06)
    sum e = 0.05038724028608912
    sum de = 0.00043058778785487077
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010562770189470702
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.098279010587484e-05,8.433254026470437e-05,-3.7143205361127987e-06)
    sum a = (-9.400739207259742e-05,0.00020509161416532883,3.540891642897614e-06)
    sum e = 0.050386829008096344
    sum de = 0.00043148145179165915
Info: cfl dt = 0.0005394760277250705 cfl multiplier : 0.41866205757695046      [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.4645e+05    |       99999 |   6.828e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 5.3555895780872556 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9679344673340635, dt = 0.0005394760277250705 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.98 us    (1.8%)
   patch tree reduce : 1212.00 ns (0.3%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1313.00 ns (0.3%)
   LB compute        : 370.83 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (72.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.093207537143571e-05,8.444318227403368e-05,-3.7124103099546847e-06)
    sum a = (-9.110086979206481e-05,0.00020513521011357214,3.5861584042568237e-06)
    sum e = 0.05038718078105574
    sum de = 0.00044226333334267755
Info: cfl dt = 0.0008020409779931632 cfl multiplier : 0.612441371717967        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7803e+05    |       99999 |   5.617e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 3.457631350818699 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9684739433617886, dt = 0.0008020409779931632 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (1.7%)
   patch tree reduce : 1352.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 354.36 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (71.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.085979274027388e-05,8.460772087805443e-05,-3.7095218537945938e-06)
    sum a = (-8.666743477645444e-05,0.0002054052530302579,3.6585508970227243e-06)
    sum e = 0.050387684037377506
    sum de = 0.00045960128554751876
Info: cfl dt = 0.0010167165122017287 cfl multiplier : 0.7416275811453114       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7866e+05    |       99999 |   5.597e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 5.158556395106878 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9692759843397818, dt = 0.0007240156602181802 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.23 us    (1.9%)
   patch tree reduce : 1093.00 ns (0.3%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 363.86 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (72.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.079882205854093e-05,8.47565457906835e-05,-3.706843974778596e-06)
    sum a = (-8.254335918510378e-05,0.00020586954514135625,3.7295749065720662e-06)
    sum e = 0.05038797654955317
    sum de = 0.0004771261712618489
Info: cfl dt = 0.0011057013982206042 cfl multiplier : 0.8277517207635409       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7914e+05    |       99999 |   5.582e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 4.669274795038378 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 397                                                     [SPH][rank=0]
Info: time since start : 1465.6226201700001 (s)                                       [SPH][rank=0]
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1848.50 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.97, dt = 0.0011057013982206042 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.15 us   (2.2%)
   patch tree reduce : 1433.00 ns (0.3%)
   gen split merge   : 701.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.2%)
   LB compute        : 484.22 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.69 us    (74.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.070904669853228e-05,8.49843441119779e-05,-3.702694467342039e-06)
    sum a = (-7.599904783919051e-05,0.00020702294863911543,3.849597635248869e-06)
    sum e = 0.05038880255976358
    sum de = 0.0005054346616976363
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01401546402908997
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.071266472563223e-05,8.49849817719086e-05,-3.702628112692593e-06)
    sum a = (-7.599904783919048e-05,0.00020702294863911202,3.849597635248876e-06)
    sum e = 0.05038830956659865
    sum de = 0.0005070166895956142
Info: cfl dt = 0.0005714432256832902 cfl multiplier : 0.4425839069211803       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.4635e+05    |       99999 |   6.833e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 5.82556528408962 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.9711057013982206, dt = 0.0005714432256832902 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (1.7%)
   patch tree reduce : 1262.00 ns (0.3%)
   gen split merge   : 701.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 366.19 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (70.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.066923558458852e-05,8.510328363346795e-05,-3.700428286202318e-06)
    sum a = (-7.249234150582457e-05,0.0002078427453200304,3.917584011080856e-06)
    sum e = 0.05038873585751332
    sum de = 0.0005231513255014141
Info: cfl dt = 0.0008120082649005503 cfl multiplier : 0.6283892712807869       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7866e+05    |       99999 |   5.597e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 3.6754226487070287 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9716771446239039, dt = 0.0008120082649005503 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (1.8%)
   patch tree reduce : 1223.00 ns (0.3%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1093.00 ns (0.3%)
   LB compute        : 356.28 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (68.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.06113731459322e-05,8.527228789409836e-05,-3.6972277504299285e-06)
    sum a = (-6.734871329651482e-05,0.00020930384606278565,4.021870461856604e-06)
    sum e = 0.050389306721276575
    sum de = 0.0005478069791583489
Info: cfl dt = 0.0010021057863777634 cfl multiplier : 0.7522595141871914       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7868e+05    |       99999 |   5.597e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 5.223309725207122 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9724891528888044, dt = 0.0010021057863777634 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.98 us    (1.9%)
   patch tree reduce : 1082.00 ns (0.3%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 336.65 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 10.28 us   (2.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (70.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.054597094493807e-05,8.548262570229077e-05,-3.693155070038068e-06)
    sum a = (-6.072241291681979e-05,0.00021164165819372678,4.164006687294373e-06)
    sum e = 0.050390015308976965
    sum de = 0.0005809186064616781
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01291167613322179
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.054929107191721e-05,8.548379706982011e-05,-3.6930838522710875e-06)
    sum a = (-6.072241291682116e-05,0.00021164165819372615,4.16400668729438e-06)
    sum e = 0.05038960497718493
    sum de = 0.0005826518160767186
Info: cfl dt = 0.0005333223834382545 cfl multiplier : 0.4174198380623972       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.4662e+05    |       99999 |   6.820e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 5.289351568016632 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9734912586751822, dt = 0.0005333223834382545 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (1.7%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 375.72 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.53 us    (70.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.051690644993398e-05,8.559667030340292e-05,-3.69086309429996e-06)
    sum a = (-5.7062780499015865e-05,0.0002131513318040736,4.246110771176595e-06)
    sum e = 0.050390037348672145
    sum de = 0.000601458604461314
Info: cfl dt = 0.0007649280559878634 cfl multiplier : 0.6116132253749315       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7851e+05    |       99999 |   5.602e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 3.4274492134296275 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9740245810586204, dt = 0.0007649280559878634 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (1.8%)
   patch tree reduce : 1283.00 ns (0.3%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 350.86 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 2.94 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (70.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.04742334101169e-05,8.576011830863686e-05,-3.687593231069399e-06)
    sum a = (-5.1643911913085504e-05,0.00021568696466301075,4.372194869897863e-06)
    sum e = 0.050390633275097144
    sum de = 0.0006300529859609648
Info: cfl dt = 0.000889906131350475 cfl multiplier : 0.7410754835832876        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7886e+05    |       99999 |   5.591e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 4.92536428083085 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.9747895091146083, dt = 0.000889906131350475 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.87 us    (2.0%)
   patch tree reduce : 1483.00 ns (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 371.01 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.16 us    (75.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.043034769857397e-05,8.595302924929896e-05,-3.683654165414967e-06)
    sum a = (-4.508167624099739e-05,0.0002192558406043532,4.531743621829323e-06)
    sum e = 0.050391298111492386
    sum de = 0.0006657379803077344
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011787557479009267
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.043326758544761e-05,8.595461723159041e-05,-3.6835831737086706e-06)
    sum a = (-4.508167624099823e-05,0.00021925584060435442,4.5317436218293155e-06)
    sum e = 0.05039096908127786
    sum de = 0.0006675372216736781
Info: cfl dt = 0.0004767745063015577 cfl multiplier : 0.4136918278610959       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.4660e+05    |       99999 |   6.821e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 4.6964616684328115 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9756794152459587, dt = 0.0004767745063015577 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (1.8%)
   patch tree reduce : 1392.00 ns (0.4%)
   gen split merge   : 1032.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.3%)
   LB compute        : 344.26 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (71.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.041177379151144e-05,8.605915282675049e-05,-3.681422553880675e-06)
    sum a = (-4.145072344356241e-05,0.00022147277768875122,4.62304872561759e-06)
    sum e = 0.05039138700589499
    sum de = 0.0006874499256998031
Info: cfl dt = 0.0006872422237489904 cfl multiplier : 0.6091278852407306       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7826e+05    |       99999 |   5.610e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 3.0596803676048423 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9761561897522603, dt = 0.0006872422237489904 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.45 us    (2.0%)
   patch tree reduce : 1522.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1143.00 ns (0.3%)
   LB compute        : 344.70 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (70.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.0384152677021e-05,8.621188676052798e-05,-3.6782236336211e-06)
    sum a = (-3.607968804171673e-05,0.00022509690433273257,4.761872989982328e-06)
    sum e = 0.05039197357165379
    sum de = 0.0007173586368321142
Info: cfl dt = 0.0008938885439824357 cfl multiplier : 0.7394185901604869       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7817e+05    |       99999 |   5.612e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 4.408177018570927 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9768434319760092, dt = 0.0008938885439824357 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.52 us    (2.0%)
   patch tree reduce : 1203.00 ns (0.3%)
   gen split merge   : 651.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 356.86 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (70.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.035374705836413e-05,8.641434363102278e-05,-3.673919346959372e-06)
    sum a = (-2.8870001351215387e-05,0.00023066598948962732,4.954893331736965e-06)
    sum e = 0.05039277392615625
    sum de = 0.000757771700338076
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.014212375840010085
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.035696938654323e-05,8.641683270173685e-05,-3.673833077623247e-06)
    sum a = (-2.8870001351213693e-05,0.00023066598948962708,4.954893331736958e-06)
    sum e = 0.05039243496487425
    sum de = 0.0007601519046736559
Info: cfl dt = 0.0004816946490691711 cfl multiplier : 0.41313953005349563      [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.4686e+05    |       99999 |   6.809e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 4.7260400516668994 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9777373205199916, dt = 0.0004816946490691711 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.80 us    (1.7%)
   patch tree reduce : 1492.00 ns (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 385.34 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (72.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.034306286136843e-05,8.652794327459818e-05,-3.6714463320186416e-06)
    sum a = (-2.489208632816962e-05,0.0002341121055376055,5.064412619757131e-06)
    sum e = 0.05039290574443831
    sum de = 0.0007826313961411693
Info: cfl dt = 0.0006907233443550515 cfl multiplier : 0.6087596867023305       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7787e+05    |       99999 |   5.622e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 3.0845224126887056 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9782190151690608, dt = 0.0006907233443550515 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.89 us    (1.9%)
   patch tree reduce : 1222.00 ns (0.3%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1343.00 ns (0.4%)
   LB compute        : 333.26 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (68.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.032682738644041e-05,8.669047995891667e-05,-3.6679218465692234e-06)
    sum a = (-1.9102895833260567e-05,0.0002396747462963556,5.227516332724376e-06)
    sum e = 0.050393564732475395
    sum de = 0.0008157763469766456
Info: cfl dt = 0.0008091948278660596 cfl multiplier : 0.7391731244682204       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7805e+05    |       99999 |   5.616e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 4.427340047147312 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9789097385134159, dt = 0.0008091948278660596 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (1.9%)
   patch tree reduce : 1383.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 333.25 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.16 us    (73.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.03133687864517e-05,8.688634464690484e-05,-3.663635437619151e-06)
    sum a = (-1.224873536617083e-05,0.0002472285070345593,5.426116627928605e-06)
    sum e = 0.05039432204479409
    sum de = 0.0008557677387376516
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.014490941635911666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.031614196204422e-05,8.688940087896621e-05,-3.6635550844533084e-06)
    sum a = (-1.2248735366171219e-05,0.0002472285070345595,5.426116627928617e-06)
    sum e = 0.05039403593382897
    sum de = 0.000858419188380892
Info: cfl dt = 0.0004329460119535391 cfl multiplier : 0.4130577081560734       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.4667e+05    |       99999 |   6.818e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 4.27261641836953 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.9797189333412819, dt = 0.00028106665871807657 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.33 us    (1.8%)
   patch tree reduce : 1893.00 ns (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1183.00 ns (0.3%)
   LB compute        : 378.91 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (72.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.031269925092707e-05,8.695888856937702e-05,-3.662029983982878e-06)
    sum a = (-9.863686549314021e-06,0.00025013539800911033,5.496541296498624e-06)
    sum e = 0.050394313955232986
    sum de = 0.0008725827317381525
Info: cfl dt = 0.0006287683248795722 cfl multiplier : 0.6087051387707155       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7921e+05    |       99999 |   5.580e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 1.8133138198003744 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 411                                                     [SPH][rank=0]
Info: time since start : 1475.9542901460002 (s)                                       [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000049.vtk        [VTK Dump][rank=0]
              - took 8.15 ms, bandwidth = 655.09 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump_0000049.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.77 us    (57.0%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000049.sham  [Shamrock Dump][rank=0]
              - took 11.21 ms, bandwidth = 1021.04 MB/s
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1848.88 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.98, dt = 0.0006287683248795722 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.30 us   (2.3%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 722.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.2%)
   LB compute        : 462.68 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.93 us    (76.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.030683245610755e-05,8.711657429964076e-05,-3.6585640359060996e-06)
    sum a = (-4.562330999982418e-06,0.00025722743597559526,5.655648926995918e-06)
    sum e = 0.05039501376970409
    sum de = 0.0009037571340307503
Info: cfl dt = 0.0007403441644608217 cfl multiplier : 0.7391367591804769       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7823e+05    |       99999 |   5.611e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 4.034346833610114 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9806287683248796, dt = 0.0007403441644608217 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.84 us    (1.7%)
   patch tree reduce : 1433.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 372.75 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.57 us    (71.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.030512142319883e-05,8.730924075522283e-05,-3.6543268883076094e-06)
    sum a = (1.5418692400941126e-06,0.00026670142662292004,5.84339829960967e-06)
    sum e = 0.050395769442727854
    sum de = 0.0009415541056832995
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01476142430096536
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.030738102771063e-05,8.731274776206884e-05,-3.654257388731423e-06)
    sum a = (1.54186924009283e-06,0.00026670142662291966,5.843398299609644e-06)
    sum e = 0.050395521637439225
    sum de = 0.0009444272979440225
Info: cfl dt = 0.0004353385338146236 cfl multiplier : 0.4130455863934923       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.4652e+05    |       99999 |   6.825e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 3.905028294109373 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9813691124893403, dt = 0.0004353385338146236 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.41 us    (1.9%)
   patch tree reduce : 1903.00 ns (0.5%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 369.92 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (69.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.030805226280246e-05,8.742885317009556e-05,-3.6517135322831653e-06)
    sum a = (5.013766133836428e-06,0.0002728809284135743,5.952493685622324e-06)
    sum e = 0.050396024433445374
    sum de = 0.0009663819718215096
Info: cfl dt = 0.0006142433429304374 cfl multiplier : 0.6086970575956615       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7885e+05    |       99999 |   5.591e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 2.8030292767717393 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.981804451023155, dt = 0.0006142433429304374 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.12 us    (1.9%)
   patch tree reduce : 1262.00 ns (0.3%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 354.38 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (71.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.031188766052619e-05,8.759781355141332e-05,-3.64803350595024e-06)
    sum a = (9.679799928521332e-06,0.00028243416177258006,6.102327502507262e-06)
    sum e = 0.05039671654022259
    sum de = 0.0009974723124011237
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011643654775641544
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.031332070062474e-05,8.760074755640815e-05,-3.6479874887379474e-06)
    sum a = (9.67979992852006e-06,0.0002824341617725783,6.102327502507262e-06)
    sum e = 0.05039654099296362
    sum de = 0.0009997983533414651
Info: cfl dt = 0.00036832748108920054 cfl multiplier : 0.3695656858652205      [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.4553e+05    |       99999 |   6.871e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 3.2181452667591692 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9824186943660854, dt = 0.00036832748108920054 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.80 us    (1.7%)
   patch tree reduce : 1212.00 ns (0.3%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 370.00 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (70.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.031688603695347e-05,8.770477581979034e-05,-3.6457398338201816e-06)
    sum a = (1.2310620279148988e-05,0.0002886507782488073,6.188751616225003e-06)
    sum e = 0.05039697666811391
    sum de = 0.0010183730730414819
Info: cfl dt = 0.00056162552135609 cfl multiplier : 0.5797104572434804         [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7906e+05    |       99999 |   5.585e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 2.3743852859597445 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9827870218471746, dt = 0.00056162552135609 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (1.8%)
   patch tree reduce : 1152.00 ns (0.3%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 339.03 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (69.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.032428449719714e-05,8.786803433895698e-05,-3.6422481567791215e-06)
    sum a = (1.6001482471744863e-05,0.00029887865052073736,6.313287991907495e-06)
    sum e = 0.05039764378428037
    sum de = 0.0010464243698650628
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010862274587128158
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.032532093839733e-05,8.787090645600746e-05,-3.6422131853756544e-06)
    sum a = (1.6001482471744243e-05,0.00029887865052073074,6.3132879919074945e-06)
    sum e = 0.050397492725526946
    sum de = 0.0010486518245795733
Info: cfl dt = 0.000335387180641152 cfl multiplier : 0.35990348574782677       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.4634e+05    |       99999 |   6.833e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 2.958793462909421 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9833486473685307, dt = 0.000335387180641152 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (1.8%)
   patch tree reduce : 1193.00 ns (0.3%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1113.00 ns (0.3%)
   LB compute        : 353.96 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (70.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.033068763049077e-05,8.79711465239601e-05,-3.6400957895154725e-06)
    sum a = (1.798674965257754e-05,0.00030542868023381676,6.38242089520708e-06)
    sum e = 0.05039790188216139
    sum de = 0.0010653645277526236
Info: cfl dt = 0.0005225461357708066 cfl multiplier : 0.5732689904985512       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7963e+05    |       99999 |   5.567e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 2.16888288647669 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.9836840345491719, dt = 0.0005225461357708066 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.96 us    (2.0%)
   patch tree reduce : 1143.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 333.19 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (71.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.034041945360277e-05,8.813184549856598e-05,-3.6367490869950543e-06)
    sum a = (2.0675376054875517e-05,0.00031632250715320513,6.480008490976582e-06)
    sum e = 0.05039854561777623
    sum de = 0.0010910078850195938
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01037622174366784
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.034112191927094e-05,8.813469176214706e-05,-3.636723589984523e-06)
    sum a = (2.0675376054873765e-05,0.00031632250715320757,6.4800084909765814e-06)
    sum e = 0.05039841083687655
    sum de = 0.0010931855421168687
Info: cfl dt = 0.0003559227674456514 cfl multiplier : 0.35775633016618374      [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.4613e+05    |       99999 |   6.843e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 2.749033928157388 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9842065806849427, dt = 0.0003559227674456514 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.72 us    (1.9%)
   patch tree reduce : 1392.00 ns (0.4%)
   gen split merge   : 681.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.3%)
   LB compute        : 375.07 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (73.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.03484807563292e-05,8.824727814429806e-05,-3.6344172074293514e-06)
    sum a = (2.2182717108337127e-05,0.00032422927915650535,6.5380897298224e-06)
    sum e = 0.050398866528745485
    sum de = 0.001110449199759587
Info: cfl dt = 0.0005558155886760343 cfl multiplier : 0.5718375534441225       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7891e+05    |       99999 |   5.589e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 2.2924589296944187 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9845625034523884, dt = 0.0005558155886760343 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.92 us    (2.0%)
   patch tree reduce : 1442.00 ns (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1093.00 ns (0.3%)
   LB compute        : 334.30 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (70.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.036107850480511e-05,8.842889693204621e-05,-3.630772899019724e-06)
    sum a = (2.3904504311235808e-05,0.00033738747929242576,6.611953900706816e-06)
    sum e = 0.050399585640105854
    sum de = 0.0011368384066625062
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01299237628156374
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.036155700288401e-05,8.843255369842352e-05,-3.6307523715909014e-06)
    sum a = (2.390450431123723e-05,0.00033738747929242403,6.611953900706824e-06)
    sum e = 0.050399427873146774
    sum de = 0.001139668155185973
Info: cfl dt = 0.0003404441629447851 cfl multiplier : 0.35727918448137413      [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.4536e+05    |       99999 |   6.880e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 2.908499848534015 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9851183190410644, dt = 0.0003404441629447851 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.80 us    (1.9%)
   patch tree reduce : 1312.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 334.65 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (68.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.036969515184715e-05,8.854741529640061e-05,-3.6285013704797385e-06)
    sum a = (2.4530490654116316e-05,0.0003459335659290239,6.645487534395333e-06)
    sum e = 0.05039987885285788
    sum de = 0.0011558217086283247
Info: cfl dt = 0.0005301313905307231 cfl multiplier : 0.571519456320916        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7648e+05    |       99999 |   5.666e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 2.1630051957104834 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9854587632040092, dt = 0.0005301313905307231 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (1.8%)
   patch tree reduce : 1082.00 ns (0.3%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 336.86 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (67.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.03828060916635e-05,8.873226027139142e-05,-3.624972680767461e-06)
    sum a = (2.47432574594715e-05,0.00035998427099720876,6.676485516081416e-06)
    sum e = 0.050400587251508644
    sum de = 0.001180539206655511
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.0130691669297759
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.03828624888427e-05,8.873598463129978e-05,-3.62496446426589e-06)
    sum a = (2.4743257459472443e-05,0.00035998427099721153,6.6764855160814235e-06)
    sum e = 0.050400438180819886
    sum de = 0.001183471542190376
Info: cfl dt = 0.0003189679567069336 cfl multiplier : 0.35717315210697204      [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.4635e+05    |       99999 |   6.833e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 2.7929919743635905 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9859888945945399, dt = 0.0003189679567069336 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.88 us    (1.9%)
   patch tree reduce : 1102.00 ns (0.3%)
   gen split merge   : 661.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1293.00 ns (0.4%)
   LB compute        : 341.98 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (71.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.03907547951159e-05,8.885080807866678e-05,-3.6228348793228384e-06)
    sum a = (2.437919257221925e-05,0.0003688646592323404,6.681166596853266e-06)
    sum e = 0.05040087300486915
    sum de = 0.0011984998682459248
Info: cfl dt = 0.0005240184990196253 cfl multiplier : 0.5714487680713147       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7901e+05    |       99999 |   5.586e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 2.0555580136386995 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9863078625512468, dt = 0.0005240184990196253 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.16 us    (1.3%)
   patch tree reduce : 1202.00 ns (0.2%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.2%)
   LB compute        : 525.17 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (68.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.040347188049813e-05,8.904551626338446e-05,-3.6193330778736737e-06)
    sum a = (2.2859448571914513e-05,0.0003841404144226358,6.662321339818834e-06)
    sum e = 0.050401604275729144
    sum de = 0.0012227705510427398
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01406575860082617
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.040307369351178e-05,8.90495186525374e-05,-3.6193380155053316e-06)
    sum a = (2.2859448571914726e-05,0.0003841404144226369,6.6623213398188405e-06)
    sum e = 0.05040145273182213
    sum de = 0.0012260562687615498
Info: cfl dt = 0.00032374654996403696 cfl multiplier : 0.3571495893571049      [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.4620e+05    |       99999 |   6.840e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 2.758012422300087 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9868318810502664, dt = 0.00032374654996403696 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.08 us    (1.9%)
   patch tree reduce : 1763.00 ns (0.5%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1163.00 ns (0.3%)
   LB compute        : 359.78 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (71.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.04104743611257e-05,8.917388278640624e-05,-3.6171811119568025e-06)
    sum a = (2.130079391274279e-05,0.0003939858700121401,6.6325402150446246e-06)
    sum e = 0.0504019111351657
    sum de = 0.0012415570103713265
Info: cfl dt = 0.0005145888172038088 cfl multiplier : 0.5714330595714032       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7924e+05    |       99999 |   5.579e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 2.0890076924545067 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9871556276002305, dt = 0.0005145888172038088 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.63 us    (2.0%)
   patch tree reduce : 1323.00 ns (0.3%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.3%)
   LB compute        : 369.04 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (71.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.042118320693367e-05,8.937821722539103e-05,-3.613772901700695e-06)
    sum a = (1.7724099323357876e-05,0.0004102496409282383,6.552646714556284e-06)
    sum e = 0.05040265034206107
    sum de = 0.0012664340412281803
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.014867762630445308
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.042026294341646e-05,8.938240180271266e-05,-3.6137934578516534e-06)
    sum a = (1.7724099323357676e-05,0.00041024964092823535,6.552646714556297e-06)
    sum e = 0.05040249776970463
    sum de = 0.0012700751186802226
Info: cfl dt = 0.0003233300481291069 cfl multiplier : 0.3571443531904677       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.4703e+05    |       99999 |   6.801e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 2.7238065572958536 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9876702164174342, dt = 0.0003233300481291069 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.97 us    (1.9%)
   patch tree reduce : 1122.00 ns (0.3%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 345.59 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (70.2%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.042599367730194e-05,8.951504783885427e-05,-3.611674790274069e-06)
    sum a = (1.4738525205572477e-05,0.00042082740915900786,6.4802520185871495e-06)
    sum e = 0.050402972544169054
    sum de = 0.001286602981261263
Info: cfl dt = 0.0005195181848433315 cfl multiplier : 0.5714295687936451       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7701e+05    |       99999 |   5.649e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 2.060422035656558 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9879935464655634, dt = 0.0005195181848433315 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (1.7%)
   patch tree reduce : 1072.00 ns (0.3%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 367.30 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.57 us    (71.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.04331679462495e-05,8.973538538575402e-05,-3.6083198851983076e-06)
    sum a = (8.612156280853288e-06,0.00043835770403542155,6.323531138904749e-06)
    sum e = 0.05040374981172274
    sum de = 0.0013140803107480308
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.016528313382211605
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.043157656622473e-05,8.973993903924143e-05,-3.6083605948717693e-06)
    sum a = (8.612156280852437e-06,0.0004383577040354198,6.323531138904752e-06)
    sum e = 0.05040358700802053
    sum de = 0.001318351380616192
Info: cfl dt = 0.0003189934125254679 cfl multiplier : 0.35714318959788177      [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.4663e+05    |       99999 |   6.820e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 2.7423776910448123 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9885130646504067, dt = 0.0003189934125254679 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.37 us    (2.0%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 355.45 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (70.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.043432378734453e-05,8.987977225915762e-05,-3.606343430094558e-06)
    sum a = (3.991573498007171e-06,0.0004494123337705326,6.200810865596498e-06)
    sum e = 0.05040407315103285
    sum de = 0.0013368122189488033
Info: cfl dt = 0.0005066332062593625 cfl multiplier : 0.5714287930652545       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7872e+05    |       99999 |   5.595e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 2.0523788645157173 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9888320580629322, dt = 0.0005066332062593625 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.38 us    (2.0%)
   patch tree reduce : 1162.00 ns (0.3%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 349.56 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (71.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.04356090832882e-05,9.010922264777912e-05,-3.6032214668837012e-06)
    sum a = (-4.8280251383447785e-06,0.00046736292521126185,5.959755445076392e-06)
    sum e = 0.05040485855886909
    sum de = 0.0013680617503547888
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01709610400915757
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.043337493251713e-05,9.011376983062707e-05,-3.6032825302240006e-06)
    sum a = (-4.8280251383440314e-06,0.00046736292521125833,5.959755445076391e-06)
    sum e = 0.050404696028458706
    sum de = 0.0013727497214497603
Info: cfl dt = 0.0003067224621665243 cfl multiplier : 0.3571429310217515       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.4696e+05    |       99999 |   6.804e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 2.680485046423644 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9893386912691915, dt = 0.0003067224621665243 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (1.6%)
   patch tree reduce : 1222.00 ns (0.3%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.2%)
   LB compute        : 402.24 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (69.9%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.043189406876068e-05,9.025712053776895e-05,-3.601454539359968e-06)
    sum a = (-1.1093389728494977e-05,0.00047842578133168906,5.784560121073212e-06)
    sum e = 0.050405181130537866
    sum de = 0.0013939362590586377
Info: cfl dt = 0.00048194887979549785 cfl multiplier : 0.5714286206811677      [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7910e+05    |       99999 |   5.583e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 1.9776452680854697 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9896454137313581, dt = 0.0003545862686419321 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.72 us    (1.7%)
   patch tree reduce : 1122.00 ns (0.3%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 360.56 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.12 us    (71.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.042699964106447e-05,9.042846036362942e-05,-3.5994302819414685e-06)
    sum a = (-1.9274409186614353e-05,0.0004913610755487666,5.552109565398405e-06)
    sum e = 0.05040570320287038
    sum de = 0.0014218686566166445
Info: cfl dt = 0.0005906843069244113 cfl multiplier : 0.7142857471207785       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7751e+05    |       99999 |   5.633e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 2.2659735225732285 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 433                                                     [SPH][rank=0]
Info: time since start : 1491.420482302 (s)                                           [SPH][rank=0]
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1851.14 ms                           [sph::CartesianRender][rank=0]
---------------- t = 0.99, dt = 0.0005906843069244113 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.03 us   (2.3%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 701.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.2%)
   LB compute        : 451.28 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.43 us    (72.1%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.041416411145092e-05,9.072099297884592e-05,-3.5961919498384558e-06)
    sum a = (-3.531654101877012e-05,0.0005131401701786816,5.087107027538404e-06)
    sum e = 0.05040671287303982
    sum de = 0.0014698847854610988
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.026293884977360987
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.040942619368922e-05,9.072742526355496e-05,-3.5963292846893536e-06)
    sum a = (-3.5316541018772146e-05,0.0005131401701786806,5.087107027538406e-06)
    sum e = 0.05040647506145764
    sum de = 0.0014781104083332601
Info: cfl dt = 0.0003278565073366996 cfl multiplier : 0.40476191570692616      [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.4636e+05    |       99999 |   6.832e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 3.112386192548544 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9905906843069244, dt = 0.0003278565073366996 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (1.7%)
   patch tree reduce : 1233.00 ns (0.3%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 373.76 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (71.6%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.0397847435897e-05,9.089566160752306e-05,-3.594661443546854e-06)
    sum a = (-4.558011126556188e-05,0.0005252882311692745,4.78452370203222e-06)
    sum e = 0.05040703983927629
    sum de = 0.0015098843680485879
Info: cfl dt = 0.0004830508868492875 cfl multiplier : 0.6031746104712842       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7756e+05    |       99999 |   5.632e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 2.0957355201740953 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9909185408142611, dt = 0.0004830508868492875 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.02 us    (1.9%)
   patch tree reduce : 1061.00 ns (0.3%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 344.25 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (69.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.037414743358536e-05,9.115139396386795e-05,-3.5923998770855753e-06)
    sum a = (-6.264536874281887e-05,0.0005431566194754571,4.274535892800481e-06)
    sum e = 0.05040787616083602
    sum de = 0.0015627825975332572
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01912479448352083
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.037002573970353e-05,9.115570963427454e-05,-3.5925230521173514e-06)
    sum a = (-6.264536874281819e-05,0.000543156619475456,4.274535892800491e-06)
    sum e = 0.05040770715271953
    sum de = 0.00156919492051889
Info: cfl dt = 0.00029496033754836587 cfl multiplier : 0.36772487015709476     [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.4626e+05    |       99999 |   6.837e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 2.5434619246504404 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9914015917011104, dt = 0.00029496033754836587 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.03 us    (1.9%)
   patch tree reduce : 1382.00 ns (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.3%)
   LB compute        : 353.70 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (69.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.035154784059393e-05,9.131591929409434e-05,-3.591262233567537e-06)
    sum a = (-7.425452505621527e-05,0.0005539998333243267,3.923417310462041e-06)
    sum e = 0.05040823982655814
    sum de = 0.0016058482950754667
Info: cfl dt = 0.00046531446433634437 cfl multiplier : 0.5784832467713965      [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7916e+05    |       99999 |   5.582e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 1.9024582674944697 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9916965520386588, dt = 0.00046531446433634437 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.32 us    (1.9%)
   patch tree reduce : 1273.00 ns (0.3%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 355.15 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (69.0%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.031528401571113e-05,9.15753025887894e-05,-3.589488393771138e-06)
    sum a = (-9.456909739109852e-05,0.0005708870849479247,3.3022046632878578e-06)
    sum e = 0.050409103790222794
    sum de = 0.0016700344489930033
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.019258778939655923
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.031055768354047e-05,9.157923153001109e-05,-3.5896329233862216e-06)
    sum a = (-9.456909739109834e-05,0.0005708870849479246,3.3022046632878624e-06)
    sum e = 0.050408937978955105
    sum de = 0.0016770388458876868
Info: cfl dt = 0.000303460459159169 cfl multiplier : 0.3594944155904655        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.4664e+05    |       99999 |   6.819e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 2.4564888235034292 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9921618665029952, dt = 0.000303460459159169 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.22 us    (2.0%)
   patch tree reduce : 1313.00 ns (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 347.02 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.05 us    (73.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.028185970182e-05,9.175247318693736e-05,-3.5886308348428627e-06)
    sum a = (-0.00010919852325560156,0.0005816960018963106,2.8501600253655917e-06)
    sum e = 0.05040952635139958
    sum de = 0.0017243422945494862
Info: cfl dt = 0.00046513873384170526 cfl multiplier : 0.5729962770603104      [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7721e+05    |       99999 |   5.643e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 1.9359268829807397 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9924653269621544, dt = 0.00046513873384170526 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.92 us    (2.1%)
   patch tree reduce : 1483.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.3%)
   LB compute        : 358.64 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (71.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.022884751283055e-05,9.202468256818781e-05,-3.5873737038540986e-06)
    sum a = (-0.00013394080101612632,0.000597795122313867,2.078023684112822e-06)
    sum e = 0.05041045148630204
    sum de = 0.0018049770644693632
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.02099268279777972
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.022309321695574e-05,9.202842673043385e-05,-3.5875532791141747e-06)
    sum a = (-0.00013394080101612543,0.0005977951223138675,2.0780236841128216e-06)
    sum e = 0.05041027552596521
    sum de = 0.001813261629750987
Info: cfl dt = 0.00030496796716146616 cfl multiplier : 0.3576654256867702      [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.4650e+05    |       99999 |   6.826e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 2.4531593485487466 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9929304656959961, dt = 0.00030496796716146616 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.20 us    (2.0%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 344.27 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (70.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.018224556315602e-05,9.221073509366343e-05,-3.5869195484555086e-06)
    sum a = (-0.00015176846776220976,0.0006079592948467134,1.51647260223477e-06)
    sum e = 0.050410915252829785
    sum de = 0.0018723456815943282
Info: cfl dt = 0.0004800116696729375 cfl multiplier : 0.5717769504578468       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.5397e+05    |       99999 |   6.495e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 1.6904659411355967 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9932354336631576, dt = 0.0004800116696729375 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.85 us    (1.7%)
   patch tree reduce : 2.01 us    (0.5%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1293.00 ns (0.3%)
   LB compute        : 383.66 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.64 us    (71.5%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.01066764938947e-05,9.250411252339458e-05,-3.586277251455639e-06)
    sum a = (-0.00018267084975250923,0.0006230847263162299,5.342334613720604e-07)
    sum e = 0.05041196179702831
    sum de = 0.001974218910242653
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.024695374761738373
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.009925974190676e-05,9.250774271520513e-05,-3.586512994580664e-06)
    sum a = (-0.00018267084975250942,0.0006230847263162289,5.34233461372072e-07)
    sum e = 0.05041176159018833
    sum de = 0.0019845856625648273
Info: cfl dt = 0.0002882572796853521 cfl multiplier : 0.357258983485949        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.4589e+05    |       99999 |   6.854e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 2.5211191384032925 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9937154453328305, dt = 0.0002882572796853521 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.33 us    (1.9%)
   patch tree reduce : 1232.00 ns (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.3%)
   LB compute        : 369.22 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.10 us    (69.4%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.004660353967612e-05,9.26873514234241e-05,-3.586358997896368e-06)
    sum a = (-0.0002029923698291214,0.0006315389852137156,-1.1702606435303706e-07)
    sum e = 0.050412417806047626
    sum de = 0.00205252612314109
Info: cfl dt = 0.0004509955314005199 cfl multiplier : 0.5715059889906327       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7896e+05    |       99999 |   5.588e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 1.8571465691104925 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9940037026125159, dt = 0.0004509955314005199 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.09 us    (1.8%)
   patch tree reduce : 1122.00 ns (0.3%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 364.78 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (71.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.995212597492634e-05,9.297339118449951e-05,-3.586505641278078e-06)
    sum a = (-0.0002377161953568985,0.0006434970990079425,-1.2383012681872396e-06)
    sum e = 0.05041348561586531
    sum de = 0.002166695946426133
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.024538141505648356
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.994429582985305e-05,9.297608771243963e-05,-3.5867584863312734e-06)
    sum a = (-0.00023771619535689764,0.0006434970990079403,-1.238301268187239e-06)
    sum e = 0.05041329555149164
    sum de = 0.002177459230889205
Info: cfl dt = 0.0002744668343240418 cfl multiplier : 0.35716866299687755      [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.4620e+05    |       99999 |   6.840e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 2.3736517903874694 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9944546981439164, dt = 0.0002744668343240418 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99999 min = 99999                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99999 min = 99999                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99999
    max = 99999
    avg = 99999
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.90 us    (1.9%)
   patch tree reduce : 1203.00 ns (0.3%)
   gen split merge   : 911.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.4%)
   LB compute        : 347.52 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (70.4%)
central potential accretion : +=  1e-07
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.810773083542986e-05,9.227915766513259e-05,-3.6440558036256654e-06)
    sum a = (-0.00017825505017958208,0.00025046550143292834,1.007875755056505e-06)
    sum e = 0.05038458927162453
    sum de = 0.0002259608936325904
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011315635034282427
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.810115599990843e-05,9.227669423979973e-05,-3.644071403155608e-06)
    sum a = (-0.00017825505017958317,0.00025046550143293105,1.0078757550565013e-06)
    sum e = 0.05038450050075395
    sum de = 0.00022915428009649235
Info: cfl dt = 0.0003979124576352652 cfl multiplier : 0.28572288766562587      [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.4664e+05    |       99998 |   6.819e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 1.4489955534827408 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9947291649782405, dt = 0.0003979124576352652 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99998 min = 99998                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99998 min = 99998                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99998
    max = 99998
    avg = 99998
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.18 us    (2.0%)
   patch tree reduce : 1383.00 ns (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 341.39 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 us    (70.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.803022609480168e-05,9.237635758302947e-05,-3.643670356836915e-06)
    sum a = (-0.0001784636146194016,0.0002494057801655262,1.0069511492754142e-06)
    sum e = 0.050384650682151394
    sum de = 0.00023384852780624808
Info: cfl dt = 0.0007190308220728394 cfl multiplier : 0.5238152584437507       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7905e+05    |       99998 |   5.585e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 2.5649843648035784 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9951270774358758, dt = 0.0007190308220728394 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99998 min = 99998                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99998 min = 99998                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99998
    max = 99998
    avg = 99998
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.82 us    (1.8%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 351.25 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (70.8%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.790186376007677e-05,9.255547718802526e-05,-3.6429465118803477e-06)
    sum a = (-0.0001788031456192464,0.0002474848281843312,1.006840843480798e-06)
    sum e = 0.05038495355709228
    sum de = 0.00024258532007772287
Info: cfl dt = 0.0009141345770334055 cfl multiplier : 0.6825435056291672       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7832e+05    |       99998 |   5.608e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 4.615806047989579 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9958461082579486, dt = 0.0009141345770334055 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99998 min = 99998                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99998 min = 99998                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99998
    max = 99998
    avg = 99998
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.16 us    (2.0%)
   patch tree reduce : 1263.00 ns (0.3%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 340.25 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (69.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.773829155555858e-05,9.278102101491774e-05,-3.642026163508384e-06)
    sum a = (-0.00017916461134846187,0.00024503132933753705,1.0095961777243386e-06)
    sum e = 0.05038529751323347
    sum de = 0.00025415441747057713
Info: cfl dt = 0.0011311624229875903 cfl multiplier : 0.7883623370861116       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7833e+05    |       99998 |   5.608e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 5.868589349865959 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.996760242834982, dt = 0.0011311624229875903 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99998 min = 99998                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99998 min = 99998                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99998
    max = 99998
    avg = 99998
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (1.7%)
   patch tree reduce : 1502.00 ns (0.4%)
   gen split merge   : 691.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 361.50 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (72.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.753546206551477e-05,9.305706983305164e-05,-3.640882886876597e-06)
    sum a = (-0.00017950083604552223,0.00024197717085111292,1.017476013315591e-06)
    sum e = 0.050385756394782565
    sum de = 0.00026919833548736045
Info: cfl dt = 0.0011986860537856327 cfl multiplier : 0.8589082247240745       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7765e+05    |       99998 |   5.629e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 7.234198796296583 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9978914052579696, dt = 0.0011986860537856327 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99998 min = 99998                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99998 min = 99998                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99998
    max = 99998
    avg = 99998
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.16 us    (1.8%)
   patch tree reduce : 1172.00 ns (0.3%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 375.93 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (72.7%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.732010675432547e-05,9.334539711842801e-05,-3.6396587958824036e-06)
    sum a = (-0.0001797189988109873,0.00023871810926077126,1.0311913876573922e-06)
    sum e = 0.05038614713473525
    sum de = 0.0002860739164860113
Info: cfl dt = 0.0013225949546364437 cfl multiplier : 0.9059388164827163       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7772e+05    |       99998 |   5.627e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 7.669059327491348 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9990900913117552, dt = 0.0009099086882448093 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 99998 min = 99998                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 99998 min = 99998                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 99998
    max = 99998
    avg = 99998
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.17 us    (1.9%)
   patch tree reduce : 1382.00 ns (0.4%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 365.46 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (71.3%)
Info: free boundaries skipping geometry update                            [PositionUpdated][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.715644812153789e-05,9.356065550424703e-05,-3.638712285665568e-06)
    sum a = (-0.00017978642226117053,0.0002362284754847022,1.0452594217691356e-06)
    sum e = 0.05038619054313532
    sum de = 0.0002996198989456031
Info: cfl dt = 0.001329716503105316 cfl multiplier : 0.937292544321811         [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    1.7620e+05    |       99998 |   5.675e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 5.771952588175632 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 451                                                     [SPH][rank=0]
Info: time since start : 1504.352982786 (s)                                           [SPH][rank=0]
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000050.vtk        [VTK Dump][rank=0]
              - took 8.30 ms, bandwidth = 643.36 MB/s
Info: Dumping state to _to_trash/circular_disc_central_pot_100000/dump_0000050.sham   [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (54.3%)
Info: dump to _to_trash/circular_disc_central_pot_100000/dump_0000050.sham  [Shamrock Dump][rank=0]
              - took 11.36 ms, bandwidth = 1007.75 MB/s
Info: compute_column_integ field_name: rho, center: (0,0,0), delta_x: (30,0,0), delta_y: (0,30,0), nx: 1024, ny: 1024  [sph::CartesianRender][rank=0]
Info: compute_column_integ took 1856.10 ms                           [sph::CartesianRender][rank=0]

Plot generation (make_plots.py)#

Load the on-the-fly analysis after the run to make the plots (everything in this section can be in another file)

367 import matplotlib
368 import matplotlib.pyplot as plt
369
370 # Uncomment this and replace by you dump folder, here since it is just above i comment it out
371 # dump_folder = "my_masterpiece"
372 # dump_folder += "/"
373
374
375 def plot_rho_integ(metadata, arr_rho, iplot):
376
377     ext = metadata["extent"]
378
379     dpi = 200
380
381     # Reset the figure using the same memory as the last one
382     plt.figure(num=1, clear=True, dpi=dpi)
383     import copy
384
385     my_cmap = matplotlib.colormaps["gist_heat"].copy()  # copy the default cmap
386     my_cmap.set_bad(color="black")
387
388     res = plt.imshow(
389         arr_rho, cmap=my_cmap, origin="lower", extent=ext, norm="log", vmin=1e-8, vmax=1e-4
390     )
391
392     plt.xlabel("x")
393     plt.ylabel("y")
394     plt.title(f"t = {metadata['time']:0.3f} [years]")
395
396     cbar = plt.colorbar(res, extend="both")
397     cbar.set_label(r"$\int \rho \, \mathrm{d}z$ [code unit]")
398
399     plt.savefig(dump_folder + "plot_rho_integ_{:04}.png".format(iplot))
400     plt.close()
401
402
403 def get_list_dumps_id():
404     import glob
405
406     list_files = glob.glob(dump_folder + "rho_integ_*.npy")
407     list_files.sort()
408     list_dumps_id = []
409     for f in list_files:
410         list_dumps_id.append(int(f.split("_")[-1].split(".")[0]))
411     return list_dumps_id
412
413
414 def load_rho_integ(iplot):
415     with open(dump_folder + f"rho_integ_{iplot:07}.json") as fp:
416         metadata = json.load(fp)
417     return np.load(dump_folder + f"rho_integ_{iplot:07}.npy"), metadata
418
419
420 if shamrock.sys.world_rank() == 0:
421     for iplot in get_list_dumps_id():
422         print("Rendering rho integ plot for dump", iplot)
423         arr_rho, metadata = load_rho_integ(iplot)
424         plot_rho_integ(metadata, arr_rho, iplot)
Rendering rho integ plot for dump 1
Rendering rho integ plot for dump 2
Rendering rho integ plot for dump 3
Rendering rho integ plot for dump 4
Rendering rho integ plot for dump 5
Rendering rho integ plot for dump 6
Rendering rho integ plot for dump 7
Rendering rho integ plot for dump 8
Rendering rho integ plot for dump 9
Rendering rho integ plot for dump 10
Rendering rho integ plot for dump 11
Rendering rho integ plot for dump 12
Rendering rho integ plot for dump 13
Rendering rho integ plot for dump 14
Rendering rho integ plot for dump 15
Rendering rho integ plot for dump 16
Rendering rho integ plot for dump 17
Rendering rho integ plot for dump 18
Rendering rho integ plot for dump 19
Rendering rho integ plot for dump 20
Rendering rho integ plot for dump 21
Rendering rho integ plot for dump 22
Rendering rho integ plot for dump 23
Rendering rho integ plot for dump 24
Rendering rho integ plot for dump 25
Rendering rho integ plot for dump 26
Rendering rho integ plot for dump 27
Rendering rho integ plot for dump 28
Rendering rho integ plot for dump 29
Rendering rho integ plot for dump 30
Rendering rho integ plot for dump 31
Rendering rho integ plot for dump 32
Rendering rho integ plot for dump 33
Rendering rho integ plot for dump 34
Rendering rho integ plot for dump 35
Rendering rho integ plot for dump 36
Rendering rho integ plot for dump 37
Rendering rho integ plot for dump 38
Rendering rho integ plot for dump 39
Rendering rho integ plot for dump 40
Rendering rho integ plot for dump 41
Rendering rho integ plot for dump 42
Rendering rho integ plot for dump 43
Rendering rho integ plot for dump 44
Rendering rho integ plot for dump 45
Rendering rho integ plot for dump 46
Rendering rho integ plot for dump 47
Rendering rho integ plot for dump 48
Rendering rho integ plot for dump 49
Rendering rho integ plot for dump 50
Rendering rho integ plot for dump 51
Rendering rho integ plot for dump 52
Rendering rho integ plot for dump 53
Rendering rho integ plot for dump 54
Rendering rho integ plot for dump 55
Rendering rho integ plot for dump 56
Rendering rho integ plot for dump 57
Rendering rho integ plot for dump 58
Rendering rho integ plot for dump 59
Rendering rho integ plot for dump 60
Rendering rho integ plot for dump 61
Rendering rho integ plot for dump 62
Rendering rho integ plot for dump 63
Rendering rho integ plot for dump 64
Rendering rho integ plot for dump 65
Rendering rho integ plot for dump 66
Rendering rho integ plot for dump 67
Rendering rho integ plot for dump 68
Rendering rho integ plot for dump 69
Rendering rho integ plot for dump 70
Rendering rho integ plot for dump 71
Rendering rho integ plot for dump 72
Rendering rho integ plot for dump 73
Rendering rho integ plot for dump 74
Rendering rho integ plot for dump 75
Rendering rho integ plot for dump 76
Rendering rho integ plot for dump 77
Rendering rho integ plot for dump 78
Rendering rho integ plot for dump 79
Rendering rho integ plot for dump 80
Rendering rho integ plot for dump 81
Rendering rho integ plot for dump 82
Rendering rho integ plot for dump 83
Rendering rho integ plot for dump 84
Rendering rho integ plot for dump 85
Rendering rho integ plot for dump 86
Rendering rho integ plot for dump 87
Rendering rho integ plot for dump 88
Rendering rho integ plot for dump 89
Rendering rho integ plot for dump 90
Rendering rho integ plot for dump 91
Rendering rho integ plot for dump 92
Rendering rho integ plot for dump 93
Rendering rho integ plot for dump 94
Rendering rho integ plot for dump 95
Rendering rho integ plot for dump 96
Rendering rho integ plot for dump 97
Rendering rho integ plot for dump 98
Rendering rho integ plot for dump 99
Rendering rho integ plot for dump 100

Make gif for the doc (plot_to_gif.py)#

Convert PNG sequence to Image sequence in mpl

433 import matplotlib.animation as animation
434
435
436 def show_image_sequence(glob_str, render_gif):
437
438     if render_gif and shamrock.sys.world_rank() == 0:
439
440         import glob
441
442         files = sorted(glob.glob(glob_str))
443
444         from PIL import Image
445
446         image_array = []
447         for my_file in files:
448             image = Image.open(my_file)
449             image_array.append(image)
450
451         if not image_array:
452             raise RuntimeError(f"Warning: No images found for glob pattern: {glob_str}")
453
454         pixel_x, pixel_y = image_array[0].size
455
456         # Create the figure and axes objects
457         # Remove axes, ticks, and frame & set aspect ratio
458         dpi = 200
459         fig = plt.figure(dpi=dpi)
460         plt.gca().set_position((0, 0, 1, 1))
461         plt.gcf().set_size_inches(pixel_x / dpi, pixel_y / dpi)
462         plt.axis("off")
463
464         # Set the initial image with correct aspect ratio
465         im = plt.imshow(image_array[0], animated=True, aspect="auto")
466
467         def update(i):
468             im.set_array(image_array[i])
469             return (im,)
470
471         # Create the animation object
472         ani = animation.FuncAnimation(
473             fig,
474             update,
475             frames=len(image_array),
476             interval=50,
477             blit=True,
478             repeat_delay=10,
479         )
480
481         return ani

Do it for rho integ

487 render_gif = True
488 glob_str = os.path.join(dump_folder, "plot_rho_integ_*.png")
489
490 # If the animation is not returned only a static image will be shown in the doc
491 ani = show_image_sequence(glob_str, render_gif)
492
493 if render_gif and shamrock.sys.world_rank() == 0:
494     # To save the animation using Pillow as a gif
495     # writer = animation.PillowWriter(fps=15,
496     #                                 metadata=dict(artist='Me'),
497     #                                 bitrate=1800)
498     # ani.save('scatter.gif', writer=writer)
499
500     # Show the animation
501     plt.show()

Total running time of the script: (9 minutes 1.145 seconds)

Estimated memory usage: 108 MB

Gallery generated by Sphinx-Gallery