Killing sphere for SPH simulation#

This simple example shows how to setup a killing sphere for sph simulations

 9 import shamrock
10
11 # If we use the shamrock executable to run this script instead of the python interpreter,
12 # we should not initialize the system as the shamrock executable needs to handle specific MPI logic
13 if not shamrock.sys.is_initialized():
14     shamrock.change_loglevel(1)
15     shamrock.sys.init("0:0")
16
17
18 def is_in_sphere(pt):
19     x, y, z = pt
20     return (x**2 + y**2 + z**2) < 1

Use shamrock documentation style for matplotlib

26 shamrock.matplotlib.set_shamrock_mpl_style()

Setup parameters

32 dr = 0.1
33 pmass = 1
34
35 C_cour = 0.3
36 C_force = 0.25
37
38 bsize = 4
39
40
41 render_gif = True
42
43 dump_folder = "_to_trash"
44 sim_name = "kill_particle_sphere"
45
46 import os
47
48 # Create the dump directory if it does not exist
49 if shamrock.sys.world_rank() == 0:
50     os.makedirs(dump_folder, exist_ok=True)

Setup

55 ctx = shamrock.Context()
56 ctx.pdata_layout_new()
57
58 model = shamrock.get_Model_SPH(context=ctx, vector_type="f64_3", sph_kernel="M4")
59
60 cfg = model.gen_default_config()
61 # cfg.set_artif_viscosity_VaryingMM97(alpha_min = 0.1,alpha_max = 1,sigma_decay = 0.1, alpha_u = 1, beta_AV = 2)
62 # cfg.set_artif_viscosity_ConstantDisc(alpha_u=alpha_u, alpha_AV=alpha_AV, beta_AV=beta_AV)
63 # cfg.set_eos_locally_isothermalLP07(cs0=cs0, q=q, r0=r0)
64 cfg.set_artif_viscosity_VaryingCD10(
65     alpha_min=0.0, alpha_max=1, sigma_decay=0.1, alpha_u=1, beta_AV=2
66 )
67 cfg.set_boundary_periodic()
68 cfg.set_eos_adiabatic(1.00001)

The important part to enable killing

72 cfg.add_kill_sphere(center=(0.0, 0.0, 0.0), radius=4.0)

Rest of the setup

 77 cfg.print_status()
 78 model.set_solver_config(cfg)
 79
 80 model.init_scheduler(int(1e7), 1)
 81
 82 bmin = (-bsize, -bsize, -bsize)
 83 bmax = (bsize, bsize, bsize)
 84 model.resize_simulation_box(bmin, bmax)
 85
 86 model.set_particle_mass(pmass)
 87
 88 setup = model.get_setup()
 89 lat = setup.make_generator_lattice_hcp(dr, (-bsize, -bsize, -bsize), (bsize, bsize, bsize))
 90
 91 thesphere = setup.make_modifier_filter(parent=lat, filter=is_in_sphere)
 92
 93 offset_sphere = setup.make_modifier_offset(
 94     parent=thesphere, offset_position=(0.0, 0.0, 0.0), offset_velocity=(-1.0, -1.0, -1.0)
 95 )
 96
 97 setup.apply_setup(offset_sphere)
 98
 99 model.set_value_in_a_box("uint", "f64", 1, bmin, bmax)
100
101 model.set_cfl_cour(C_cour)
102 model.set_cfl_force(C_force)
103
104 model.change_htolerance(1.3)
105 model.timestep()
106 model.change_htolerance(1.1)
----- SPH Solver configuration -----
[
    {
        "artif_viscosity": {
            "alpha_max": 1.0,
            "alpha_min": 0.0,
            "alpha_u": 1.0,
            "beta_AV": 2.0,
            "sigma_decay": 0.1,
            "type": "varying_cd10"
        },
        "boundary_config": {
            "bc_type": "periodic"
        },
        "cfl_config": {
            "cfl_cour": 0.0,
            "cfl_force": 0.0,
            "cfl_multiplier_stiffness": 2.0,
            "eta_sink": 0.05
        },
        "combined_dtdiv_divcurlv_compute": false,
        "debug_dump_filename": "",
        "do_debug_dump": false,
        "dust_config": {
            "drag_mode": {
                "type": "none"
            },
            "mode": {
                "type": "none"
            }
        },
        "enable_particle_reordering": false,
        "eos_config": {
            "Tvec": "f64_3",
            "eos_type": "adiabatic",
            "gamma": 1.00001
        },
        "epsilon_h": 1e-06,
        "ext_force_config": {
            "force_list": []
        },
        "gpart_mass": 0.0,
        "h_iter_per_subcycles": 50,
        "h_max_subcycles_count": 100,
        "htol_up_coarse_cycle": 1.1,
        "htol_up_fine_cycle": 1.1,
        "kernel_id": "M4<f64>",
        "mhd_config": {
            "mhd_type": "none"
        },
        "particle_killing": [
            {
                "center": [
                    0.0,
                    0.0,
                    0.0
                ],
                "radius": 4.0,
                "type": "sphere"
            }
        ],
        "particle_reordering_step_freq": 1000,
        "save_dt_to_fields": false,
        "scheduler_config": {
            "merge_load_value": 0,
            "split_load_value": 0
        },
        "self_grav_config": {
            "softening_length": 1e-09,
            "softening_mode": "plummer",
            "type": "none"
        },
        "show_cfl_detail": false,
        "show_ghost_zone_graph": false,
        "show_neigh_stats": false,
        "smoothing_length_config": {
            "type": "density_based"
        },
        "time_state": {
            "cfl_multiplier": 0.01,
            "dt_sph": 0.0,
            "time": 0.0
        },
        "tree_reduction_level": 3,
        "type_id": "sycl::vec<f64,3>",
        "unit_sys": null,
        "use_two_stage_search": true
    }
]
------------------------------------
SPH setup: generating particles ...
SPH setup: Nstep = 735 ( 7.4e+02 ) Ntotal = 735 ( 7.4e+02 rank min = 1.3e+04 max = 7.4e+02) rate = 7.350000e+02 N.s^-1
SPH setup: the generation step took : 0.059121437000000006 s
SPH setup: final particle count = 735 beginning injection ...
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (56.6%)
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 735.0 min = 735.0 factor = 1
 - strategy "round robin" : max = 698.2 min = 698.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 735
    max = 735
    avg = 735
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 922.00 ns  (0.3%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 352.17 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.0%)
Info: patch count stable after 1 runs npatch = 1                      [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
SPH setup: injected          735 / 735 => 100.0% | ranks with patchs = 1 / 1  <- global loop -> (msg count : 0)
SPH setup: the injection step took : 0.004959177 s
Info: injection perf report:                                                    [SPH setup][rank=0]
+======+====================+=======+=============+=============+=============+
| rank | rank get (sum/max) |  MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+====================+=======+=============+=============+=============+
| 0    |      0.00s / 0.00s | 0.00s |   2.3% 0.0% |   134.92 MB |   460.80 kB |
+------+--------------------+-------+-------------+-------------+-------------+
SPH setup: the setup took : 0.065213729 s
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 (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 735.0 min = 735.0 factor = 1
 - strategy "round robin" : max = 698.2 min = 698.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 735
    max = 735
    avg = 735
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (1.1%)
   patch tree reduce : 390.00 ns  (0.1%)
   gen split merge   : 321.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 290.00 ns  (0.1%)
   LB compute        : 254.83 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 1.43 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.24 us    (66.3%)
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.13 unconverged cnt = 735
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.169 unconverged cnt = 735
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.21970000000000003 unconverged cnt = 334
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.28561000000000003 unconverged cnt = 2
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-735,-735,-735)
    sum a = (-4.2690460541616737e-19,1.0503208545953324e-18,-1.1519648082658485e-18)
    sum e = 1837.5
    sum de = -8.131516293641283e-20
Info: cfl dt = 0.13054316431416452 cfl multiplier : 0.01                       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1403e+04 |  735 |      1 | 6.445e-02 | 0.0% |   1.3% 0.0% |   134.92 MB |   460.80 kB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
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

Show the current solvergraph

subgraph cluster_1522 {
n_1500 [label="SetEdge"];
n_1500 -> e_4490 [style="dashed", color=red];
e_4490 [label="m",shape=rect, style=filled];
subgraph cluster_1509 {
n_1501 [label="SetEdge"];
n_1501 -> e_4486 [style="dashed", color=red];
e_4486 [label="patchdatas",shape=rect, style=filled];
n_1502 [label="GetObjCntFromLayer"];
e_4486 -> n_1502 [style="dashed", color=green];
e_4486 [label="patchdatas",shape=rect, style=filled];
n_1502 -> e_4487 [style="dashed", color=red];
e_4487 [label="Npart_patch",shape=rect, style=filled];
n_1503 [label="GetFieldRefFromLayer"];
e_4486 -> n_1503 [style="dashed", color=green];
e_4486 [label="patchdatas",shape=rect, style=filled];
n_1503 -> e_4491 [style="dashed", color=red];
e_4491 [label="xyz",shape=rect, style=filled];
n_1504 [label="GetFieldRefFromLayer"];
e_4486 -> n_1504 [style="dashed", color=green];
e_4486 [label="patchdatas",shape=rect, style=filled];
n_1504 -> e_4492 [style="dashed", color=red];
e_4492 [label="vxyz",shape=rect, style=filled];
n_1505 [label="GetFieldRefFromLayer"];
e_4486 -> n_1505 [style="dashed", color=green];
e_4486 [label="patchdatas",shape=rect, style=filled];
n_1505 -> e_4493 [style="dashed", color=red];
e_4493 [label="axyz",shape=rect, style=filled];
n_1506 [label="GetFieldRefFromLayer"];
e_4486 -> n_1506 [style="dashed", color=green];
e_4486 [label="patchdatas",shape=rect, style=filled];
n_1506 -> e_4494 [style="dashed", color=red];
e_4494 [label="uint",shape=rect, style=filled];
n_1507 [label="GetFieldRefFromLayer"];
e_4486 -> n_1507 [style="dashed", color=green];
e_4486 [label="patchdatas",shape=rect, style=filled];
n_1507 -> e_4495 [style="dashed", color=red];
e_4495 [label="duint",shape=rect, style=filled];
n_1508 [label="GetFieldRefFromLayer"];
e_4486 -> n_1508 [style="dashed", color=green];
e_4486 [label="patchdatas",shape=rect, style=filled];
n_1508 -> e_4496 [style="dashed", color=red];
e_4496 [label="hpart",shape=rect, style=filled];
n_1501 -> n_1502 [weight=3];
n_1502 -> n_1503 [weight=3];
n_1503 -> n_1504 [weight=3];
n_1504 -> n_1505 [weight=3];
n_1505 -> n_1506 [weight=3];
n_1506 -> n_1507 [weight=3];
n_1507 -> n_1508 [weight=3];
label = "attach fields";
}
subgraph cluster_1517 {
subgraph cluster_1512 {
n_1510 [label="ForwardEuler"];
e_4489 -> n_1510 [style="dashed", color=green];
e_4489 [label="dt_half",shape=rect, style=filled];
e_4493 -> n_1510 [style="dashed", color=green];
e_4493 [label="axyz",shape=rect, style=filled];
e_4487 -> n_1510 [style="dashed", color=green];
e_4487 [label="Npart_patch",shape=rect, style=filled];
n_1510 -> e_4492 [style="dashed", color=red];
e_4492 [label="vxyz",shape=rect, style=filled];
n_1511 [label="ForwardEuler"];
e_4489 -> n_1511 [style="dashed", color=green];
e_4489 [label="dt_half",shape=rect, style=filled];
e_4495 -> n_1511 [style="dashed", color=green];
e_4495 [label="duint",shape=rect, style=filled];
e_4487 -> n_1511 [style="dashed", color=green];
e_4487 [label="Npart_patch",shape=rect, style=filled];
n_1511 -> e_4494 [style="dashed", color=red];
e_4494 [label="uint",shape=rect, style=filled];
n_1510 -> n_1511 [weight=3];
label = "half step";
}
n_1516 [label="ForwardEuler"];
e_4488 -> n_1516 [style="dashed", color=green];
e_4488 [label="dt",shape=rect, style=filled];
e_4492 -> n_1516 [style="dashed", color=green];
e_4492 [label="vxyz",shape=rect, style=filled];
e_4487 -> n_1516 [style="dashed", color=green];
e_4487 [label="Npart_patch",shape=rect, style=filled];
n_1516 -> e_4491 [style="dashed", color=red];
e_4491 [label="xyz",shape=rect, style=filled];
subgraph cluster_1515 {
n_1513 [label="ForwardEuler"];
e_4489 -> n_1513 [style="dashed", color=green];
e_4489 [label="dt_half",shape=rect, style=filled];
e_4493 -> n_1513 [style="dashed", color=green];
e_4493 [label="axyz",shape=rect, style=filled];
e_4487 -> n_1513 [style="dashed", color=green];
e_4487 [label="Npart_patch",shape=rect, style=filled];
n_1513 -> e_4492 [style="dashed", color=red];
e_4492 [label="vxyz",shape=rect, style=filled];
n_1514 [label="ForwardEuler"];
e_4489 -> n_1514 [style="dashed", color=green];
e_4489 [label="dt_half",shape=rect, style=filled];
e_4495 -> n_1514 [style="dashed", color=green];
e_4495 [label="duint",shape=rect, style=filled];
e_4487 -> n_1514 [style="dashed", color=green];
e_4487 [label="Npart_patch",shape=rect, style=filled];
n_1514 -> e_4494 [style="dashed", color=red];
e_4494 [label="uint",shape=rect, style=filled];
n_1513 -> n_1514 [weight=3];
label = "half step";
}
n_1511 -> n_1516 [weight=3];
n_1516 -> n_1513 [weight=3];
label = "leapfrog predictor";
}
subgraph cluster_1521 {
n_1518 [label="FreeAlloc"];
n_1518 -> e_4497 [style="dashed", color=red];
e_4497 [label="part_to_remove",shape=rect, style=filled];
n_1519 [label="GetParticlesOutsideSphere"];
e_4491 -> n_1519 [style="dashed", color=green];
e_4491 [label="xyz",shape=rect, style=filled];
n_1519 -> e_4497 [style="dashed", color=red];
e_4497 [label="part_to_remove",shape=rect, style=filled];
n_1520 [label="KillParticles"];
e_4497 -> n_1520 [style="dashed", color=green];
e_4497 [label="part_to_remove",shape=rect, style=filled];
n_1520 -> e_4486 [style="dashed", color=red];
e_4486 [label="patchdatas",shape=rect, style=filled];
n_1518 -> n_1519 [weight=3];
n_1519 -> n_1520 [weight=3];
label = "part killing step";
}
n_1500 -> n_1501 [weight=3];
n_1508 -> n_1510 [weight=3];
n_1514 -> n_1518 [weight=3];
label = "time step";
}

Draw utilities#

117 import matplotlib.pyplot as plt
118 import numpy as np
119
120
121 def plot_state(iplot):
122     pos = ctx.collect_data()["xyz"]
123
124     if shamrock.sys.world_rank() == 0:
125         X = pos[:, 0]
126         Y = pos[:, 1]
127         Z = pos[:, 2]
128
129         plt.cla()
130
131         ax.set_xlim3d(bmin[0], bmax[0])
132         ax.set_ylim3d(bmin[1], bmax[1])
133         ax.set_zlim3d(bmin[2], bmax[2])
134
135         ax.scatter(X, Y, Z, s=1)
136
137         ax.minorticks_off()
138
139         ax.set_title(f"t = {model.get_time():.2f} ")
140
141         plt.savefig(os.path.join(dump_folder, f"{sim_name}_{iplot:04}.png"))

Run the simulation#

147 nstop = 28  # To be increased when empty simulations will be fixed
148 dt_stop = 0.1
149
150 t_stop = [i * dt_stop for i in range(nstop + 1)]
151
152 # Init MPL
153 fig = plt.figure(dpi=120)
154 ax = fig.add_subplot(111, projection="3d")
155
156 iplot = 0
157 istop = 0
158 for ttarg in t_stop:
159     model.evolve_until(ttarg)
160
161     # if do_plots:
162     plot_state(iplot)
163
164     iplot += 1
165     istop += 1
166
167 plt.close(fig)
Info: evolve_until (target_time = 0.00s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
Info: iteration since start : 1                                                       [SPH][rank=0]
Info: time since start : 409.13273702600003 (s)                                       [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
Info: evolve_until (target_time = 0.10s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0, dt = 0.1 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 735.0 min = 735.0 factor = 1
 - strategy "round robin" : max = 698.2 min = 698.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 735
    max = 735
    avg = 735
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.92 us   (3.2%)
   patch tree reduce : 2.00 us    (0.5%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 340.59 us  (90.8%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (76.1%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-734.9999999999987,-735.0000000000001,-734.9999999999998)
    sum a = (3.0560948736935156e-18,-6.057979638762756e-18,9.486769009248164e-20)
    sum e = 1837.5000000099571
    sum de = -5.692061405548898e-19
Info: cfl dt = 4.4384722909924195 cfl multiplier : 0.34                        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 4.2150e+04 |  735 |      1 | 1.744e-02 | 0.2% |   1.7% 0.0% |   134.92 MB |   460.80 kB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20644.87359401959 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 2                                                       [SPH][rank=0]
Info: time since start : 409.277549967 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
Info: evolve_until (target_time = 0.20s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.1, dt = 0.1 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 735.0 min = 735.0 factor = 1
 - strategy "round robin" : max = 698.2 min = 698.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 735
    max = 735
    avg = 735
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.35 us   (4.5%)
   patch tree reduce : 1.91 us    (0.8%)
   gen split merge   : 1.06 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 228.04 us  (90.4%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.34 us    (65.1%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-734.9999999999992,-734.9999999999995,-735.0000000000003)
    sum a = (-2.4191260973582818e-18,2.7037291676357267e-18,1.3688052427629493e-18)
    sum e = 1837.5000000099576
    sum de = -4.851804721872632e-18
Info: cfl dt = 7.310448194870652 cfl multiplier : 0.56                         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 4.4272e+04 |  735 |      1 | 1.660e-02 | 0.1% |   1.3% 0.0% |   134.92 MB |   460.80 kB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21684.0743604734 (tsim/hr)                              [sph::Model][rank=0]
Info: iteration since start : 3                                                       [SPH][rank=0]
Info: time since start : 409.41203112100004 (s)                                       [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
Info: evolve_until (target_time = 0.30s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.2, dt = 0.10000000000000003 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 735.0 min = 735.0 factor = 1
 - strategy "round robin" : max = 698.2 min = 698.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 735
    max = 735
    avg = 735
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.05 us   (3.9%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 651.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 261.07 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.37 us    (68.8%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-734.999999999999,-735.0000000000013,-735.0000000000005)
    sum a = (-1.1221492485224971e-17,1.7618285302889447e-19,-9.486769009248164e-20)
    sum e = 1837.500000009957
    sum de = 2.0057740190981832e-18
Info: cfl dt = 9.225138276950846 cfl multiplier : 0.7066666666666667           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.6401e+04 |  735 |      1 | 2.019e-02 | 0.1% |   1.2% 0.0% |   134.92 MB |   460.80 kB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17828.900499134932 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 4                                                       [SPH][rank=0]
Info: time since start : 409.55284964500004 (s)                                       [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
Info: evolve_until (target_time = 0.40s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.30000000000000004, dt = 0.09999999999999998 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 735.0 min = 735.0 factor = 1
 - strategy "round robin" : max = 698.2 min = 698.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 735
    max = 735
    avg = 735
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.83 us   (4.3%)
   patch tree reduce : 1.78 us    (0.7%)
   gen split merge   : 881.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 245.80 us  (90.3%)
   LB move op cnt    : 0
   LB apply          : 4.70 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.31 us    (67.9%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-735.0000000000007,-735,-734.9999999999999)
    sum a = (6.776263578034403e-21,-5.082197683525802e-19,-3.1170812458958252e-19)
    sum e = 1837.5000000099562
    sum de = -7.15573433840433e-18
Info: cfl dt = 10.501650417394146 cfl multiplier : 0.8044444444444444          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.7395e+04 |  735 |      1 | 1.966e-02 | 0.1% |   1.3% 0.0% |   134.92 MB |   460.80 kB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18315.812223850968 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 5                                                       [SPH][rank=0]
Info: time since start : 409.69320607400005 (s)                                       [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
Info: evolve_until (target_time = 0.50s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.4, dt = 0.09999999999999998 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 735.0 min = 735.0 factor = 1
 - strategy "round robin" : max = 698.2 min = 698.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 735
    max = 735
    avg = 735
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.45 us   (4.4%)
   patch tree reduce : 1.75 us    (0.7%)
   gen split merge   : 3.23 us    (1.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.4%)
   LB compute        : 232.04 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (68.3%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-735,-734.9999999999993,-735)
    sum a = (3.8624702394796095e-18,4.472333961502706e-19,1.260385025514399e-18)
    sum e = 1837.5000000099562
    sum de = 6.80336863234654e-18
Info: cfl dt = 11.352721173598157 cfl multiplier : 0.8696296296296296          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.4845e+04 |  735 |      1 | 2.109e-02 | 0.1% |   0.8% 0.0% |   134.92 MB |   460.80 kB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17066.788030492655 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 6                                                       [SPH][rank=0]
Info: time since start : 409.83119159700004 (s)                                       [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
Info: evolve_until (target_time = 0.60s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.5, dt = 0.10000000000000009 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 735.0 min = 735.0 factor = 1
 - strategy "round robin" : max = 698.2 min = 698.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 735
    max = 735
    avg = 735
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 13.72 us   (5.2%)
   patch tree reduce : 2.40 us    (0.9%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.5%)
   LB compute        : 234.81 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (68.0%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-735.0000000000003,-734.9999999999999,-735.0000000000003)
    sum a = (-1.0611628763201875e-17,3.9979955110402976e-18,-1.4501204056993622e-18)
    sum e = 1837.5000000099565
    sum de = 9.703609443745265e-18
Info: cfl dt = 11.920173864876189 cfl multiplier : 0.9130864197530864          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.7572e+04 |  735 |      1 | 1.956e-02 | 0.1% |   1.0% 0.0% |   134.92 MB |   460.80 kB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18402.538977855525 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 7                                                       [SPH][rank=0]
Info: time since start : 409.96891247300005 (s)                                       [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
Info: evolve_until (target_time = 0.70s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.6000000000000001, dt = 0.09999999999999998 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 735.0 min = 735.0 factor = 1
 - strategy "round robin" : max = 698.2 min = 698.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 735
    max = 735
    avg = 735
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.02 us   (4.7%)
   patch tree reduce : 2.39 us    (0.9%)
   gen split merge   : 951.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.5%)
   LB compute        : 231.72 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.32 us    (65.3%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-735.0000000000002,-734.9999999999997,-735.0000000000002)
    sum a = (5.265156800132731e-18,3.1374100366299285e-18,-7.860465750519907e-19)
    sum e = 1837.5000000099549
    sum de = -1.235990476633475e-17
Info: cfl dt = 12.298556869664226 cfl multiplier : 0.9420576131687243          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.8155e+04 |  735 |      1 | 1.926e-02 | 0.1% |   1.1% 0.0% |   134.92 MB |   460.80 kB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18688.378963779218 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 8                                                       [SPH][rank=0]
Info: time since start : 410.105695669 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
Info: evolve_until (target_time = 0.80s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.7000000000000001, dt = 0.09999999999999998 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 735.0 min = 735.0 factor = 1
 - strategy "round robin" : max = 698.2 min = 698.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 735
    max = 735
    avg = 735
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.66 us   (4.3%)
   patch tree reduce : 2.34 us    (0.9%)
   gen split merge   : 921.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.4%)
   LB compute        : 246.28 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.32 us    (68.0%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-734.9999999999997,-734.9999999999994,-734.9999999999999)
    sum a = (3.3542504711270293e-18,-1.6805133673525319e-18,-1.260385025514399e-18)
    sum e = 1837.500000009954
    sum de = -5.827586677109586e-18
Info: cfl dt = 12.55090223978563 cfl multiplier : 0.9613717421124829           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0830e+04 |  735 |      1 | 2.384e-02 | 0.1% |   0.8% 0.0% |   134.92 MB |   460.80 kB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15100.284132818571 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 9                                                       [SPH][rank=0]
Info: time since start : 410.247399614 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
Info: evolve_until (target_time = 0.90s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.8, dt = 0.09999999999999998 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 735.0 min = 735.0 factor = 1
 - strategy "round robin" : max = 698.2 min = 698.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 735
    max = 735
    avg = 735
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.46 us   (3.9%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 270.23 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.26 us    (66.7%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-735.0000000000007,-735.0000000000002,-734.9999999999997)
    sum a = (-2.7037291676357267e-18,1.7211709488207383e-18,6.776263578034403e-19)
    sum e = 1837.5000000099546
    sum de = -9.839134715305953e-18
Info: cfl dt = 12.719231298543182 cfl multiplier : 0.9742478280749886          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.5847e+04 |  735 |      1 | 2.050e-02 | 0.1% |   0.8% 0.0% |   134.92 MB |   460.80 kB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17557.554884185 (tsim/hr)                               [sph::Model][rank=0]
Info: iteration since start : 10                                                      [SPH][rank=0]
Info: time since start : 410.38476171 (s)                                             [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
Info: evolve_until (target_time = 1.00s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.9, dt = 0.09999999999999998 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 735.0 min = 735.0 factor = 1
 - strategy "round robin" : max = 698.2 min = 698.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 735
    max = 735
    avg = 735
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.36 us   (4.5%)
   patch tree reduce : 1.87 us    (0.7%)
   gen split merge   : 971.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.4%)
   LB compute        : 227.76 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.33 us    (66.2%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-735.0000000000008,-735.0000000000001,-735.0000000000001)
    sum a = (1.2807138162485021e-18,1.917682592583736e-18,-9.893344823930228e-19)
    sum e = 1837.5000000099558
    sum de = 6.179952383167375e-18
Info: cfl dt = 12.831558291123326 cfl multiplier : 0.9828318853833258          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.7716e+04 |  735 |      1 | 1.949e-02 | 0.1% |   0.8% 0.0% |   134.92 MB |   460.80 kB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18473.298847789556 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 11                                                      [SPH][rank=0]
Info: time since start : 410.521939218 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
Info: evolve_until (target_time = 1.10s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 1, dt = 0.10000000000000009 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 735.0 min = 735.0 factor = 1
 - strategy "round robin" : max = 698.2 min = 698.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 735
    max = 735
    avg = 735
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.27 us   (4.5%)
   patch tree reduce : 1.67 us    (0.7%)
   gen split merge   : 1.03 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.4%)
   LB compute        : 225.50 us  (90.3%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (68.1%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-734.9999999999998,-735.0000000000013,-734.9999999999998)
    sum a = (4.851804721872632e-18,4.004771774618332e-18,3.279711571768651e-18)
    sum e = 1837.5000000099549
    sum de = 3.333921680392926e-18
Info: cfl dt = 12.906559440326545 cfl multiplier : 0.9885545902555505          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.6532e+04 |  735 |      1 | 2.012e-02 | 0.1% |   0.9% 0.0% |   134.92 MB |   460.80 kB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17893.386728524783 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 12                                                      [SPH][rank=0]
Info: time since start : 410.659272712 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
Info: evolve_until (target_time = 1.20s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 1.1, dt = 0.10000000000000009 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 735.0 min = 735.0 factor = 1
 - strategy "round robin" : max = 698.2 min = 698.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 735
    max = 735
    avg = 735
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.90 us   (4.3%)
   patch tree reduce : 1.78 us    (0.7%)
   gen split merge   : 991.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.5%)
   LB compute        : 226.01 us  (90.2%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.07 us    (62.9%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-734.9999999999995,-735.0000000000002,-735.0000000000001)
    sum a = (-2.4123498337802474e-18,-7.386127300057499e-19,-4.2012834183813297e-19)
    sum e = 1837.5000000099526
    sum de = -4.689174395999807e-18
Info: cfl dt = 12.956685627293247 cfl multiplier : 0.9923697268370336          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.8117e+04 |  735 |      1 | 1.928e-02 | 0.1% |   1.1% 0.0% |   134.92 MB |   460.80 kB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18669.732789968064 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 13                                                      [SPH][rank=0]
Info: time since start : 410.79533008600004 (s)                                       [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
Info: evolve_until (target_time = 1.30s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 1.2000000000000002, dt = 0.09999999999999987 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 735.0 min = 735.0 factor = 1
 - strategy "round robin" : max = 698.2 min = 698.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 735
    max = 735
    avg = 735
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.86 us   (2.5%)
   patch tree reduce : 2.14 us    (0.5%)
   gen split merge   : 1.09 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.2%)
   LB compute        : 414.31 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.34 us    (67.3%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-735.0000000000005,-735.0000000000006,-735.0000000000005)
    sum a = (-3.9302328752599536e-18,6.369687763352339e-19,-1.6805133673525319e-18)
    sum e = 1837.500000009954
    sum de = -1.9786689647860456e-18
Info: cfl dt = 12.990237500990501 cfl multiplier : 0.9949131512246892          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.7597e+04 |  735 |      1 | 1.955e-02 | 0.1% |   0.9% 0.0% |   134.92 MB |   460.80 kB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18415.09653244753 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 14                                                      [SPH][rank=0]
Info: time since start : 410.931229782 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
Info: evolve_until (target_time = 1.40s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 1.3, dt = 0.10000000000000009 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 735.0 min = 735.0 factor = 1
 - strategy "round robin" : max = 698.2 min = 698.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 735
    max = 735
    avg = 735
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.93 us   (4.3%)
   patch tree reduce : 1.92 us    (0.8%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.5%)
   LB compute        : 228.64 us  (90.3%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 us    (67.1%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-735.0000000000003,-735.0000000000008,-734.9999999999995)
    sum a = (4.235164736271502e-18,9.554531645028508e-19,-5.014435047745458e-19)
    sum e = 1837.5000000099512
    sum de = 8.673617379884035e-19
Info: cfl dt = 13.012748880137558 cfl multiplier : 0.9966087674831261          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.7706e+04 |  735 |      1 | 1.949e-02 | 0.1% |   1.0% 0.0% |   134.92 MB |   460.80 kB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18468.165218052873 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 15                                                      [SPH][rank=0]
Info: time since start : 411.067902973 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
Info: evolve_until (target_time = 1.50s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 1.4000000000000001, dt = 0.09999999999999987 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 735.0 min = 735.0 factor = 1
 - strategy "round robin" : max = 698.2 min = 698.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 735
    max = 735
    avg = 735
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.37 us   (4.3%)
   patch tree reduce : 2.12 us    (0.8%)
   gen split merge   : 1.07 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.4%)
   LB compute        : 239.97 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.05 us    (62.9%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-734.9999999999993,-735.0000000000002,-735.0000000000001)
    sum a = (-4.655293078109635e-18,-2.2768245622195593e-18,-8.402566836762659e-19)
    sum e = 1837.5000000099517
    sum de = 2.168404344971009e-19
Info: cfl dt = 13.027909020178885 cfl multiplier : 0.997739178322084           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.8587e+04 |  735 |      1 | 1.905e-02 | 0.1% |   1.1% 0.0% |   134.92 MB |   460.80 kB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18899.68650145013 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 16                                                      [SPH][rank=0]
Info: time since start : 411.203979596 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
Info: evolve_until (target_time = 1.60s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 1.5, dt = 0.10000000000000009 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 735.0 min = 735.0 factor = 1
 - strategy "round robin" : max = 698.2 min = 698.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 735
    max = 735
    avg = 735
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.81 us   (4.3%)
   patch tree reduce : 1.81 us    (0.7%)
   gen split merge   : 972.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 226.77 us  (90.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.08 us    (63.9%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-734.9999999999993,-735.0000000000014,-735.0000000000001)
    sum a = (1.2739375526704677e-18,-6.030874584450618e-19,2.303929616531697e-19)
    sum e = 1837.5000000099483
    sum de = 1.5178830414797062e-18
Info: cfl dt = 13.0381774585845 cfl multiplier : 0.998492785548056             [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.5760e+04 |  735 |      1 | 2.055e-02 | 0.1% |   0.9% 0.0% |   134.92 MB |   460.80 kB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17514.95059154071 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 17                                                      [SPH][rank=0]
Info: time since start : 411.341401592 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
Info: evolve_until (target_time = 1.70s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 1.6, dt = 0.10000000000000009 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 735.0 min = 735.0 factor = 1
 - strategy "round robin" : max = 698.2 min = 698.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 735
    max = 735
    avg = 735
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.06 us   (4.3%)
   patch tree reduce : 1.94 us    (0.8%)
   gen split merge   : 941.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.5%)
   LB compute        : 230.54 us  (90.4%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.14 us    (66.3%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-734.9999999999997,-735,-734.9999999999999)
    sum a = (2.2632720350634905e-18,1.6872896309305663e-18,-7.724940478959219e-19)
    sum e = 1837.5000000099478
    sum de = 1.3552527156068805e-18
Info: cfl dt = 13.04519391302014 cfl multiplier : 0.9989951903653708           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.7349e+04 |  735 |      1 | 1.968e-02 | 0.1% |   1.2% 0.0% |   134.92 MB |   460.80 kB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18293.34847751576 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 18                                                      [SPH][rank=0]
Info: time since start : 411.47799528200005 (s)                                       [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
Info: evolve_until (target_time = 1.80s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 1.7000000000000002, dt = 0.09999999999999987 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 735.0 min = 735.0 factor = 1
 - strategy "round robin" : max = 698.2 min = 698.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 735
    max = 735
    avg = 735
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.50 us   (3.9%)
   patch tree reduce : 1.74 us    (0.6%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.4%)
   LB compute        : 245.94 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.27 us    (67.6%)
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.29624455421092516 unconverged cnt = 4
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-723.9990621681544,-723.9989589588944,-723.999080836305)
    sum a = (-4.221612209115433e-18,-2.7376104855258987e-18,1.938011383317839e-18)
    sum e = 1809.9971019165425
    sum de = 9.107298248878237e-18
Info: cfl dt = 12.89661811090233 cfl multiplier : 0.9993301269102473           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2310e+04 |  724 |      1 | 3.245e-02 | 0.0% |   1.1% 0.0% |   134.92 MB |   460.80 kB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11093.556243143743 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 19                                                      [SPH][rank=0]
Info: time since start : 411.62799231900004 (s)                                       [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
Info: evolve_until (target_time = 1.90s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 1.8, dt = 0.10000000000000009 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 724.0 min = 724.0 factor = 1
 - strategy "round robin" : max = 687.8 min = 687.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 724
    max = 724
    avg = 724
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.17 us   (3.7%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 882.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.3%)
   LB compute        : 275.41 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (70.0%)
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.3005616719262014 unconverged cnt = 19
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-681.9968714883288,-681.9966204670972,-681.9967286191298)
    sum a = (-3.23227772672241e-18,1.260385025514399e-18,1.1248597539537109e-18)
    sum e = 1704.9902204838565
    sum de = -9.812029660993815e-18
Info: cfl dt = 12.78961555022715 cfl multiplier : 0.9995534179401648           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.1647e+04 |  682 |      1 | 3.151e-02 | 0.1% |   1.3% 0.0% |   134.92 MB |   460.80 kB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11426.718849105964 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 20                                                      [SPH][rank=0]
Info: time since start : 411.77602000400003 (s)                                       [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
Info: evolve_until (target_time = 2.00s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 1.9000000000000001, dt = 0.09999999999999987 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 682.0 min = 682.0 factor = 1
 - strategy "round robin" : max = 647.9 min = 647.9 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 682
    max = 682
    avg = 682
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.08 us   (4.5%)
   patch tree reduce : 1.72 us    (0.7%)
   gen split merge   : 951.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 224.70 us  (90.4%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.29 us    (65.8%)
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.2962597061448628 unconverged cnt = 34
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.29755427911452514 unconverged cnt = 2
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-612.9949011129379,-612.9946819821328,-612.9947797392336)
    sum a = (-1.043544591017298e-18,-3.3406979439709605e-18,1.8973538018496328e-19)
    sum e = 1532.484362757863
    sum de = -1.0842021724855044e-19
Info: cfl dt = 12.861008218464523 cfl multiplier : 0.9997022786267765          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2551e+04 |  613 |      1 | 4.884e-02 | 0.0% |   1.4% 0.0% |   134.92 MB |   460.80 kB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7370.843172043988 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 21                                                      [SPH][rank=0]
Info: time since start : 411.939988411 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
Info: evolve_until (target_time = 2.10s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 2, dt = 0.10000000000000009 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 613.0 min = 613.0 factor = 1
 - strategy "round robin" : max = 582.4 min = 582.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 613
    max = 613
    avg = 613
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.33 us   (4.1%)
   patch tree reduce : 1.93 us    (0.8%)
   gen split merge   : 791.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.5%)
   LB compute        : 226.40 us  (90.4%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.04 us    (63.8%)
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.3067183489629737 unconverged cnt = 47
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.307306761640605 unconverged cnt = 2
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-532.9935533115207,-532.9935945920531,-532.9934668702186)
    sum a = (-3.3881317890172014e-19,-1.8973538018496328e-19,-3.7947076036992655e-19)
    sum e = 1332.4806147210948
    sum de = -2.6291902682773483e-18
Info: cfl dt = 12.68539798388675 cfl multiplier : 0.9998015190845176           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2214e+04 |  533 |      1 | 4.364e-02 | 0.0% |   1.4% 0.0% |   134.92 MB |   460.80 kB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8249.621823586243 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 22                                                      [SPH][rank=0]
Info: time since start : 412.09655423600003 (s)                                       [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
Info: evolve_until (target_time = 2.20s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 2.1, dt = 0.10000000000000009 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 533.0 min = 533.0 factor = 1
 - strategy "round robin" : max = 506.3 min = 506.3 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 533
    max = 533
    avg = 533
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.79 us   (4.3%)
   patch tree reduce : 1.99 us    (0.8%)
   gen split merge   : 1.05 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 228.82 us  (90.4%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.11 us    (64.5%)
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.2962764478718124 unconverged cnt = 55
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.31069429926209985 unconverged cnt = 2
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-433.9927338736061,-433.99250861466425,-433.99249597858295)
    sum a = (2.4868887331386258e-18,-2.7308342219478643e-18,-7.453889935837843e-19)
    sum e = 1084.9777384174886
    sum de = 3.06287113727155e-18
Info: cfl dt = 12.731993623699791 cfl multiplier : 0.9998676793896785          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 9.4709e+03 |  434 |      1 | 4.582e-02 | 0.0% |   1.3% 0.0% |   134.92 MB |   460.80 kB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7856.06278879624 (tsim/hr)                              [sph::Model][rank=0]
Info: iteration since start : 23                                                      [SPH][rank=0]
Info: time since start : 412.251861027 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
Info: evolve_until (target_time = 2.30s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 2.2, dt = 0.10000000000000009 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 434.0 min = 434.0 factor = 1
 - strategy "round robin" : max = 412.3 min = 412.3 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 434
    max = 434
    avg = 434
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.92 us   (4.4%)
   patch tree reduce : 1.77 us    (0.7%)
   gen split merge   : 862.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.4%)
   LB compute        : 221.90 us  (90.3%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.13 us    (63.9%)
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.310950072983323 unconverged cnt = 57
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.31560777249532096 unconverged cnt = 4
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-341.99193142018476,-341.9921450989848,-341.9925044093816)
    sum a = (2.3784685158900754e-18,-1.0164395367051604e-19,-5.963111948670274e-19)
    sum e = 854.9765809341825
    sum de = 5.5294310796760726e-18
Info: cfl dt = 12.667051368296768 cfl multiplier : 0.9999117862597856          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 8.1345e+03 |  342 |      1 | 4.204e-02 | 0.0% |   1.4% 0.0% |   134.92 MB |   460.80 kB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8562.62028548966 (tsim/hr)                              [sph::Model][rank=0]
Info: iteration since start : 24                                                      [SPH][rank=0]
Info: time since start : 412.398316217 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
Info: evolve_until (target_time = 2.40s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 2.3000000000000003, dt = 0.10000000000000009 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 342.0 min = 342.0 factor = 1
 - strategy "round robin" : max = 324.9 min = 324.9 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 342
    max = 342
    avg = 342
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.00 us   (4.4%)
   patch tree reduce : 2.10 us    (0.8%)
   gen split merge   : 761.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 227.02 us  (90.4%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 us    (65.9%)
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.30201844852987103 unconverged cnt = 56
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.32857648069500406 unconverged cnt = 7
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.3614341287645045 unconverged cnt = 1
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-245.9921769555506,-245.99263707959494,-245.99229063406636)
    sum a = (-1.0638733817514012e-18,-1.6398557858843255e-18,-2.710505431213761e-20)
    sum e = 614.9771046889905
    sum de = 1.4365678785432934e-18
Info: cfl dt = 12.50243532668346 cfl multiplier : 0.9999411908398571           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 4.6089e+03 |  246 |      1 | 5.338e-02 | 0.0% |   1.2% 0.0% |   134.92 MB |   460.80 kB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6744.680638997044 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 25                                                      [SPH][rank=0]
Info: time since start : 412.55124662500003 (s)                                       [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
Info: evolve_until (target_time = 2.50s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 2.4000000000000004, dt = 0.09999999999999964 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 246.0 min = 246.0 factor = 1
 - strategy "round robin" : max = 233.7 min = 233.7 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 246
    max = 246
    avg = 246
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.05 us   (4.2%)
   patch tree reduce : 1.53 us    (0.6%)
   gen split merge   : 772.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.5%)
   LB compute        : 217.46 us  (90.8%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.03 us    (64.0%)
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.3277421878427072 unconverged cnt = 53
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.34357314083155893 unconverged cnt = 10
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-166.99278662167782,-166.99320940422416,-166.99324858622313)
    sum a = (-1.4840017235895342e-18,-7.182839392716467e-19,5.55653613398821e-19)
    sum e = 417.47924469434525
    sum de = 2.3852447794681098e-18
Info: cfl dt = 12.481349233596452 cfl multiplier : 0.999960793893238           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 4.2073e+03 |  167 |      1 | 3.969e-02 | 0.0% |   1.3% 0.0% |   134.92 MB |   460.80 kB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9069.638726813153 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 26                                                      [SPH][rank=0]
Info: time since start : 412.68697897000004 (s)                                       [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
Info: evolve_until (target_time = 2.60s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 2.5, dt = 0.10000000000000009 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 167.0 min = 167.0 factor = 1
 - strategy "round robin" : max = 158.7 min = 158.7 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 167
    max = 167
    avg = 167
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.17 us   (4.5%)
   patch tree reduce : 1.86 us    (0.7%)
   gen split merge   : 941.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.4%)
   LB compute        : 224.47 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.01 us    (63.9%)
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.30588112681599167 unconverged cnt = 40
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.33646923949759083 unconverged cnt = 17
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.36630356642675005 unconverged cnt = 5
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-91.99460804607467,-91.99491947485237,-91.99457795712206)
    sum a = (-4.472333961502706e-19,-2.642742795433417e-19,-8.131516293641283e-20)
    sum e = 229.98410556558173
    sum de = 2.439454888092385e-19
Info: cfl dt = 12.185082235929789 cfl multiplier : 0.999973862595492           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.8256e+03 |   92 |      1 | 5.039e-02 | 0.0% |   1.5% 0.0% |   134.92 MB |   460.80 kB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7143.7553567003115 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 27                                                      [SPH][rank=0]
Info: time since start : 412.829273885 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
Info: evolve_until (target_time = 2.70s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 2.6, dt = 0.10000000000000009 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 92.0 min = 92.0 factor = 1
 - strategy "round robin" : max = 87.4 min = 87.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 92
    max = 92
    avg = 92
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.38 us   (4.6%)
   patch tree reduce : 1.97 us    (0.8%)
   gen split merge   : 551.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.4%)
   LB compute        : 220.73 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.10 us    (64.7%)
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.3332273933879859 unconverged cnt = 28
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.36655013272678455 unconverged cnt = 18
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.40320514599946305 unconverged cnt = 9
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-43.996389524961266,-43.996148049667234,-43.996195016207054)
    sum a = (-9.486769009248164e-20,1.3552527156068805e-19,1.3552527156068805e-20)
    sum e = 109.9887327309434
    sum de = 2.981555974335137e-19
Info: cfl dt = 11.902519640066302 cfl multiplier : 0.9999825750636614          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 8.8020e+02 |   44 |      1 | 4.999e-02 | 0.0% |   1.2% 0.0% |   134.92 MB |   460.80 kB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7201.658830094931 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 28                                                      [SPH][rank=0]
Info: time since start : 412.967803016 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
Info: evolve_until (target_time = 2.80s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 2.7, dt = 0.10000000000000009 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 44.0 min = 44.0 factor = 1
 - strategy "round robin" : max = 41.8 min = 41.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 44
    max = 44
    avg = 44
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.23 us    (3.4%)
   patch tree reduce : 1.69 us    (0.6%)
   gen split merge   : 661.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.3%)
   LB compute        : 246.58 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (73.0%)
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.31758086030088317 unconverged cnt = 11
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.3493389463309715 unconverged cnt = 11
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.3842728409640687 unconverged cnt = 11
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.4227001250604756 unconverged cnt = 11
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.4649701375665232 unconverged cnt = 8
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.5114671513231756 unconverged cnt = 7
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.5610681639786609 unconverged cnt = 3
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.609277261524694 unconverged cnt = 3
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-10.998438229211487,-10.998627137787167,-10.998397802857001)
    sum a = (6.098637220230962e-20,-3.3881317890172014e-21,0)
    sum e = 27.495463315833934
    sum de = -7.453889935837843e-20
Info: cfl dt = 15.643421624235623 cfl multiplier : 0.9999883833757742          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.1161e+02 |   11 |      1 | 9.855e-02 | 0.0% |   1.0% 0.0% |   134.92 MB |   460.80 kB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3652.7861199971926 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 29                                                      [SPH][rank=0]
Info: time since start : 413.152254625 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]

Convert PNG sequence to Image sequence in mpl#

173 import matplotlib.animation as animation
174 from shamrock.utils.plot import show_image_sequence
175
176 # If the animation is not returned only a static image will be shown in the doc
177 glob_str = os.path.join(dump_folder, f"{sim_name}_*.png")
178 ani = show_image_sequence(glob_str, render_gif=render_gif)
179
180 if render_gif and shamrock.sys.world_rank() == 0:
181     # To save the animation using Pillow as a gif
182     # writer = animation.PillowWriter(fps=15,
183     #                                 metadata=dict(artist='Me'),
184     #                                 bitrate=1800)
185     # ani.save('scatter.gif', writer=writer)
186
187     # Show the animation
188     plt.show()

Total running time of the script: (0 minutes 8.865 seconds)

Estimated memory usage: 159 MB

Gallery generated by Sphinx-Gallery