Sphere advection with multiple patch#

This simple example demonstrate how Shamrock decompose the simulation domain

 8 import shamrock
 9
10 # Particle tracking is an experimental feature
11 shamrock.enable_experimental_features()
12
13 # If we use the shamrock executable to run this script instead of the python interpreter,
14 # we should not initialize the system as the shamrock executable needs to handle specific MPI logic
15 if not shamrock.sys.is_initialized():
16     shamrock.change_loglevel(1)
17     shamrock.sys.init("0:0")

Setup parameters#

23 dr = 0.05
24 pmass = 1
25
26 C_cour = 0.3
27 C_force = 0.25
28
29 bsize = 4
30
31 render_gif = True
32
33 dump_folder = "_to_trash"
34 sim_name = "sphere_domain_decomp"
35
36
37 def is_in_sphere(pt):
38     x, y, z = pt
39     return (x**2 + y**2 + z**2) < 1
40
41
42 import os
43
44 # Create the dump directory if it does not exist
45 if shamrock.sys.world_rank() == 0:
46     os.makedirs(dump_folder, exist_ok=True)

Setup the simulation#

52 ctx = shamrock.Context()
53 ctx.pdata_layout_new()
54
55 model = shamrock.get_Model_SPH(context=ctx, vector_type="f64_3", sph_kernel="M4")
56
57 cfg = model.gen_default_config()
58 # cfg.set_artif_viscosity_VaryingMM97(alpha_min = 0.1,alpha_max = 1,sigma_decay = 0.1, alpha_u = 1, beta_AV = 2)
59 # cfg.set_artif_viscosity_ConstantDisc(alpha_u=alpha_u, alpha_AV=alpha_AV, beta_AV=beta_AV)
60 # cfg.set_eos_locally_isothermalLP07(cs0=cs0, q=q, r0=r0)
61 cfg.set_artif_viscosity_VaryingCD10(
62     alpha_min=0.0, alpha_max=1, sigma_decay=0.1, alpha_u=1, beta_AV=2
63 )
64 cfg.set_particle_tracking(True)
65 cfg.set_boundary_periodic()
66 cfg.set_eos_adiabatic(1.00001)
67 cfg.print_status()
68 model.set_solver_config(cfg)
69
70 model.init_scheduler(int(500), 50)
71 # model.init_scheduler(int(300), 50)
72
73 bmin = (-bsize, -bsize, -bsize)
74 bmax = (bsize, bsize, bsize)
75 model.resize_simulation_box(bmin, bmax)
76
77 model.set_particle_mass(pmass)
78
79 setup = model.get_setup()
80 lat = setup.make_generator_lattice_hcp(dr, (-bsize, -bsize, -bsize), (bsize, bsize, bsize))
81
82 thesphere = setup.make_modifier_filter(parent=lat, filter=is_in_sphere)
83
84 offset_sphere = setup.make_modifier_offset(
85     parent=thesphere, offset_position=(3.0, 3.0, 3.0), offset_velocity=(-1.0, -1.0, -1.0)
86 )
87
88 setup.apply_setup(offset_sphere)
89
90 model.set_value_in_a_box("uint", "f64", 1, bmin, bmax)
91
92 model.set_cfl_cour(C_cour)
93 model.set_cfl_force(C_force)
94
95 model.change_htolerance(1.3)
96 model.timestep()
97 model.change_htolerance(1.1)
----- SPH Solver configuration -----
[
    {
        "artif_viscosity": {
            "alpha_max": 1.0,
            "alpha_min": 0.0,
            "alpha_u": 1.0,
            "av_type": "varying_cd10",
            "beta_AV": 2.0,
            "sigma_decay": 0.1
        },
        "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,
        "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": [],
        "particle_reordering_step_freq": 1000,
        "save_dt_to_fields": false,
        "self_grav_config": {
            "softening_length": 1e-09,
            "softening_mode": "plummer",
            "type": "none"
        },
        "show_ghost_zone_graph": false,
        "show_neigh_stats": false,
        "smoothing_length_config": {
            "type": "density_based"
        },
        "time_state": {
            "cfl_multiplier": 0.01,
            "dt_sph": 0.0,
            "time": 0.0
        },
        "tree_reduction_level": 3,
        "type_id": "sycl::vec<f64,3>",
        "unit_sys": null,
        "use_two_stage_search": true
    }
]
------------------------------------
SPH setup: generating particles ...
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 0 ( 0.0e+00 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 7 ( 7.0e+00 ) rate = 6.084100e+03 N.s^-1
SPH setup: Nstep = 12 ( 1.2e+01 ) Ntotal = 19 ( 1.9e+01 ) rate = 7.304517e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 19 ( 1.9e+01 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 19 ( 1.9e+01 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 25 ( 2.5e+01 ) rate = 5.500812e+03 N.s^-1
SPH setup: Nstep = 11 ( 1.1e+01 ) Ntotal = 36 ( 3.6e+01 ) rate = 7.106393e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 36 ( 3.6e+01 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 36 ( 3.6e+01 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 40 ( 4.0e+01 ) rate = 3.709594e+03 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 47 ( 4.7e+01 ) rate = 6.572585e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 47 ( 4.7e+01 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 47 ( 4.7e+01 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 51 ( 5.1e+01 ) rate = 3.649941e+03 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 54 ( 5.4e+01 ) rate = 2.832810e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 54 ( 5.4e+01 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 54 ( 5.4e+01 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 61 ( 6.1e+01 ) rate = 4.495941e+03 N.s^-1
SPH setup: Nstep = 10 ( 1.0e+01 ) Ntotal = 71 ( 7.1e+01 ) rate = 9.187680e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 71 ( 7.1e+01 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 71 ( 7.1e+01 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 80 ( 8.0e+01 ) rate = 8.158374e+03 N.s^-1
SPH setup: Nstep = 10 ( 1.0e+01 ) Ntotal = 90 ( 9.0e+01 ) rate = 9.441453e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 90 ( 9.0e+01 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 90 ( 9.0e+01 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 90 ( 9.0e+01 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 90 ( 9.0e+01 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 90 ( 9.0e+01 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 90 ( 9.0e+01 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 90 ( 9.0e+01 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 90 ( 9.0e+01 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 90 ( 9.0e+01 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 90 ( 9.0e+01 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 11 ( 1.1e+01 ) Ntotal = 101 ( 1.0e+02 ) rate = 6.217552e+03 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 109 ( 1.1e+02 ) rate = 7.377787e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 109 ( 1.1e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 109 ( 1.1e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 11 ( 1.1e+01 ) Ntotal = 120 ( 1.2e+02 ) rate = 1.049620e+04 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 128 ( 1.3e+02 ) rate = 7.919875e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 128 ( 1.3e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 128 ( 1.3e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 130 ( 1.3e+02 ) rate = 1.900317e+03 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 131 ( 1.3e+02 ) rate = 9.670319e+02 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 131 ( 1.3e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 131 ( 1.3e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 138 ( 1.4e+02 ) rate = 6.358682e+03 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 144 ( 1.4e+02 ) rate = 5.358377e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 144 ( 1.4e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 144 ( 1.4e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 153 ( 1.5e+02 ) rate = 5.688473e+03 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 159 ( 1.6e+02 ) rate = 5.671522e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 159 ( 1.6e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 159 ( 1.6e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 13 ( 1.3e+01 ) Ntotal = 172 ( 1.7e+02 ) rate = 1.188404e+04 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 178 ( 1.8e+02 ) rate = 5.387051e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 178 ( 1.8e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 178 ( 1.8e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 178 ( 1.8e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 178 ( 1.8e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 178 ( 1.8e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 178 ( 1.8e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 178 ( 1.8e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 178 ( 1.8e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 182 ( 1.8e+02 ) rate = 3.718855e+03 N.s^-1
SPH setup: Nstep = 15 ( 1.5e+01 ) Ntotal = 197 ( 2.0e+02 ) rate = 1.433149e+04 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 198 ( 2.0e+02 ) rate = 8.763689e+02 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 198 ( 2.0e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 203 ( 2.0e+02 ) rate = 4.611759e+03 N.s^-1
SPH setup: Nstep = 13 ( 1.3e+01 ) Ntotal = 216 ( 2.2e+02 ) rate = 1.238637e+04 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 216 ( 2.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 216 ( 2.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 218 ( 2.2e+02 ) rate = 1.846886e+03 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 224 ( 2.2e+02 ) rate = 5.807420e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 224 ( 2.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 224 ( 2.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 227 ( 2.3e+02 ) rate = 2.711651e+03 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 234 ( 2.3e+02 ) rate = 4.308551e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 234 ( 2.3e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 234 ( 2.3e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 239 ( 2.4e+02 ) rate = 4.310129e+03 N.s^-1
SPH setup: Nstep = 11 ( 1.1e+01 ) Ntotal = 250 ( 2.5e+02 ) rate = 1.024766e+04 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 250 ( 2.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 250 ( 2.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 257 ( 2.6e+02 ) rate = 6.434042e+03 N.s^-1
SPH setup: Nstep = 13 ( 1.3e+01 ) Ntotal = 270 ( 2.7e+02 ) rate = 1.233644e+04 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 270 ( 2.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 270 ( 2.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 270 ( 2.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 270 ( 2.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 270 ( 2.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 270 ( 2.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 270 ( 2.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 270 ( 2.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 270 ( 2.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 270 ( 2.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 278 ( 2.8e+02 ) rate = 7.190501e+03 N.s^-1
SPH setup: Nstep = 10 ( 1.0e+01 ) Ntotal = 288 ( 2.9e+02 ) rate = 9.772859e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 288 ( 2.9e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 288 ( 2.9e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 296 ( 3.0e+02 ) rate = 7.372613e+03 N.s^-1
SPH setup: Nstep = 10 ( 1.0e+01 ) Ntotal = 306 ( 3.1e+02 ) rate = 9.683551e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 306 ( 3.1e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 306 ( 3.1e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 306 ( 3.1e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 306 ( 3.1e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 306 ( 3.1e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 306 ( 3.1e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 313 ( 3.1e+02 ) rate = 6.428659e+03 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 320 ( 3.2e+02 ) rate = 6.660488e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 320 ( 3.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 320 ( 3.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 327 ( 3.3e+02 ) rate = 6.611895e+03 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 334 ( 3.3e+02 ) rate = 6.983219e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 334 ( 3.3e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 334 ( 3.3e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 11 ( 1.1e+01 ) Ntotal = 345 ( 3.4e+02 ) rate = 1.059280e+04 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 4.216211e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 354 ( 3.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 358 ( 3.6e+02 ) rate = 3.555325e+03 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 367 ( 3.7e+02 ) rate = 8.501891e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 367 ( 3.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 367 ( 3.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 370 ( 3.7e+02 ) rate = 2.713913e+03 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 374 ( 3.7e+02 ) rate = 3.397749e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 374 ( 3.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 374 ( 3.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 374 ( 3.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 374 ( 3.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 374 ( 3.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 374 ( 3.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 374 ( 3.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 374 ( 3.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 374 ( 3.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 374 ( 3.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 378 ( 3.8e+02 ) rate = 3.610988e+03 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 383 ( 3.8e+02 ) rate = 4.722465e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 383 ( 3.8e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 383 ( 3.8e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 389 ( 3.9e+02 ) rate = 5.490976e+03 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 396 ( 4.0e+02 ) rate = 6.835250e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 396 ( 4.0e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 396 ( 4.0e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 396 ( 4.0e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 396 ( 4.0e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 396 ( 4.0e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 396 ( 4.0e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 396 ( 4.0e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 396 ( 4.0e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 396 ( 4.0e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 396 ( 4.0e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 402 ( 4.0e+02 ) rate = 5.334229e+03 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 409 ( 4.1e+02 ) rate = 3.696001e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 409 ( 4.1e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 409 ( 4.1e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 415 ( 4.2e+02 ) rate = 5.380761e+03 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 420 ( 4.2e+02 ) rate = 4.549864e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 420 ( 4.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 420 ( 4.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 420 ( 4.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 420 ( 4.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 420 ( 4.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 420 ( 4.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 420 ( 4.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 420 ( 4.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 420 ( 4.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 420 ( 4.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 423 ( 4.2e+02 ) rate = 2.828556e+03 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 425 ( 4.2e+02 ) rate = 1.989539e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 425 ( 4.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 425 ( 4.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 433 ( 4.3e+02 ) rate = 7.775422e+03 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 438 ( 4.4e+02 ) rate = 4.815935e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 438 ( 4.4e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 438 ( 4.4e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 438 ( 4.4e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 438 ( 4.4e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 438 ( 4.4e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 438 ( 4.4e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 438 ( 4.4e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 438 ( 4.4e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 441 ( 4.4e+02 ) rate = 2.900027e+03 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 450 ( 4.5e+02 ) rate = 8.648898e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 450 ( 4.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 450 ( 4.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 453 ( 4.5e+02 ) rate = 2.839393e+03 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 460 ( 4.6e+02 ) rate = 7.358839e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 460 ( 4.6e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 460 ( 4.6e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 460 ( 4.6e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 460 ( 4.6e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 460 ( 4.6e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 460 ( 4.6e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 460 ( 4.6e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 460 ( 4.6e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 460 ( 4.6e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 460 ( 4.6e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 462 ( 4.6e+02 ) rate = 1.975090e+03 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 468 ( 4.7e+02 ) rate = 6.145558e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 468 ( 4.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 468 ( 4.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 473 ( 4.7e+02 ) rate = 4.730570e+03 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 482 ( 4.8e+02 ) rate = 9.068522e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 482 ( 4.8e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 482 ( 4.8e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 482 ( 4.8e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 482 ( 4.8e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 482 ( 4.8e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 482 ( 4.8e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 482 ( 4.8e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 482 ( 4.8e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 482 ( 4.8e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 482 ( 4.8e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 487 ( 4.9e+02 ) rate = 4.848640e+03 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 494 ( 4.9e+02 ) rate = 6.793248e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 494 ( 4.9e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 494 ( 4.9e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 499 ( 5.0e+02 ) rate = 4.757768e+03 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 506 ( 5.1e+02 ) rate = 7.188711e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 506 ( 5.1e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 506 ( 5.1e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 506 ( 5.1e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 506 ( 5.1e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 506 ( 5.1e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 506 ( 5.1e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 507 ( 5.1e+02 ) rate = 9.534443e+02 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 508 ( 5.1e+02 ) rate = 1.008326e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 508 ( 5.1e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 508 ( 5.1e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 508 ( 5.1e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 508 ( 5.1e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 508 ( 5.1e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 508 ( 5.1e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 515 ( 5.2e+02 ) rate = 6.860754e+03 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 7.141749e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 522 ( 5.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 528 ( 5.3e+02 ) rate = 5.597887e+03 N.s^-1
SPH setup: Nstep = 11 ( 1.1e+01 ) Ntotal = 539 ( 5.4e+02 ) rate = 6.157880e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 539 ( 5.4e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 539 ( 5.4e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 544 ( 5.4e+02 ) rate = 4.676359e+03 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 550 ( 5.5e+02 ) rate = 5.835208e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 550 ( 5.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 550 ( 5.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 552 ( 5.5e+02 ) rate = 1.937292e+03 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 553 ( 5.5e+02 ) rate = 9.968847e+02 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 553 ( 5.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 553 ( 5.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 553 ( 5.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 553 ( 5.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 553 ( 5.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 553 ( 5.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 559 ( 5.6e+02 ) rate = 5.638043e+03 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 566 ( 5.7e+02 ) rate = 6.708772e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 566 ( 5.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 566 ( 5.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 574 ( 5.7e+02 ) rate = 7.316808e+03 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 581 ( 5.8e+02 ) rate = 7.143797e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 581 ( 5.8e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 581 ( 5.8e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 581 ( 5.8e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 581 ( 5.8e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 581 ( 5.8e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 581 ( 5.8e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 581 ( 5.8e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 581 ( 5.8e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 581 ( 5.8e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 581 ( 5.8e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 589 ( 5.9e+02 ) rate = 7.547234e+03 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 596 ( 6.0e+02 ) rate = 7.092019e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 596 ( 6.0e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 596 ( 6.0e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 605 ( 6.0e+02 ) rate = 8.538008e+03 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 611 ( 6.1e+02 ) rate = 6.135553e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 611 ( 6.1e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 611 ( 6.1e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 611 ( 6.1e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 611 ( 6.1e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 611 ( 6.1e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 611 ( 6.1e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 616 ( 6.2e+02 ) rate = 4.991355e+03 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 618 ( 6.2e+02 ) rate = 1.904758e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 618 ( 6.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 618 ( 6.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 626 ( 6.3e+02 ) rate = 7.215124e+03 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 629 ( 6.3e+02 ) rate = 3.202381e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 629 ( 6.3e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 629 ( 6.3e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 12 ( 1.2e+01 ) Ntotal = 641 ( 6.4e+02 ) rate = 1.142692e+04 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 646 ( 6.5e+02 ) rate = 4.534818e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 646 ( 6.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 646 ( 6.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 646 ( 6.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 646 ( 6.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 646 ( 6.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 646 ( 6.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 646 ( 6.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 646 ( 6.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 650 ( 6.5e+02 ) rate = 3.165584e+03 N.s^-1
SPH setup: Nstep = 12 ( 1.2e+01 ) Ntotal = 662 ( 6.6e+02 ) rate = 1.129161e+04 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 662 ( 6.6e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 662 ( 6.6e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 666 ( 6.7e+02 ) rate = 3.717572e+03 N.s^-1
SPH setup: Nstep = 10 ( 1.0e+01 ) Ntotal = 676 ( 6.8e+02 ) rate = 9.804729e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 676 ( 6.8e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 676 ( 6.8e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 676 ( 6.8e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 676 ( 6.8e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 676 ( 6.8e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 676 ( 6.8e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 676 ( 6.8e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 676 ( 6.8e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 676 ( 6.8e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 676 ( 6.8e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 680 ( 6.8e+02 ) rate = 3.718647e+03 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 688 ( 6.9e+02 ) rate = 7.680514e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 688 ( 6.9e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 688 ( 6.9e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 694 ( 6.9e+02 ) rate = 5.569722e+03 N.s^-1
SPH setup: Nstep = 10 ( 1.0e+01 ) Ntotal = 704 ( 7.0e+02 ) rate = 9.456479e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 704 ( 7.0e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 704 ( 7.0e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 704 ( 7.0e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 704 ( 7.0e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 704 ( 7.0e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 704 ( 7.0e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 704 ( 7.0e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 704 ( 7.0e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 704 ( 7.0e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 704 ( 7.0e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 710 ( 7.1e+02 ) rate = 5.342123e+03 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 718 ( 7.2e+02 ) rate = 7.479508e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 718 ( 7.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 718 ( 7.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 726 ( 7.3e+02 ) rate = 7.146928e+03 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 734 ( 7.3e+02 ) rate = 7.527456e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 734 ( 7.3e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 734 ( 7.3e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 734 ( 7.3e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 734 ( 7.3e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 734 ( 7.3e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 734 ( 7.3e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 739 ( 7.4e+02 ) rate = 4.486671e+03 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 744 ( 7.4e+02 ) rate = 4.766303e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 744 ( 7.4e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 744 ( 7.4e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 748 ( 7.5e+02 ) rate = 3.646142e+03 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 752 ( 7.5e+02 ) rate = 4.002289e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 752 ( 7.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 752 ( 7.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 761 ( 7.6e+02 ) rate = 8.141363e+03 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 6.449128e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 768 ( 7.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 777 ( 7.8e+02 ) rate = 7.953804e+03 N.s^-1
SPH setup: Nstep = 10 ( 1.0e+01 ) Ntotal = 787 ( 7.9e+02 ) rate = 9.463925e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 787 ( 7.9e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 787 ( 7.9e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 794 ( 7.9e+02 ) rate = 6.252674e+03 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 802 ( 8.0e+02 ) rate = 7.452842e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 802 ( 8.0e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 802 ( 8.0e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 808 ( 8.1e+02 ) rate = 5.414815e+03 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 813 ( 8.1e+02 ) rate = 2.531297e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 813 ( 8.1e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 813 ( 8.1e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 815 ( 8.2e+02 ) rate = 1.812116e+03 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 818 ( 8.2e+02 ) rate = 2.800357e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 818 ( 8.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 818 ( 8.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 827 ( 8.3e+02 ) rate = 8.347594e+03 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 835 ( 8.4e+02 ) rate = 7.295882e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 835 ( 8.4e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 835 ( 8.4e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 11 ( 1.1e+01 ) Ntotal = 846 ( 8.5e+02 ) rate = 1.010264e+04 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 854 ( 8.5e+02 ) rate = 7.488772e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 854 ( 8.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 854 ( 8.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 854 ( 8.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 854 ( 8.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 854 ( 8.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 854 ( 8.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 854 ( 8.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 854 ( 8.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 854 ( 8.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 854 ( 8.5e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 13 ( 1.3e+01 ) Ntotal = 867 ( 8.7e+02 ) rate = 1.220680e+04 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 873 ( 8.7e+02 ) rate = 5.624387e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 873 ( 8.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 873 ( 8.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 11 ( 1.1e+01 ) Ntotal = 884 ( 8.8e+02 ) rate = 9.828704e+03 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 890 ( 8.9e+02 ) rate = 5.656578e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 890 ( 8.9e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 890 ( 8.9e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 890 ( 8.9e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 890 ( 8.9e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 890 ( 8.9e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 890 ( 8.9e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 898 ( 9.0e+02 ) rate = 7.478949e+03 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 903 ( 9.0e+02 ) rate = 4.721453e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 903 ( 9.0e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 903 ( 9.0e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 11 ( 1.1e+01 ) Ntotal = 914 ( 9.1e+02 ) rate = 1.019817e+04 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 918 ( 9.2e+02 ) rate = 3.879175e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 918 ( 9.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 918 ( 9.2e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 15 ( 1.5e+01 ) Ntotal = 933 ( 9.3e+02 ) rate = 1.365968e+04 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 937 ( 9.4e+02 ) rate = 3.761707e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 937 ( 9.4e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 937 ( 9.4e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 937 ( 9.4e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 937 ( 9.4e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 937 ( 9.4e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 937 ( 9.4e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 937 ( 9.4e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 937 ( 9.4e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 943 ( 9.4e+02 ) rate = 5.469263e+03 N.s^-1
SPH setup: Nstep = 12 ( 1.2e+01 ) Ntotal = 955 ( 9.6e+02 ) rate = 1.188168e+04 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 955 ( 9.6e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 955 ( 9.6e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 960 ( 9.6e+02 ) rate = 4.390787e+03 N.s^-1
SPH setup: Nstep = 11 ( 1.1e+01 ) Ntotal = 971 ( 9.7e+02 ) rate = 1.051521e+04 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 971 ( 9.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 971 ( 9.7e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 974 ( 9.7e+02 ) rate = 2.802507e+03 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 979 ( 9.8e+02 ) rate = 4.686945e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 979 ( 9.8e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 979 ( 9.8e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 983 ( 9.8e+02 ) rate = 3.791282e+03 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 989 ( 9.9e+02 ) rate = 5.697313e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 989 ( 9.9e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 989 ( 9.9e+02 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 996 ( 1.0e+03 ) rate = 6.183391e+03 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 1005 ( 1.0e+03 ) rate = 8.293425e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1005 ( 1.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1005 ( 1.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 1014 ( 1.0e+03 ) rate = 8.172620e+03 N.s^-1
SPH setup: Nstep = 11 ( 1.1e+01 ) Ntotal = 1025 ( 1.0e+03 ) rate = 1.017303e+04 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1025 ( 1.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1025 ( 1.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1025 ( 1.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1025 ( 1.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1025 ( 1.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1025 ( 1.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1025 ( 1.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1025 ( 1.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1025 ( 1.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1025 ( 1.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 1034 ( 1.0e+03 ) rate = 8.208990e+03 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 1043 ( 1.0e+03 ) rate = 8.532989e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1043 ( 1.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1043 ( 1.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 10 ( 1.0e+01 ) Ntotal = 1053 ( 1.1e+03 ) rate = 9.186575e+03 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 1061 ( 1.1e+03 ) rate = 7.644858e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1061 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1061 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1061 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1061 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1061 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1061 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 1068 ( 1.1e+03 ) rate = 6.616714e+03 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 1075 ( 1.1e+03 ) rate = 6.029498e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1075 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1075 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 1082 ( 1.1e+03 ) rate = 6.438427e+03 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 1087 ( 1.1e+03 ) rate = 4.773056e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1087 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1087 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 13 ( 1.3e+01 ) Ntotal = 1100 ( 1.1e+03 ) rate = 1.151973e+04 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 6.633801e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1107 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 1116 ( 1.1e+03 ) rate = 8.048729e+03 N.s^-1
SPH setup: Nstep = 10 ( 1.0e+01 ) Ntotal = 1126 ( 1.1e+03 ) rate = 8.022148e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1126 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1126 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 1134 ( 1.1e+03 ) rate = 7.331049e+03 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 1141 ( 1.1e+03 ) rate = 6.701502e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1141 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1141 ( 1.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 1145 ( 1.1e+03 ) rate = 3.606619e+03 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 1150 ( 1.2e+03 ) rate = 4.735239e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1150 ( 1.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1150 ( 1.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1150 ( 1.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1150 ( 1.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1150 ( 1.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1150 ( 1.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 1158 ( 1.2e+03 ) rate = 7.879157e+03 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 1165 ( 1.2e+03 ) rate = 6.616151e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1165 ( 1.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1165 ( 1.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 10 ( 1.0e+01 ) Ntotal = 1175 ( 1.2e+03 ) rate = 9.128777e+03 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 1182 ( 1.2e+03 ) rate = 6.760183e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1182 ( 1.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1182 ( 1.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1182 ( 1.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1182 ( 1.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1182 ( 1.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1182 ( 1.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1182 ( 1.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1182 ( 1.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1182 ( 1.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1182 ( 1.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 11 ( 1.1e+01 ) Ntotal = 1193 ( 1.2e+03 ) rate = 1.040724e+04 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 1199 ( 1.2e+03 ) rate = 6.219789e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1199 ( 1.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1199 ( 1.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 12 ( 1.2e+01 ) Ntotal = 1211 ( 1.2e+03 ) rate = 1.175010e+04 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 1216 ( 1.2e+03 ) rate = 4.830993e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1216 ( 1.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1216 ( 1.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1216 ( 1.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1216 ( 1.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1216 ( 1.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1216 ( 1.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 1225 ( 1.2e+03 ) rate = 3.418388e+03 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 1227 ( 1.2e+03 ) rate = 2.007907e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1227 ( 1.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1227 ( 1.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 1236 ( 1.2e+03 ) rate = 8.853040e+03 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 1240 ( 1.2e+03 ) rate = 4.002690e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1240 ( 1.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1240 ( 1.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 15 ( 1.5e+01 ) Ntotal = 1255 ( 1.3e+03 ) rate = 1.447407e+04 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 1259 ( 1.3e+03 ) rate = 4.092298e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1259 ( 1.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1259 ( 1.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1259 ( 1.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1259 ( 1.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1259 ( 1.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1259 ( 1.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1259 ( 1.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1259 ( 1.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 1265 ( 1.3e+03 ) rate = 5.921522e+03 N.s^-1
SPH setup: Nstep = 12 ( 1.2e+01 ) Ntotal = 1277 ( 1.3e+03 ) rate = 1.179058e+04 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1277 ( 1.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1277 ( 1.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 1283 ( 1.3e+03 ) rate = 5.499552e+03 N.s^-1
SPH setup: Nstep = 10 ( 1.0e+01 ) Ntotal = 1293 ( 1.3e+03 ) rate = 1.028524e+04 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1293 ( 1.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1293 ( 1.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 1295 ( 1.3e+03 ) rate = 1.930604e+03 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 1297 ( 1.3e+03 ) rate = 1.986666e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1297 ( 1.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1297 ( 1.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 1301 ( 1.3e+03 ) rate = 3.810896e+03 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 1305 ( 1.3e+03 ) rate = 4.181529e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1305 ( 1.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1305 ( 1.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 1311 ( 1.3e+03 ) rate = 5.573867e+03 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 1319 ( 1.3e+03 ) rate = 8.102291e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1319 ( 1.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1319 ( 1.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 1327 ( 1.3e+03 ) rate = 7.207434e+03 N.s^-1
SPH setup: Nstep = 10 ( 1.0e+01 ) Ntotal = 1337 ( 1.3e+03 ) rate = 9.553233e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1337 ( 1.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1337 ( 1.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1337 ( 1.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1337 ( 1.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1337 ( 1.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1337 ( 1.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1337 ( 1.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1337 ( 1.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1337 ( 1.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1337 ( 1.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 1346 ( 1.3e+03 ) rate = 8.204492e+03 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 1353 ( 1.4e+03 ) rate = 6.538139e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1353 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1353 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 10 ( 1.0e+01 ) Ntotal = 1363 ( 1.4e+03 ) rate = 8.759075e+03 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 1371 ( 1.4e+03 ) rate = 7.592308e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1371 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1371 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1371 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1371 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1371 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1371 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 1378 ( 1.4e+03 ) rate = 6.959011e+03 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 1383 ( 1.4e+03 ) rate = 5.226474e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1383 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1383 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 1390 ( 1.4e+03 ) rate = 6.820299e+03 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 1395 ( 1.4e+03 ) rate = 5.332520e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1395 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1395 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 12 ( 1.2e+01 ) Ntotal = 1407 ( 1.4e+03 ) rate = 1.113074e+04 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 6.283946e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1413 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 1417 ( 1.4e+03 ) rate = 3.598200e+03 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 1422 ( 1.4e+03 ) rate = 4.966915e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1422 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1422 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1422 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1422 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1422 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1422 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1422 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1422 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1422 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1422 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1422 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1422 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1422 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1422 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1422 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1422 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1422 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1422 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 1427 ( 1.4e+03 ) rate = 4.785871e+03 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 1429 ( 1.4e+03 ) rate = 2.024115e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1429 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1429 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1429 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1429 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1429 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1429 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1429 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1429 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1429 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1429 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 1434 ( 1.4e+03 ) rate = 4.948986e+03 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 1436 ( 1.4e+03 ) rate = 2.030043e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1436 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1436 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 1439 ( 1.4e+03 ) rate = 2.994066e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1439 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1439 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1439 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1439 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1439 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1439 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1439 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1439 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1439 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1439 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1439 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1439 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1439 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1439 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1439 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 1446 ( 1.4e+03 ) rate = 7.019493e+03 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 1448 ( 1.4e+03 ) rate = 2.052859e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1448 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1448 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1448 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1448 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1448 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1448 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1448 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1448 ( 1.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 1451 ( 1.5e+03 ) rate = 2.944832e+03 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 1456 ( 1.5e+03 ) rate = 4.992955e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1456 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1456 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1456 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1456 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1456 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1456 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1456 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1456 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1456 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1456 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1456 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1456 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1456 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1456 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1456 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1456 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1456 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1456 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 1460 ( 1.5e+03 ) rate = 3.815119e+03 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 1464 ( 1.5e+03 ) rate = 4.019539e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1464 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1464 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1464 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1464 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1464 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1464 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1464 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1464 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1464 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1464 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 1466 ( 1.5e+03 ) rate = 1.939853e+03 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 1468 ( 1.5e+03 ) rate = 2.015654e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1468 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1468 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 1471 ( 1.5e+03 ) rate = 2.839258e+03 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 1474 ( 1.5e+03 ) rate = 3.017417e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1474 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1474 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1474 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1474 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1474 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1474 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1474 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1474 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1474 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1474 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1474 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1474 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1474 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1474 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 1480 ( 1.5e+03 ) rate = 5.747512e+03 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 1.977653e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1482 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 11 ( 1.1e+01 ) Ntotal = 1493 ( 1.5e+03 ) rate = 1.003689e+04 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 1501 ( 1.5e+03 ) rate = 7.884990e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1501 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1501 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 1510 ( 1.5e+03 ) rate = 8.442523e+03 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 1518 ( 1.5e+03 ) rate = 7.654089e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1518 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1518 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 1524 ( 1.5e+03 ) rate = 5.578126e+03 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 1529 ( 1.5e+03 ) rate = 5.032728e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1529 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1529 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 1534 ( 1.5e+03 ) rate = 4.463756e+03 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 1536 ( 1.5e+03 ) rate = 2.083718e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1536 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1536 ( 1.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 11 ( 1.1e+01 ) Ntotal = 1547 ( 1.5e+03 ) rate = 8.156546e+03 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 1553 ( 1.6e+03 ) rate = 5.819220e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1553 ( 1.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1553 ( 1.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 13 ( 1.3e+01 ) Ntotal = 1566 ( 1.6e+03 ) rate = 1.209258e+04 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 1572 ( 1.6e+03 ) rate = 5.736500e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1572 ( 1.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1572 ( 1.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1572 ( 1.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1572 ( 1.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1572 ( 1.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1572 ( 1.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1572 ( 1.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1572 ( 1.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1572 ( 1.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1572 ( 1.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 15 ( 1.5e+01 ) Ntotal = 1587 ( 1.6e+03 ) rate = 1.338109e+04 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 1591 ( 1.6e+03 ) rate = 3.630360e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1591 ( 1.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1591 ( 1.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 15 ( 1.5e+01 ) Ntotal = 1606 ( 1.6e+03 ) rate = 1.344441e+04 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 1610 ( 1.6e+03 ) rate = 3.711460e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1610 ( 1.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1610 ( 1.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 1613 ( 1.6e+03 ) rate = 2.709883e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1613 ( 1.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1613 ( 1.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1613 ( 1.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 10 ( 1.0e+01 ) Ntotal = 1623 ( 1.6e+03 ) rate = 8.499296e+03 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 1626 ( 1.6e+03 ) rate = 2.934416e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1626 ( 1.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 1627 ( 1.6e+03 ) rate = 9.919415e+02 N.s^-1
SPH setup: Nstep = 11 ( 1.1e+01 ) Ntotal = 1638 ( 1.6e+03 ) rate = 1.126410e+04 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 1641 ( 1.6e+03 ) rate = 3.115944e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1641 ( 1.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 1643 ( 1.6e+03 ) rate = 2.040375e+03 N.s^-1
SPH setup: Nstep = 15 ( 1.5e+01 ) Ntotal = 1658 ( 1.7e+03 ) rate = 1.504418e+04 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 1660 ( 1.7e+03 ) rate = 1.880677e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1660 ( 1.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1660 ( 1.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1660 ( 1.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1660 ( 1.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1660 ( 1.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1660 ( 1.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1660 ( 1.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1660 ( 1.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 1669 ( 1.7e+03 ) rate = 8.813351e+03 N.s^-1
SPH setup: Nstep = 11 ( 1.1e+01 ) Ntotal = 1680 ( 1.7e+03 ) rate = 1.110965e+04 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1680 ( 1.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1680 ( 1.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 1688 ( 1.7e+03 ) rate = 7.680742e+03 N.s^-1
SPH setup: Nstep = 10 ( 1.0e+01 ) Ntotal = 1698 ( 1.7e+03 ) rate = 1.002070e+04 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1698 ( 1.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1698 ( 1.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 1702 ( 1.7e+03 ) rate = 3.841555e+03 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 1706 ( 1.7e+03 ) rate = 4.165300e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1706 ( 1.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1706 ( 1.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 1711 ( 1.7e+03 ) rate = 4.664384e+03 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 1716 ( 1.7e+03 ) rate = 4.741584e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1716 ( 1.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1716 ( 1.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 1724 ( 1.7e+03 ) rate = 7.831559e+03 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 1732 ( 1.7e+03 ) rate = 8.167266e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1732 ( 1.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1732 ( 1.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 11 ( 1.1e+01 ) Ntotal = 1743 ( 1.7e+03 ) rate = 1.075825e+04 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 1752 ( 1.8e+03 ) rate = 8.936000e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1752 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1752 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1752 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1752 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1752 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1752 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1752 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1752 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1752 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1752 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 12 ( 1.2e+01 ) Ntotal = 1764 ( 1.8e+03 ) rate = 1.142092e+04 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 1770 ( 1.8e+03 ) rate = 5.556852e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1770 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1770 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 12 ( 1.2e+01 ) Ntotal = 1782 ( 1.8e+03 ) rate = 1.084620e+04 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 1788 ( 1.8e+03 ) rate = 6.390423e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1788 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1788 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1788 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1788 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1788 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1788 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 1797 ( 1.8e+03 ) rate = 8.669685e+03 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 1802 ( 1.8e+03 ) rate = 5.151166e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1802 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1802 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 1811 ( 1.8e+03 ) rate = 8.674038e+03 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 1816 ( 1.8e+03 ) rate = 5.131358e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1816 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1816 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 15 ( 1.5e+01 ) Ntotal = 1831 ( 1.8e+03 ) rate = 1.442053e+04 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 5.090587e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1836 ( 1.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 1845 ( 1.8e+03 ) rate = 2.679100e+03 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 1853 ( 1.9e+03 ) rate = 7.501784e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1853 ( 1.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1853 ( 1.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 1859 ( 1.9e+03 ) rate = 5.486602e+03 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 1864 ( 1.9e+03 ) rate = 4.753688e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1864 ( 1.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1864 ( 1.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 1867 ( 1.9e+03 ) rate = 2.776289e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1867 ( 1.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1867 ( 1.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1867 ( 1.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1867 ( 1.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1867 ( 1.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1867 ( 1.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1867 ( 1.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 1874 ( 1.9e+03 ) rate = 6.511943e+03 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 1880 ( 1.9e+03 ) rate = 5.645220e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1880 ( 1.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1880 ( 1.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 10 ( 1.0e+01 ) Ntotal = 1890 ( 1.9e+03 ) rate = 8.857106e+03 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 1895 ( 1.9e+03 ) rate = 5.035576e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1895 ( 1.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1895 ( 1.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1895 ( 1.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1895 ( 1.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1895 ( 1.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1895 ( 1.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1895 ( 1.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1895 ( 1.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1895 ( 1.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1895 ( 1.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 11 ( 1.1e+01 ) Ntotal = 1906 ( 1.9e+03 ) rate = 1.051993e+04 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 1910 ( 1.9e+03 ) rate = 4.005504e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1910 ( 1.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1910 ( 1.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 11 ( 1.1e+01 ) Ntotal = 1921 ( 1.9e+03 ) rate = 1.054661e+04 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 1925 ( 1.9e+03 ) rate = 4.095612e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1925 ( 1.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1925 ( 1.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1925 ( 1.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1925 ( 1.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1925 ( 1.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1925 ( 1.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 1930 ( 1.9e+03 ) rate = 4.720816e+03 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 1932 ( 1.9e+03 ) rate = 2.031220e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1932 ( 1.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1932 ( 1.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 10 ( 1.0e+01 ) Ntotal = 1942 ( 1.9e+03 ) rate = 9.711142e+03 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 1943 ( 1.9e+03 ) rate = 9.716624e+02 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1943 ( 1.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 1945 ( 1.9e+03 ) rate = 1.900931e+03 N.s^-1
SPH setup: Nstep = 13 ( 1.3e+01 ) Ntotal = 1958 ( 2.0e+03 ) rate = 1.299780e+04 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 1960 ( 2.0e+03 ) rate = 2.057685e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1960 ( 2.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1960 ( 2.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1960 ( 2.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1960 ( 2.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1960 ( 2.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1960 ( 2.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1960 ( 2.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1960 ( 2.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 1967 ( 2.0e+03 ) rate = 6.617464e+03 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 1976 ( 2.0e+03 ) rate = 9.108980e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1976 ( 2.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1976 ( 2.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 1982 ( 2.0e+03 ) rate = 5.767384e+03 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 1990 ( 2.0e+03 ) rate = 8.280845e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1990 ( 2.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1990 ( 2.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1990 ( 2.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1990 ( 2.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1990 ( 2.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1990 ( 2.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1990 ( 2.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1990 ( 2.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1990 ( 2.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 1990 ( 2.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 1996 ( 2.0e+03 ) rate = 5.568321e+03 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 2002 ( 2.0e+03 ) rate = 5.835543e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2002 ( 2.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2002 ( 2.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 2011 ( 2.0e+03 ) rate = 8.568466e+03 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 2018 ( 2.0e+03 ) rate = 7.348927e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2018 ( 2.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2018 ( 2.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2018 ( 2.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2018 ( 2.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2018 ( 2.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2018 ( 2.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2018 ( 2.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2018 ( 2.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2018 ( 2.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2018 ( 2.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 2026 ( 2.0e+03 ) rate = 7.658712e+03 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 2032 ( 2.0e+03 ) rate = 6.026517e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2032 ( 2.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2032 ( 2.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 10 ( 1.0e+01 ) Ntotal = 2042 ( 2.0e+03 ) rate = 9.164886e+03 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 2048 ( 2.0e+03 ) rate = 6.110571e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2048 ( 2.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2048 ( 2.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2048 ( 2.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2048 ( 2.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2048 ( 2.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2048 ( 2.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 2055 ( 2.1e+03 ) rate = 6.616338e+03 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 2058 ( 2.1e+03 ) rate = 2.977839e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2058 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2058 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 2064 ( 2.1e+03 ) rate = 5.483032e+03 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 2066 ( 2.1e+03 ) rate = 1.912788e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2066 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2066 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 12 ( 1.2e+01 ) Ntotal = 2078 ( 2.1e+03 ) rate = 1.095474e+04 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 4.035789e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2082 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 2088 ( 2.1e+03 ) rate = 5.627499e+03 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 2095 ( 2.1e+03 ) rate = 6.808537e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2095 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2095 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 2100 ( 2.1e+03 ) rate = 4.717471e+03 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 2102 ( 2.1e+03 ) rate = 1.955185e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2102 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2102 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2102 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2102 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2102 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2102 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2102 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2102 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2102 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2102 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 2108 ( 2.1e+03 ) rate = 5.652363e+03 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 2111 ( 2.1e+03 ) rate = 2.867315e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2111 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2111 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 2119 ( 2.1e+03 ) rate = 7.376494e+03 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 2124 ( 2.1e+03 ) rate = 5.013667e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2124 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2124 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2124 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2124 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2124 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2124 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2124 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2124 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2124 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2124 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 2133 ( 2.1e+03 ) rate = 8.764771e+03 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 2137 ( 2.1e+03 ) rate = 3.934955e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2137 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2137 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 2146 ( 2.1e+03 ) rate = 8.320152e+03 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 2148 ( 2.1e+03 ) rate = 1.800851e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2148 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2148 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2148 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2148 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2148 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2148 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2148 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2148 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2148 ( 2.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 2149 ( 2.1e+03 ) rate = 8.944472e+02 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 2152 ( 2.2e+03 ) rate = 2.939830e+03 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 2153 ( 2.2e+03 ) rate = 9.926918e+02 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2153 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 2154 ( 2.2e+03 ) rate = 1.016893e+03 N.s^-1
SPH setup: Nstep = 10 ( 1.0e+01 ) Ntotal = 2164 ( 2.2e+03 ) rate = 9.894740e+03 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 2166 ( 2.2e+03 ) rate = 2.050224e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2166 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2166 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2166 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2166 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2166 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2166 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2166 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2166 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 2171 ( 2.2e+03 ) rate = 4.895390e+03 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 2178 ( 2.2e+03 ) rate = 7.162327e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2178 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2178 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 2183 ( 2.2e+03 ) rate = 4.753959e+03 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 2188 ( 2.2e+03 ) rate = 5.091930e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2188 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2188 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2188 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2188 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2188 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2188 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2188 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2188 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2188 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2188 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 2192 ( 2.2e+03 ) rate = 3.898381e+03 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 2196 ( 2.2e+03 ) rate = 3.858371e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2196 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2196 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 2203 ( 2.2e+03 ) rate = 6.841135e+03 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 2210 ( 2.2e+03 ) rate = 6.929266e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2210 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2210 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2210 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2210 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2210 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2210 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2210 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2210 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2210 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2210 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 2217 ( 2.2e+03 ) rate = 6.953122e+03 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 2222 ( 2.2e+03 ) rate = 5.177833e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2222 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2222 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 2230 ( 2.2e+03 ) rate = 5.924114e+03 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 2234 ( 2.2e+03 ) rate = 3.653048e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2234 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2234 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2234 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2234 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2234 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2234 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 2236 ( 2.2e+03 ) rate = 2.036046e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2236 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2236 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2236 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2236 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2236 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2236 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2236 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 10 ( 1.0e+01 ) Ntotal = 2246 ( 2.2e+03 ) rate = 9.258419e+03 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 3.966739e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2250 ( 2.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 2255 ( 2.3e+03 ) rate = 4.699434e+03 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 2259 ( 2.3e+03 ) rate = 3.927795e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2259 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2259 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2259 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2259 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2259 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2259 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2259 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2259 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2259 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2259 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2259 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2259 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2259 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2259 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2259 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2259 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2259 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2259 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 2264 ( 2.3e+03 ) rate = 4.647963e+03 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 2266 ( 2.3e+03 ) rate = 1.982898e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2266 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2266 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2266 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2266 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2266 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2266 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2266 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2266 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2266 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2266 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 2271 ( 2.3e+03 ) rate = 4.831464e+03 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 2273 ( 2.3e+03 ) rate = 1.981660e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2273 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2273 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 2276 ( 2.3e+03 ) rate = 2.784032e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2276 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2276 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2276 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2276 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2276 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2276 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2276 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2276 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2276 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2276 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2276 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2276 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2276 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2276 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 2277 ( 2.3e+03 ) rate = 9.829072e+02 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 2285 ( 2.3e+03 ) rate = 8.079666e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2285 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2285 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2285 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2285 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2285 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2285 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2285 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2285 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2285 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 2289 ( 2.3e+03 ) rate = 3.931200e+03 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 2293 ( 2.3e+03 ) rate = 4.064797e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2293 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2293 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2293 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2293 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2293 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2293 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2293 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2293 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2293 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2293 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2293 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2293 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2293 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2293 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2293 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2293 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2293 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2293 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 2298 ( 2.3e+03 ) rate = 4.878263e+03 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 2301 ( 2.3e+03 ) rate = 2.927443e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2301 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2301 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2301 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2301 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2301 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2301 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2301 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2301 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2301 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2301 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 2304 ( 2.3e+03 ) rate = 2.822265e+03 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 2305 ( 2.3e+03 ) rate = 1.014577e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2305 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2305 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 2309 ( 2.3e+03 ) rate = 3.829837e+03 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 2311 ( 2.3e+03 ) rate = 2.044262e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2311 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2311 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2311 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2311 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2311 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2311 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2311 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2311 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2311 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2311 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2311 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2311 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2311 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2311 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 2317 ( 2.3e+03 ) rate = 5.688169e+03 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 1.940022e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2319 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 13 ( 1.3e+01 ) Ntotal = 2332 ( 2.3e+03 ) rate = 1.195885e+04 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 2338 ( 2.3e+03 ) rate = 5.747121e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2338 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2338 ( 2.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 2347 ( 2.3e+03 ) rate = 8.653230e+03 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 2353 ( 2.4e+03 ) rate = 5.817403e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2353 ( 2.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2353 ( 2.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 2359 ( 2.4e+03 ) rate = 5.457696e+03 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 2362 ( 2.4e+03 ) rate = 2.887278e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2362 ( 2.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2362 ( 2.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2362 ( 2.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2362 ( 2.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2362 ( 2.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2362 ( 2.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 11 ( 1.1e+01 ) Ntotal = 2373 ( 2.4e+03 ) rate = 9.691024e+03 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 2377 ( 2.4e+03 ) rate = 3.826825e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2377 ( 2.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2377 ( 2.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 13 ( 1.3e+01 ) Ntotal = 2390 ( 2.4e+03 ) rate = 1.225615e+04 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 2394 ( 2.4e+03 ) rate = 3.875935e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2394 ( 2.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2394 ( 2.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2394 ( 2.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2394 ( 2.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2394 ( 2.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2394 ( 2.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2394 ( 2.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2394 ( 2.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2394 ( 2.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 2395 ( 2.4e+03 ) rate = 9.657590e+02 N.s^-1
SPH setup: Nstep = 13 ( 1.3e+01 ) Ntotal = 2408 ( 2.4e+03 ) rate = 1.381688e+04 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 2411 ( 2.4e+03 ) rate = 3.031252e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2411 ( 2.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 2412 ( 2.4e+03 ) rate = 1.013990e+03 N.s^-1
SPH setup: Nstep = 14 ( 1.4e+01 ) Ntotal = 2426 ( 2.4e+03 ) rate = 1.366795e+04 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 2428 ( 2.4e+03 ) rate = 2.002411e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2428 ( 2.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2428 ( 2.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2428 ( 2.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2428 ( 2.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2428 ( 2.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 2429 ( 2.4e+03 ) rate = 9.658243e+02 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 2438 ( 2.4e+03 ) rate = 9.542066e+03 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 2439 ( 2.4e+03 ) rate = 9.792708e+02 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2439 ( 2.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 2441 ( 2.4e+03 ) rate = 1.894275e+03 N.s^-1
SPH setup: Nstep = 10 ( 1.0e+01 ) Ntotal = 2451 ( 2.5e+03 ) rate = 1.020429e+04 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 2452 ( 2.5e+03 ) rate = 1.014072e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2452 ( 2.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 2456 ( 2.5e+03 ) rate = 4.191712e+03 N.s^-1
SPH setup: Nstep = 14 ( 1.4e+01 ) Ntotal = 2470 ( 2.5e+03 ) rate = 1.419803e+04 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 2471 ( 2.5e+03 ) rate = 1.028387e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2471 ( 2.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2471 ( 2.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2471 ( 2.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2471 ( 2.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2471 ( 2.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2471 ( 2.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2471 ( 2.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2471 ( 2.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 2480 ( 2.5e+03 ) rate = 8.062522e+03 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 2489 ( 2.5e+03 ) rate = 8.997850e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2489 ( 2.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2489 ( 2.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 2498 ( 2.5e+03 ) rate = 8.616134e+03 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 2505 ( 2.5e+03 ) rate = 7.245357e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2505 ( 2.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2505 ( 2.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 2507 ( 2.5e+03 ) rate = 1.921776e+03 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 2509 ( 2.5e+03 ) rate = 2.052038e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2509 ( 2.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2509 ( 2.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 2513 ( 2.5e+03 ) rate = 3.839929e+03 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 2517 ( 2.5e+03 ) rate = 3.986625e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2517 ( 2.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2517 ( 2.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 2525 ( 2.5e+03 ) rate = 4.419296e+03 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 2531 ( 2.5e+03 ) rate = 6.071111e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2531 ( 2.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2531 ( 2.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 12 ( 1.2e+01 ) Ntotal = 2543 ( 2.5e+03 ) rate = 1.182130e+04 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 2549 ( 2.5e+03 ) rate = 6.497332e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2549 ( 2.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2549 ( 2.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2549 ( 2.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2549 ( 2.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2549 ( 2.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2549 ( 2.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2549 ( 2.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2549 ( 2.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2549 ( 2.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2549 ( 2.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 11 ( 1.1e+01 ) Ntotal = 2560 ( 2.6e+03 ) rate = 1.069121e+04 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 2565 ( 2.6e+03 ) rate = 4.823382e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2565 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2565 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 14 ( 1.4e+01 ) Ntotal = 2579 ( 2.6e+03 ) rate = 1.082572e+04 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 2583 ( 2.6e+03 ) rate = 3.888395e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2583 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2583 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2583 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2583 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2583 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2583 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 2592 ( 2.6e+03 ) rate = 8.480142e+03 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 2595 ( 2.6e+03 ) rate = 2.834285e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2595 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2595 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 10 ( 1.0e+01 ) Ntotal = 2605 ( 2.6e+03 ) rate = 9.287535e+03 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 2607 ( 2.6e+03 ) rate = 1.966510e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2607 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 2609 ( 2.6e+03 ) rate = 1.968798e+03 N.s^-1
SPH setup: Nstep = 13 ( 1.3e+01 ) Ntotal = 2622 ( 2.6e+03 ) rate = 1.278370e+04 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 3.084969e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2625 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 13 ( 1.3e+01 ) Ntotal = 2638 ( 2.6e+03 ) rate = 1.190170e+04 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 2644 ( 2.6e+03 ) rate = 6.270923e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2644 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2644 ( 2.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 10 ( 1.0e+01 ) Ntotal = 2654 ( 2.7e+03 ) rate = 9.671909e+03 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 2659 ( 2.7e+03 ) rate = 5.183748e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2659 ( 2.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2659 ( 2.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 2667 ( 2.7e+03 ) rate = 7.689542e+03 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 2670 ( 2.7e+03 ) rate = 3.145732e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2670 ( 2.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2670 ( 2.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 2673 ( 2.7e+03 ) rate = 2.771844e+03 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 2675 ( 2.7e+03 ) rate = 2.007484e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2675 ( 2.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2675 ( 2.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 13 ( 1.3e+01 ) Ntotal = 2688 ( 2.7e+03 ) rate = 1.208910e+04 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 2692 ( 2.7e+03 ) rate = 3.960761e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2692 ( 2.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2692 ( 2.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 15 ( 1.5e+01 ) Ntotal = 2707 ( 2.7e+03 ) rate = 1.415562e+04 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 2711 ( 2.7e+03 ) rate = 4.227937e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2711 ( 2.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2711 ( 2.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2711 ( 2.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2711 ( 2.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2711 ( 2.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2711 ( 2.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2711 ( 2.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2711 ( 2.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2711 ( 2.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 2713 ( 2.7e+03 ) rate = 1.908911e+03 N.s^-1
SPH setup: Nstep = 15 ( 1.5e+01 ) Ntotal = 2728 ( 2.7e+03 ) rate = 1.441249e+04 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 2730 ( 2.7e+03 ) rate = 2.036712e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2730 ( 2.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 2732 ( 2.7e+03 ) rate = 1.974036e+03 N.s^-1
SPH setup: Nstep = 13 ( 1.3e+01 ) Ntotal = 2745 ( 2.7e+03 ) rate = 1.286671e+04 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 2747 ( 2.7e+03 ) rate = 2.008252e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2747 ( 2.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2747 ( 2.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2747 ( 2.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2747 ( 2.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2747 ( 2.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 2749 ( 2.7e+03 ) rate = 2.018669e+03 N.s^-1
SPH setup: Nstep = 10 ( 1.0e+01 ) Ntotal = 2759 ( 2.8e+03 ) rate = 9.781290e+03 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 2760 ( 2.8e+03 ) rate = 9.972744e+02 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2760 ( 2.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 2763 ( 2.8e+03 ) rate = 2.882661e+03 N.s^-1
SPH setup: Nstep = 11 ( 1.1e+01 ) Ntotal = 2774 ( 2.8e+03 ) rate = 3.186651e+03 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 2775 ( 2.8e+03 ) rate = 9.518615e+02 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2775 ( 2.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 2779 ( 2.8e+03 ) rate = 3.736991e+03 N.s^-1
SPH setup: Nstep = 15 ( 1.5e+01 ) Ntotal = 2794 ( 2.8e+03 ) rate = 1.429482e+04 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2794 ( 2.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2794 ( 2.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2794 ( 2.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2794 ( 2.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2794 ( 2.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2794 ( 2.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2794 ( 2.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2794 ( 2.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2794 ( 2.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 10 ( 1.0e+01 ) Ntotal = 2804 ( 2.8e+03 ) rate = 9.662835e+03 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 2812 ( 2.8e+03 ) rate = 8.129346e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2812 ( 2.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2812 ( 2.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 2821 ( 2.8e+03 ) rate = 8.545889e+03 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 2828 ( 2.8e+03 ) rate = 7.063850e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2828 ( 2.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2828 ( 2.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 2832 ( 2.8e+03 ) rate = 3.633632e+03 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 2836 ( 2.8e+03 ) rate = 4.040853e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2836 ( 2.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2836 ( 2.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 2842 ( 2.8e+03 ) rate = 5.815436e+03 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 2846 ( 2.8e+03 ) rate = 3.864118e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2846 ( 2.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2846 ( 2.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 10 ( 1.0e+01 ) Ntotal = 2856 ( 2.9e+03 ) rate = 1.016261e+04 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 2862 ( 2.9e+03 ) rate = 6.299808e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2862 ( 2.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2862 ( 2.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 13 ( 1.3e+01 ) Ntotal = 2875 ( 2.9e+03 ) rate = 1.252167e+04 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 2882 ( 2.9e+03 ) rate = 6.960679e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2882 ( 2.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2882 ( 2.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2882 ( 2.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2882 ( 2.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2882 ( 2.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2882 ( 2.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2882 ( 2.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2882 ( 2.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2882 ( 2.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2882 ( 2.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 14 ( 1.4e+01 ) Ntotal = 2896 ( 2.9e+03 ) rate = 1.280500e+04 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 2900 ( 2.9e+03 ) rate = 4.025210e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2900 ( 2.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2900 ( 2.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 14 ( 1.4e+01 ) Ntotal = 2914 ( 2.9e+03 ) rate = 1.389713e+04 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 2918 ( 2.9e+03 ) rate = 3.900323e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2918 ( 2.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2918 ( 2.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2918 ( 2.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2918 ( 2.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2918 ( 2.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2918 ( 2.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 11 ( 1.1e+01 ) Ntotal = 2929 ( 2.9e+03 ) rate = 1.068102e+04 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 2932 ( 2.9e+03 ) rate = 2.990356e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2932 ( 2.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2932 ( 2.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 10 ( 1.0e+01 ) Ntotal = 2942 ( 2.9e+03 ) rate = 7.341573e+03 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 2944 ( 2.9e+03 ) rate = 2.073932e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2944 ( 2.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 2946 ( 2.9e+03 ) rate = 1.929669e+03 N.s^-1
SPH setup: Nstep = 15 ( 1.5e+01 ) Ntotal = 2961 ( 3.0e+03 ) rate = 1.511588e+04 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 2.996940e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2964 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 10 ( 1.0e+01 ) Ntotal = 2974 ( 3.0e+03 ) rate = 9.202163e+03 N.s^-1
SPH setup: Nstep = 10 ( 1.0e+01 ) Ntotal = 2984 ( 3.0e+03 ) rate = 9.973033e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2984 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 2984 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 2992 ( 3.0e+03 ) rate = 7.475588e+03 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 3000 ( 3.0e+03 ) rate = 8.016715e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3000 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3000 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 3006 ( 3.0e+03 ) rate = 5.677275e+03 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 3012 ( 3.0e+03 ) rate = 5.999886e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3012 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3012 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 3015 ( 3.0e+03 ) rate = 2.866134e+03 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 3018 ( 3.0e+03 ) rate = 2.906644e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3018 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3018 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 11 ( 1.1e+01 ) Ntotal = 3029 ( 3.0e+03 ) rate = 1.054713e+04 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 3036 ( 3.0e+03 ) rate = 6.772498e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3036 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3036 ( 3.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 13 ( 1.3e+01 ) Ntotal = 3049 ( 3.0e+03 ) rate = 1.143265e+04 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 3056 ( 3.1e+03 ) rate = 6.572893e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3056 ( 3.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3056 ( 3.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3056 ( 3.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3056 ( 3.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3056 ( 3.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3056 ( 3.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3056 ( 3.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3056 ( 3.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3056 ( 3.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3056 ( 3.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 14 ( 1.4e+01 ) Ntotal = 3070 ( 3.1e+03 ) rate = 1.265792e+04 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 3076 ( 3.1e+03 ) rate = 4.456874e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3076 ( 3.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3076 ( 3.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 13 ( 1.3e+01 ) Ntotal = 3089 ( 3.1e+03 ) rate = 1.204489e+04 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 3094 ( 3.1e+03 ) rate = 5.029994e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3094 ( 3.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3094 ( 3.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 3098 ( 3.1e+03 ) rate = 3.968085e+03 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 3100 ( 3.1e+03 ) rate = 1.853197e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3100 ( 3.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3100 ( 3.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 3109 ( 3.1e+03 ) rate = 8.420919e+03 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 3112 ( 3.1e+03 ) rate = 3.132476e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3112 ( 3.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3112 ( 3.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 12 ( 1.2e+01 ) Ntotal = 3124 ( 3.1e+03 ) rate = 1.174895e+04 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 3128 ( 3.1e+03 ) rate = 3.800630e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3128 ( 3.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 3129 ( 3.1e+03 ) rate = 9.944915e+02 N.s^-1
SPH setup: Nstep = 15 ( 1.5e+01 ) Ntotal = 3144 ( 3.1e+03 ) rate = 1.507053e+04 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 3148 ( 3.1e+03 ) rate = 3.856355e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3148 ( 3.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3148 ( 3.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3148 ( 3.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3148 ( 3.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3148 ( 3.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3148 ( 3.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3148 ( 3.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3148 ( 3.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 3156 ( 3.2e+03 ) rate = 7.779142e+03 N.s^-1
SPH setup: Nstep = 11 ( 1.1e+01 ) Ntotal = 3167 ( 3.2e+03 ) rate = 1.117069e+04 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3167 ( 3.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3167 ( 3.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 3173 ( 3.2e+03 ) rate = 5.727333e+03 N.s^-1
SPH setup: Nstep = 11 ( 1.1e+01 ) Ntotal = 3184 ( 3.2e+03 ) rate = 1.087580e+04 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3184 ( 3.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3184 ( 3.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 3189 ( 3.2e+03 ) rate = 4.838112e+03 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 3195 ( 3.2e+03 ) rate = 6.178147e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3195 ( 3.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3195 ( 3.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 3200 ( 3.2e+03 ) rate = 4.735642e+03 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 3206 ( 3.2e+03 ) rate = 5.869119e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3206 ( 3.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3206 ( 3.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 3213 ( 3.2e+03 ) rate = 6.701566e+03 N.s^-1
SPH setup: Nstep = 10 ( 1.0e+01 ) Ntotal = 3223 ( 3.2e+03 ) rate = 9.943333e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3223 ( 3.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3223 ( 3.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 10 ( 1.0e+01 ) Ntotal = 3233 ( 3.2e+03 ) rate = 9.695212e+03 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 3242 ( 3.2e+03 ) rate = 9.379954e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3242 ( 3.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3242 ( 3.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3242 ( 3.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3242 ( 3.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3242 ( 3.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3242 ( 3.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3242 ( 3.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3242 ( 3.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3242 ( 3.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3242 ( 3.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 11 ( 1.1e+01 ) Ntotal = 3253 ( 3.3e+03 ) rate = 1.041051e+04 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 3261 ( 3.3e+03 ) rate = 7.988648e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3261 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3261 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 12 ( 1.2e+01 ) Ntotal = 3273 ( 3.3e+03 ) rate = 1.147410e+04 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 3280 ( 3.3e+03 ) rate = 6.922886e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3280 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3280 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3280 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3280 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3280 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3280 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 3289 ( 3.3e+03 ) rate = 9.055993e+03 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 3295 ( 3.3e+03 ) rate = 5.986757e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3295 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3295 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 3304 ( 3.3e+03 ) rate = 8.633433e+03 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 3310 ( 3.3e+03 ) rate = 6.125762e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3310 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3310 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 14 ( 1.4e+01 ) Ntotal = 3324 ( 3.3e+03 ) rate = 1.343846e+04 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 5.152711e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3329 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 3337 ( 3.3e+03 ) rate = 7.349199e+03 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 3345 ( 3.3e+03 ) rate = 7.936791e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3345 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3345 ( 3.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 3350 ( 3.4e+03 ) rate = 4.647397e+03 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 3355 ( 3.4e+03 ) rate = 5.196922e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3355 ( 3.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3355 ( 3.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3355 ( 3.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3355 ( 3.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3355 ( 3.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3355 ( 3.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3355 ( 3.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3355 ( 3.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3355 ( 3.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3355 ( 3.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 3362 ( 3.4e+03 ) rate = 6.668496e+03 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 3367 ( 3.4e+03 ) rate = 5.057366e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3367 ( 3.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3367 ( 3.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 3375 ( 3.4e+03 ) rate = 7.784896e+03 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 3381 ( 3.4e+03 ) rate = 6.016702e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3381 ( 3.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3381 ( 3.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3381 ( 3.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3381 ( 3.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3381 ( 3.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3381 ( 3.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3381 ( 3.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3381 ( 3.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3381 ( 3.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3381 ( 3.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 3390 ( 3.4e+03 ) rate = 8.498592e+03 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 3395 ( 3.4e+03 ) rate = 4.927390e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3395 ( 3.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3395 ( 3.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 3404 ( 3.4e+03 ) rate = 8.581481e+03 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 3407 ( 3.4e+03 ) rate = 3.004221e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3407 ( 3.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3407 ( 3.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3407 ( 3.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3407 ( 3.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3407 ( 3.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3407 ( 3.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3407 ( 3.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3407 ( 3.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3407 ( 3.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3407 ( 3.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 3415 ( 3.4e+03 ) rate = 7.446106e+03 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 3417 ( 3.4e+03 ) rate = 1.954495e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3417 ( 3.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 3418 ( 3.4e+03 ) rate = 9.204120e+02 N.s^-1
SPH setup: Nstep = 12 ( 1.2e+01 ) Ntotal = 3430 ( 3.4e+03 ) rate = 1.141744e+04 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 3433 ( 3.4e+03 ) rate = 2.293923e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3433 ( 3.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3433 ( 3.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3433 ( 3.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3433 ( 3.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3433 ( 3.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3433 ( 3.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3433 ( 3.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3433 ( 3.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 3439 ( 3.4e+03 ) rate = 5.434522e+03 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 3448 ( 3.4e+03 ) rate = 9.012834e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3448 ( 3.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3448 ( 3.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 3453 ( 3.5e+03 ) rate = 5.148567e+03 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 3459 ( 3.5e+03 ) rate = 6.156113e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3459 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3459 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3459 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3459 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3459 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3459 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3459 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3459 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3459 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3459 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 3465 ( 3.5e+03 ) rate = 5.866588e+03 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 3470 ( 3.5e+03 ) rate = 4.948158e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3470 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3470 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 3478 ( 3.5e+03 ) rate = 7.499456e+03 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 3485 ( 3.5e+03 ) rate = 7.171360e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3485 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3485 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3485 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3485 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3485 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3485 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3485 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3485 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3485 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3485 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 3491 ( 3.5e+03 ) rate = 5.734794e+03 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 3498 ( 3.5e+03 ) rate = 6.893645e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3498 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3498 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 3505 ( 3.5e+03 ) rate = 6.562523e+03 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 3511 ( 3.5e+03 ) rate = 6.001332e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3511 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3511 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3511 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3511 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3511 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3511 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 3516 ( 3.5e+03 ) rate = 4.510144e+03 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 3518 ( 3.5e+03 ) rate = 2.004964e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3518 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3518 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 3523 ( 3.5e+03 ) rate = 4.796816e+03 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 3525 ( 3.5e+03 ) rate = 2.037710e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3525 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3525 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 10 ( 1.0e+01 ) Ntotal = 3535 ( 3.5e+03 ) rate = 9.249154e+03 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 4.810269e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3540 ( 3.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 3549 ( 3.5e+03 ) rate = 8.314602e+03 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 3556 ( 3.6e+03 ) rate = 4.427454e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3556 ( 3.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3556 ( 3.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 3561 ( 3.6e+03 ) rate = 4.688351e+03 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 3566 ( 3.6e+03 ) rate = 4.957588e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3566 ( 3.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3566 ( 3.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3566 ( 3.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3566 ( 3.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3566 ( 3.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3566 ( 3.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3566 ( 3.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3566 ( 3.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3566 ( 3.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3566 ( 3.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 3573 ( 3.6e+03 ) rate = 6.262760e+03 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 3578 ( 3.6e+03 ) rate = 4.972408e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3578 ( 3.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3578 ( 3.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 3586 ( 3.6e+03 ) rate = 7.530227e+03 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 3592 ( 3.6e+03 ) rate = 6.121624e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3592 ( 3.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3592 ( 3.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3592 ( 3.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3592 ( 3.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3592 ( 3.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3592 ( 3.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3592 ( 3.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3592 ( 3.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3592 ( 3.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3592 ( 3.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 10 ( 1.0e+01 ) Ntotal = 3602 ( 3.6e+03 ) rate = 9.828097e+03 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 3606 ( 3.6e+03 ) rate = 4.009523e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3606 ( 3.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3606 ( 3.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 3615 ( 3.6e+03 ) rate = 8.774444e+03 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 3618 ( 3.6e+03 ) rate = 2.918714e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3618 ( 3.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3618 ( 3.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3618 ( 3.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3618 ( 3.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3618 ( 3.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3618 ( 3.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3618 ( 3.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3618 ( 3.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3618 ( 3.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3618 ( 3.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 3626 ( 3.6e+03 ) rate = 6.967937e+03 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 3628 ( 3.6e+03 ) rate = 1.908127e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3628 ( 3.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 3629 ( 3.6e+03 ) rate = 9.592345e+02 N.s^-1
SPH setup: Nstep = 13 ( 1.3e+01 ) Ntotal = 3642 ( 3.6e+03 ) rate = 1.338614e+04 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 3644 ( 3.6e+03 ) rate = 2.023376e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3644 ( 3.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3644 ( 3.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3644 ( 3.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3644 ( 3.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3644 ( 3.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3644 ( 3.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3644 ( 3.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3644 ( 3.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 3651 ( 3.7e+03 ) rate = 6.740556e+03 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 3659 ( 3.7e+03 ) rate = 7.928516e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3659 ( 3.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3659 ( 3.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 3664 ( 3.7e+03 ) rate = 4.889636e+03 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 3670 ( 3.7e+03 ) rate = 5.869119e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3670 ( 3.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3670 ( 3.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3670 ( 3.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3670 ( 3.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3670 ( 3.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3670 ( 3.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3670 ( 3.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3670 ( 3.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3670 ( 3.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3670 ( 3.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 3676 ( 3.7e+03 ) rate = 5.989267e+03 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 3681 ( 3.7e+03 ) rate = 5.033189e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3681 ( 3.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3681 ( 3.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 3689 ( 3.7e+03 ) rate = 7.905052e+03 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 3696 ( 3.7e+03 ) rate = 7.309873e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3696 ( 3.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3696 ( 3.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3696 ( 3.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3696 ( 3.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3696 ( 3.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3696 ( 3.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3696 ( 3.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3696 ( 3.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3696 ( 3.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3696 ( 3.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 3703 ( 3.7e+03 ) rate = 6.849724e+03 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 3709 ( 3.7e+03 ) rate = 6.066618e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3709 ( 3.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3709 ( 3.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 3716 ( 3.7e+03 ) rate = 6.527452e+03 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 3722 ( 3.7e+03 ) rate = 6.147390e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3722 ( 3.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3722 ( 3.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3722 ( 3.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3722 ( 3.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3722 ( 3.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3722 ( 3.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 3727 ( 3.7e+03 ) rate = 4.803789e+03 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 3729 ( 3.7e+03 ) rate = 2.000384e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3729 ( 3.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3729 ( 3.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 3734 ( 3.7e+03 ) rate = 4.816213e+03 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 3736 ( 3.7e+03 ) rate = 1.960830e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3736 ( 3.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3736 ( 3.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 11 ( 1.1e+01 ) Ntotal = 3747 ( 3.7e+03 ) rate = 1.086266e+04 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 4.039425e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3751 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 3753 ( 3.8e+03 ) rate = 1.784816e+03 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 3755 ( 3.8e+03 ) rate = 1.884208e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3755 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3755 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3755 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3755 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3755 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3755 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3755 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3755 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3755 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3755 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3755 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3755 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3755 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3755 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3755 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3755 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3755 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3755 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3755 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3755 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3755 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3755 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3755 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3755 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3755 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3755 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3755 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3755 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3755 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3755 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3755 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3755 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3755 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3755 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3755 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3755 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3755 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3755 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3755 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3755 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3755 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3755 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3755 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3755 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3755 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3755 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3755 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3755 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3755 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 3756 ( 3.8e+03 ) rate = 9.736634e+02 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 3758 ( 3.8e+03 ) rate = 2.050374e+03 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 3759 ( 3.8e+03 ) rate = 9.973232e+02 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3759 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3759 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3759 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3759 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3759 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3759 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3759 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3759 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3759 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 3760 ( 3.8e+03 ) rate = 9.387900e+02 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3760 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3760 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3760 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3760 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3760 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3760 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3760 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3760 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3760 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3760 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3760 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3760 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3760 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3760 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3760 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3760 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3760 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3760 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3760 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 3761 ( 3.8e+03 ) rate = 9.344921e+02 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3761 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3761 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3761 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3761 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3761 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3761 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3761 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3761 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3761 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3761 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3761 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3761 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3761 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3761 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3761 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3761 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3761 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3761 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3761 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3761 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3761 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3761 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3761 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3761 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3761 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3761 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3761 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3761 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3761 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3761 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 2.863065e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3764 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 11 ( 1.1e+01 ) Ntotal = 3775 ( 3.8e+03 ) rate = 9.643861e+03 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 3782 ( 3.8e+03 ) rate = 6.430431e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3782 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3782 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 3790 ( 3.8e+03 ) rate = 7.175319e+03 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 3796 ( 3.8e+03 ) rate = 6.035987e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3796 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3796 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 3802 ( 3.8e+03 ) rate = 5.915258e+03 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 3806 ( 3.8e+03 ) rate = 3.913894e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3806 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3806 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3806 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3806 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3806 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3806 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 11 ( 1.1e+01 ) Ntotal = 3817 ( 3.8e+03 ) rate = 1.015750e+04 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 3822 ( 3.8e+03 ) rate = 4.829873e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3822 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3822 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 13 ( 1.3e+01 ) Ntotal = 3835 ( 3.8e+03 ) rate = 1.224806e+04 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 3840 ( 3.8e+03 ) rate = 4.992855e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3840 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3840 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3840 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3840 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3840 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3840 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3840 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3840 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3840 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3840 ( 3.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 14 ( 1.4e+01 ) Ntotal = 3854 ( 3.9e+03 ) rate = 1.362504e+04 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 3858 ( 3.9e+03 ) rate = 4.074050e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3858 ( 3.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3858 ( 3.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 13 ( 1.3e+01 ) Ntotal = 3871 ( 3.9e+03 ) rate = 1.236029e+04 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 3874 ( 3.9e+03 ) rate = 2.911389e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3874 ( 3.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3874 ( 3.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3874 ( 3.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3874 ( 3.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3874 ( 3.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3874 ( 3.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 3883 ( 3.9e+03 ) rate = 8.330803e+03 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 3884 ( 3.9e+03 ) rate = 9.406754e+02 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3884 ( 3.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 3885 ( 3.9e+03 ) rate = 9.822575e+02 N.s^-1
SPH setup: Nstep = 11 ( 1.1e+01 ) Ntotal = 3896 ( 3.9e+03 ) rate = 1.113432e+04 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 3898 ( 3.9e+03 ) rate = 2.086679e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3898 ( 3.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 3901 ( 3.9e+03 ) rate = 2.908958e+03 N.s^-1
SPH setup: Nstep = 13 ( 1.3e+01 ) Ntotal = 3914 ( 3.9e+03 ) rate = 1.224851e+04 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 3916 ( 3.9e+03 ) rate = 1.885757e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3916 ( 3.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3916 ( 3.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3916 ( 3.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3916 ( 3.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3916 ( 3.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3916 ( 3.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3916 ( 3.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3916 ( 3.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 3925 ( 3.9e+03 ) rate = 8.781130e+03 N.s^-1
SPH setup: Nstep = 10 ( 1.0e+01 ) Ntotal = 3935 ( 3.9e+03 ) rate = 9.858384e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3935 ( 3.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3935 ( 3.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 3943 ( 3.9e+03 ) rate = 7.799202e+03 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 3950 ( 4.0e+03 ) rate = 7.048096e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3950 ( 4.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3950 ( 4.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 3954 ( 4.0e+03 ) rate = 3.622785e+03 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 3957 ( 4.0e+03 ) rate = 2.951277e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3957 ( 4.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3957 ( 4.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 3961 ( 4.0e+03 ) rate = 3.834911e+03 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 3964 ( 4.0e+03 ) rate = 2.804719e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3964 ( 4.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3964 ( 4.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 3972 ( 4.0e+03 ) rate = 7.123274e+03 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 3979 ( 4.0e+03 ) rate = 6.986432e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3979 ( 4.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3979 ( 4.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 12 ( 1.2e+01 ) Ntotal = 3991 ( 4.0e+03 ) rate = 1.119808e+04 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 3998 ( 4.0e+03 ) rate = 6.745954e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3998 ( 4.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3998 ( 4.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3998 ( 4.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3998 ( 4.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3998 ( 4.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3998 ( 4.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3998 ( 4.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3998 ( 4.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3998 ( 4.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 3998 ( 4.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 11 ( 1.1e+01 ) Ntotal = 4009 ( 4.0e+03 ) rate = 9.856322e+03 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 4015 ( 4.0e+03 ) rate = 6.236961e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4015 ( 4.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4015 ( 4.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 12 ( 1.2e+01 ) Ntotal = 4027 ( 4.0e+03 ) rate = 1.151557e+04 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 4032 ( 4.0e+03 ) rate = 4.298546e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4032 ( 4.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4032 ( 4.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4032 ( 4.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4032 ( 4.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4032 ( 4.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4032 ( 4.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 4041 ( 4.0e+03 ) rate = 8.494733e+03 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 4045 ( 4.0e+03 ) rate = 4.024278e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4045 ( 4.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4045 ( 4.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 4054 ( 4.1e+03 ) rate = 8.607630e+03 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 4058 ( 4.1e+03 ) rate = 4.033218e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4058 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4058 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 15 ( 1.5e+01 ) Ntotal = 4073 ( 4.1e+03 ) rate = 1.445158e+04 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 4.300483e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4077 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 12 ( 1.2e+01 ) Ntotal = 4089 ( 4.1e+03 ) rate = 1.143869e+04 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 4095 ( 4.1e+03 ) rate = 6.126888e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4095 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4095 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 4103 ( 4.1e+03 ) rate = 7.490875e+03 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 4109 ( 4.1e+03 ) rate = 5.897322e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4109 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4109 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 4115 ( 4.1e+03 ) rate = 5.591408e+03 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 4119 ( 4.1e+03 ) rate = 4.107957e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4119 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4119 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4119 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4119 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4119 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4119 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 11 ( 1.1e+01 ) Ntotal = 4130 ( 4.1e+03 ) rate = 1.082359e+04 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 4135 ( 4.1e+03 ) rate = 5.125824e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4135 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4135 ( 4.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 14 ( 1.4e+01 ) Ntotal = 4149 ( 4.1e+03 ) rate = 1.345735e+04 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 4153 ( 4.2e+03 ) rate = 4.113500e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4153 ( 4.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4153 ( 4.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4153 ( 4.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4153 ( 4.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4153 ( 4.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4153 ( 4.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4153 ( 4.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4153 ( 4.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4153 ( 4.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 4154 ( 4.2e+03 ) rate = 9.744708e+02 N.s^-1
SPH setup: Nstep = 14 ( 1.4e+01 ) Ntotal = 4168 ( 4.2e+03 ) rate = 3.107473e+03 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 4171 ( 4.2e+03 ) rate = 2.731962e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4171 ( 4.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 4172 ( 4.2e+03 ) rate = 9.390729e+02 N.s^-1
SPH setup: Nstep = 12 ( 1.2e+01 ) Ntotal = 4184 ( 4.2e+03 ) rate = 1.155245e+04 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 4187 ( 4.2e+03 ) rate = 2.860085e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4187 ( 4.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4187 ( 4.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4187 ( 4.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4187 ( 4.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4187 ( 4.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 4188 ( 4.2e+03 ) rate = 9.475422e+02 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 4196 ( 4.2e+03 ) rate = 7.635205e+03 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 4197 ( 4.2e+03 ) rate = 9.750514e+02 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4197 ( 4.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 4198 ( 4.2e+03 ) rate = 9.818331e+02 N.s^-1
SPH setup: Nstep = 11 ( 1.1e+01 ) Ntotal = 4209 ( 4.2e+03 ) rate = 1.049099e+04 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 4211 ( 4.2e+03 ) rate = 2.129347e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4211 ( 4.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 4215 ( 4.2e+03 ) rate = 3.848515e+03 N.s^-1
SPH setup: Nstep = 13 ( 1.3e+01 ) Ntotal = 4228 ( 4.2e+03 ) rate = 1.279807e+04 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 4229 ( 4.2e+03 ) rate = 1.006302e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4229 ( 4.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4229 ( 4.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4229 ( 4.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4229 ( 4.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4229 ( 4.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4229 ( 4.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4229 ( 4.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4229 ( 4.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 10 ( 1.0e+01 ) Ntotal = 4239 ( 4.2e+03 ) rate = 9.342564e+03 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 4248 ( 4.2e+03 ) rate = 9.015010e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4248 ( 4.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4248 ( 4.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 4256 ( 4.3e+03 ) rate = 7.463153e+03 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 4263 ( 4.3e+03 ) rate = 7.049949e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4263 ( 4.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4263 ( 4.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 4267 ( 4.3e+03 ) rate = 3.815851e+03 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 4270 ( 4.3e+03 ) rate = 3.093319e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4270 ( 4.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4270 ( 4.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 4274 ( 4.3e+03 ) rate = 3.806030e+03 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 4277 ( 4.3e+03 ) rate = 3.020369e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4277 ( 4.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4277 ( 4.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 4285 ( 4.3e+03 ) rate = 7.748267e+03 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 4292 ( 4.3e+03 ) rate = 6.871274e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4292 ( 4.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4292 ( 4.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 13 ( 1.3e+01 ) Ntotal = 4305 ( 4.3e+03 ) rate = 1.177255e+04 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 4311 ( 4.3e+03 ) rate = 5.601870e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4311 ( 4.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4311 ( 4.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4311 ( 4.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4311 ( 4.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4311 ( 4.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4311 ( 4.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4311 ( 4.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4311 ( 4.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4311 ( 4.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4311 ( 4.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 12 ( 1.2e+01 ) Ntotal = 4323 ( 4.3e+03 ) rate = 1.172616e+04 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 4328 ( 4.3e+03 ) rate = 4.959658e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4328 ( 4.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4328 ( 4.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 12 ( 1.2e+01 ) Ntotal = 4340 ( 4.3e+03 ) rate = 1.152499e+04 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 4345 ( 4.3e+03 ) rate = 5.331326e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4345 ( 4.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4345 ( 4.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4345 ( 4.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4345 ( 4.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4345 ( 4.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4345 ( 4.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 4354 ( 4.4e+03 ) rate = 8.714259e+03 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 4358 ( 4.4e+03 ) rate = 4.153083e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4358 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4358 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 4367 ( 4.4e+03 ) rate = 8.766906e+03 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 4371 ( 4.4e+03 ) rate = 4.009085e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4371 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 4372 ( 4.4e+03 ) rate = 9.467249e+02 N.s^-1
SPH setup: Nstep = 15 ( 1.5e+01 ) Ntotal = 4387 ( 4.4e+03 ) rate = 1.476920e+04 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 2.939254e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4390 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 4393 ( 4.4e+03 ) rate = 2.736607e+03 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 4394 ( 4.4e+03 ) rate = 9.944816e+02 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4394 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4394 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4394 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4394 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4394 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4394 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4394 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4394 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4394 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4394 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4394 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4394 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4394 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4394 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4394 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4394 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4394 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4394 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4394 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4394 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4394 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4394 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4394 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4394 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4394 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4394 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4394 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4394 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4394 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4394 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4394 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4394 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4394 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4394 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4394 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4394 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4394 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4394 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4394 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4394 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4394 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4394 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4394 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4394 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4394 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4394 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4394 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4394 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4394 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 4395 ( 4.4e+03 ) rate = 9.534343e+02 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 4398 ( 4.4e+03 ) rate = 2.989105e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4398 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4398 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4398 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4398 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4398 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4398 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4398 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4398 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4398 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4398 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 4399 ( 4.4e+03 ) rate = 7.952602e+02 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4399 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4399 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4399 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4399 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4399 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4399 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4399 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4399 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4399 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4399 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4399 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4399 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4399 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4399 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4399 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4399 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4399 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4399 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 4400 ( 4.4e+03 ) rate = 9.476140e+02 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4400 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4400 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4400 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4400 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4400 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4400 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4400 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4400 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4400 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4400 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4400 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4400 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4400 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4400 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4400 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4400 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4400 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4400 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4400 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4400 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4400 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4400 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4400 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4400 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4400 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4400 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4400 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4400 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4400 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4400 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4400 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 2.895540e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4403 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 14 ( 1.4e+01 ) Ntotal = 4417 ( 4.4e+03 ) rate = 1.346019e+04 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 4423 ( 4.4e+03 ) rate = 5.682071e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4423 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4423 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 11 ( 1.1e+01 ) Ntotal = 4434 ( 4.4e+03 ) rate = 1.031553e+04 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 4439 ( 4.4e+03 ) rate = 4.950755e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4439 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4439 ( 4.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 4448 ( 4.4e+03 ) rate = 8.891163e+03 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 4451 ( 4.5e+03 ) rate = 2.353141e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4451 ( 4.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4451 ( 4.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 4455 ( 4.5e+03 ) rate = 3.849593e+03 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 4457 ( 4.5e+03 ) rate = 1.980322e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4457 ( 4.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4457 ( 4.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 14 ( 1.4e+01 ) Ntotal = 4471 ( 4.5e+03 ) rate = 1.336979e+04 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 4475 ( 4.5e+03 ) rate = 3.872029e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4475 ( 4.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 4476 ( 4.5e+03 ) rate = 9.602873e+02 N.s^-1
SPH setup: Nstep = 15 ( 1.5e+01 ) Ntotal = 4491 ( 4.5e+03 ) rate = 1.474097e+04 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 4495 ( 4.5e+03 ) rate = 4.103482e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4495 ( 4.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4495 ( 4.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4495 ( 4.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4495 ( 4.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4495 ( 4.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4495 ( 4.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4495 ( 4.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4495 ( 4.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4495 ( 4.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 4498 ( 4.5e+03 ) rate = 2.930537e+03 N.s^-1
SPH setup: Nstep = 14 ( 1.4e+01 ) Ntotal = 4512 ( 4.5e+03 ) rate = 1.454094e+04 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 4515 ( 4.5e+03 ) rate = 2.764065e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4515 ( 4.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 4518 ( 4.5e+03 ) rate = 3.083444e+03 N.s^-1
SPH setup: Nstep = 13 ( 1.3e+01 ) Ntotal = 4531 ( 4.5e+03 ) rate = 1.409040e+04 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 4533 ( 4.5e+03 ) rate = 2.005710e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4533 ( 4.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 4534 ( 4.5e+03 ) rate = 1.036600e+03 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 4539 ( 4.5e+03 ) rate = 4.723764e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4539 ( 4.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4539 ( 4.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 4541 ( 4.5e+03 ) rate = 1.948201e+03 N.s^-1
SPH setup: Nstep = 10 ( 1.0e+01 ) Ntotal = 4551 ( 4.6e+03 ) rate = 9.978228e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4551 ( 4.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4551 ( 4.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 4554 ( 4.6e+03 ) rate = 2.952791e+03 N.s^-1
SPH setup: Nstep = 13 ( 1.3e+01 ) Ntotal = 4567 ( 4.6e+03 ) rate = 1.266752e+04 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4567 ( 4.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4567 ( 4.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 4572 ( 4.6e+03 ) rate = 4.587463e+03 N.s^-1
SPH setup: Nstep = 15 ( 1.5e+01 ) Ntotal = 4587 ( 4.6e+03 ) rate = 1.532381e+04 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4587 ( 4.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4587 ( 4.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4587 ( 4.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4587 ( 4.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4587 ( 4.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4587 ( 4.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4587 ( 4.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4587 ( 4.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4587 ( 4.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 11 ( 1.1e+01 ) Ntotal = 4598 ( 4.6e+03 ) rate = 9.932827e+03 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 4606 ( 4.6e+03 ) rate = 7.542459e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4606 ( 4.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4606 ( 4.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 10 ( 1.0e+01 ) Ntotal = 4616 ( 4.6e+03 ) rate = 9.065353e+03 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 4623 ( 4.6e+03 ) rate = 6.398690e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4623 ( 4.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4623 ( 4.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 4628 ( 4.6e+03 ) rate = 4.567900e+03 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 4632 ( 4.6e+03 ) rate = 3.889265e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4632 ( 4.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4632 ( 4.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 4637 ( 4.6e+03 ) rate = 4.626460e+03 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 4641 ( 4.6e+03 ) rate = 4.063971e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4641 ( 4.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4641 ( 4.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 11 ( 1.1e+01 ) Ntotal = 4652 ( 4.7e+03 ) rate = 1.036648e+04 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 4658 ( 4.7e+03 ) rate = 5.953722e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4658 ( 4.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4658 ( 4.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 14 ( 1.4e+01 ) Ntotal = 4672 ( 4.7e+03 ) rate = 1.300884e+04 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 4677 ( 4.7e+03 ) rate = 4.750883e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4677 ( 4.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4677 ( 4.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4677 ( 4.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4677 ( 4.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4677 ( 4.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4677 ( 4.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4677 ( 4.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4677 ( 4.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4677 ( 4.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4677 ( 4.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 15 ( 1.5e+01 ) Ntotal = 4692 ( 4.7e+03 ) rate = 1.387604e+04 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 4696 ( 4.7e+03 ) rate = 3.886012e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4696 ( 4.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4696 ( 4.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 15 ( 1.5e+01 ) Ntotal = 4711 ( 4.7e+03 ) rate = 1.452180e+04 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 4715 ( 4.7e+03 ) rate = 3.867451e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4715 ( 4.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4715 ( 4.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4715 ( 4.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4715 ( 4.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4715 ( 4.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 4716 ( 4.7e+03 ) rate = 9.620722e+02 N.s^-1
SPH setup: Nstep = 11 ( 1.1e+01 ) Ntotal = 4727 ( 4.7e+03 ) rate = 1.064354e+04 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 4730 ( 4.7e+03 ) rate = 2.852131e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4730 ( 4.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 4731 ( 4.7e+03 ) rate = 9.348162e+02 N.s^-1
SPH setup: Nstep = 12 ( 1.2e+01 ) Ntotal = 4743 ( 4.7e+03 ) rate = 1.230210e+04 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 4745 ( 4.7e+03 ) rate = 2.012483e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4745 ( 4.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 4748 ( 4.7e+03 ) rate = 3.016264e+03 N.s^-1
SPH setup: Nstep = 14 ( 1.4e+01 ) Ntotal = 4762 ( 4.8e+03 ) rate = 1.431642e+04 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 2.014066e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4764 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 13 ( 1.3e+01 ) Ntotal = 4777 ( 4.8e+03 ) rate = 1.127617e+04 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 4782 ( 4.8e+03 ) rate = 5.093750e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4782 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4782 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 4791 ( 4.8e+03 ) rate = 8.822094e+03 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 4794 ( 4.8e+03 ) rate = 3.133359e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4794 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4794 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 4800 ( 4.8e+03 ) rate = 5.927261e+03 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 4802 ( 4.8e+03 ) rate = 1.994447e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4802 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4802 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4802 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4802 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4802 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4802 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 13 ( 1.3e+01 ) Ntotal = 4815 ( 4.8e+03 ) rate = 1.194850e+04 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 4818 ( 4.8e+03 ) rate = 2.972781e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4818 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 4819 ( 4.8e+03 ) rate = 9.532707e+02 N.s^-1
SPH setup: Nstep = 12 ( 1.2e+01 ) Ntotal = 4831 ( 4.8e+03 ) rate = 8.491962e+03 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 4834 ( 4.8e+03 ) rate = 3.073632e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4834 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4834 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4834 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4834 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4834 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4834 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4834 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4834 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4834 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 4836 ( 4.8e+03 ) rate = 1.832863e+03 N.s^-1
SPH setup: Nstep = 12 ( 1.2e+01 ) Ntotal = 4848 ( 4.8e+03 ) rate = 1.097501e+04 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 4850 ( 4.8e+03 ) rate = 1.994268e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4850 ( 4.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 4853 ( 4.9e+03 ) rate = 2.892433e+03 N.s^-1
SPH setup: Nstep = 12 ( 1.2e+01 ) Ntotal = 4865 ( 4.9e+03 ) rate = 1.237916e+04 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 4866 ( 4.9e+03 ) rate = 9.816972e+02 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4866 ( 4.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4866 ( 4.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4866 ( 4.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4866 ( 4.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4866 ( 4.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 4867 ( 4.9e+03 ) rate = 9.644429e+02 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 4874 ( 4.9e+03 ) rate = 7.133082e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4874 ( 4.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4874 ( 4.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 4877 ( 4.9e+03 ) rate = 2.828126e+03 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 4886 ( 4.9e+03 ) rate = 9.359138e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4886 ( 4.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4886 ( 4.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 4891 ( 4.9e+03 ) rate = 4.821471e+03 N.s^-1
SPH setup: Nstep = 13 ( 1.3e+01 ) Ntotal = 4904 ( 4.9e+03 ) rate = 1.301593e+04 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4904 ( 4.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4904 ( 4.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4904 ( 4.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4904 ( 4.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4904 ( 4.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4904 ( 4.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4904 ( 4.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4904 ( 4.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4904 ( 4.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 10 ( 1.0e+01 ) Ntotal = 4914 ( 4.9e+03 ) rate = 9.989002e+03 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 4921 ( 4.9e+03 ) rate = 7.170412e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4921 ( 4.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4921 ( 4.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 4928 ( 4.9e+03 ) rate = 6.726733e+03 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 4934 ( 4.9e+03 ) rate = 6.138377e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4934 ( 4.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4934 ( 4.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 4937 ( 4.9e+03 ) rate = 2.879115e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4937 ( 4.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4937 ( 4.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4937 ( 4.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 4940 ( 4.9e+03 ) rate = 2.915103e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4940 ( 4.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4940 ( 4.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4940 ( 4.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 4948 ( 4.9e+03 ) rate = 7.698066e+03 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 4953 ( 5.0e+03 ) rate = 4.972062e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4953 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4953 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 12 ( 1.2e+01 ) Ntotal = 4965 ( 5.0e+03 ) rate = 1.175725e+04 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 4970 ( 5.0e+03 ) rate = 4.896642e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4970 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4970 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4970 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4970 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4970 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4970 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4970 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4970 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4970 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4970 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 11 ( 1.1e+01 ) Ntotal = 4981 ( 5.0e+03 ) rate = 1.040282e+04 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 4985 ( 5.0e+03 ) rate = 3.664114e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4985 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 4985 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 12 ( 1.2e+01 ) Ntotal = 4997 ( 5.0e+03 ) rate = 1.096868e+04 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 5000 ( 5.0e+03 ) rate = 2.904838e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5000 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5000 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5000 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5000 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5000 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5000 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 10 ( 1.0e+01 ) Ntotal = 5010 ( 5.0e+03 ) rate = 9.454235e+03 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 5011 ( 5.0e+03 ) rate = 1.010429e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5011 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 5012 ( 5.0e+03 ) rate = 1.026705e+03 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 5021 ( 5.0e+03 ) rate = 8.849114e+03 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 5022 ( 5.0e+03 ) rate = 1.004297e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5022 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 5024 ( 5.0e+03 ) rate = 2.012099e+03 N.s^-1
SPH setup: Nstep = 13 ( 1.3e+01 ) Ntotal = 5037 ( 5.0e+03 ) rate = 1.339648e+04 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 2.021450e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5039 ( 5.0e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 5048 ( 5.0e+03 ) rate = 8.148085e+03 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 5051 ( 5.1e+03 ) rate = 3.039840e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5051 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5051 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5051 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5051 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5051 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5051 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5051 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5051 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5051 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5051 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5051 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5051 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5051 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5051 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 5057 ( 5.1e+03 ) rate = 5.909892e+03 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 5059 ( 5.1e+03 ) rate = 2.021634e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5059 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5059 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 5068 ( 5.1e+03 ) rate = 8.654903e+03 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 5069 ( 5.1e+03 ) rate = 9.646290e+02 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5069 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5069 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5069 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5069 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5069 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5069 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5069 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5069 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5069 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 5071 ( 5.1e+03 ) rate = 1.944462e+03 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 5079 ( 5.1e+03 ) rate = 8.088423e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5079 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5079 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 5080 ( 5.1e+03 ) rate = 9.720894e+02 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 5087 ( 5.1e+03 ) rate = 6.857179e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5087 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5087 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5087 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5087 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5087 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5087 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5087 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5087 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5087 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5087 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5087 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5087 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5087 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5087 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 5090 ( 5.1e+03 ) rate = 2.185530e+03 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 5099 ( 5.1e+03 ) rate = 8.921181e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5099 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5099 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5099 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5099 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5099 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5099 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5099 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5099 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5099 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 5106 ( 5.1e+03 ) rate = 6.793175e+03 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 5110 ( 5.1e+03 ) rate = 4.114735e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5110 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5110 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 5113 ( 5.1e+03 ) rate = 2.850581e+03 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 5115 ( 5.1e+03 ) rate = 1.970255e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5115 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5115 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5115 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5115 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5115 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5115 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5115 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5115 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5115 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5115 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 5118 ( 5.1e+03 ) rate = 2.852592e+03 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 5120 ( 5.1e+03 ) rate = 1.985263e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5120 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5120 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 5129 ( 5.1e+03 ) rate = 8.726790e+03 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 5131 ( 5.1e+03 ) rate = 2.001788e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5131 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5131 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5131 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5131 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5131 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5131 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5131 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5131 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5131 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5131 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 5138 ( 5.1e+03 ) rate = 6.730032e+03 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 5140 ( 5.1e+03 ) rate = 2.066566e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5140 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5140 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 5147 ( 5.1e+03 ) rate = 6.754429e+03 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 5149 ( 5.1e+03 ) rate = 1.955835e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5149 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5149 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5149 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5149 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5149 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5149 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5149 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5149 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5149 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5149 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5149 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5149 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5149 ( 5.1e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 5151 ( 5.2e+03 ) rate = 1.910720e+03 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 8.431032e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5160 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 5169 ( 5.2e+03 ) rate = 8.588204e+03 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 5172 ( 5.2e+03 ) rate = 2.795519e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5172 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5172 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5172 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5172 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5172 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5172 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5172 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5172 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5172 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5172 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5172 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5172 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5172 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5172 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 5179 ( 5.2e+03 ) rate = 6.369983e+03 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 5180 ( 5.2e+03 ) rate = 8.560075e+02 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5180 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 5181 ( 5.2e+03 ) rate = 9.461767e+02 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 5189 ( 5.2e+03 ) rate = 7.547732e+03 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 5190 ( 5.2e+03 ) rate = 9.292817e+02 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5190 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5190 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5190 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5190 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5190 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5190 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5190 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5190 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5190 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 5192 ( 5.2e+03 ) rate = 1.801795e+03 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 5200 ( 5.2e+03 ) rate = 7.666727e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5200 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5200 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 5201 ( 5.2e+03 ) rate = 9.090612e+02 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 5208 ( 5.2e+03 ) rate = 6.394645e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5208 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5208 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5208 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5208 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5208 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5208 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5208 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5208 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5208 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5208 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5208 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5208 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5208 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5208 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 5211 ( 5.2e+03 ) rate = 2.818863e+03 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 5220 ( 5.2e+03 ) rate = 9.144111e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5220 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5220 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5220 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5220 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5220 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5220 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5220 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5220 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5220 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 5227 ( 5.2e+03 ) rate = 6.818439e+03 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 5231 ( 5.2e+03 ) rate = 3.986144e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5231 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5231 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 5234 ( 5.2e+03 ) rate = 2.911445e+03 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 5236 ( 5.2e+03 ) rate = 1.952183e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5236 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5236 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5236 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5236 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5236 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5236 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5236 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5236 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5236 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5236 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 5239 ( 5.2e+03 ) rate = 2.838154e+03 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 5241 ( 5.2e+03 ) rate = 1.943780e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5241 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5241 ( 5.2e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 5250 ( 5.2e+03 ) rate = 8.589360e+03 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 5252 ( 5.3e+03 ) rate = 3.026708e+02 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5252 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5252 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5252 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5252 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5252 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5252 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5252 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5252 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5252 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5252 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 5259 ( 5.3e+03 ) rate = 6.710000e+03 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 5261 ( 5.3e+03 ) rate = 1.998379e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5261 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5261 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 5269 ( 5.3e+03 ) rate = 7.991681e+03 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 5270 ( 5.3e+03 ) rate = 1.014505e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5270 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5270 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5270 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5270 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5270 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5270 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5270 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5270 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5270 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5270 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5270 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5270 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5270 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 5272 ( 5.3e+03 ) rate = 1.862619e+03 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 8.955598e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5281 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 14 ( 1.4e+01 ) Ntotal = 5295 ( 5.3e+03 ) rate = 1.281545e+04 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 5299 ( 5.3e+03 ) rate = 4.118680e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5299 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5299 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 10 ( 1.0e+01 ) Ntotal = 5309 ( 5.3e+03 ) rate = 8.960686e+03 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 5311 ( 5.3e+03 ) rate = 1.957177e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5311 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5311 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 5317 ( 5.3e+03 ) rate = 5.780180e+03 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 5319 ( 5.3e+03 ) rate = 2.153673e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5319 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5319 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5319 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5319 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5319 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 5321 ( 5.3e+03 ) rate = 1.873775e+03 N.s^-1
SPH setup: Nstep = 12 ( 1.2e+01 ) Ntotal = 5333 ( 5.3e+03 ) rate = 1.163279e+04 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 5335 ( 5.3e+03 ) rate = 1.973194e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5335 ( 5.3e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 5337 ( 5.3e+03 ) rate = 1.936144e+03 N.s^-1
SPH setup: Nstep = 12 ( 1.2e+01 ) Ntotal = 5349 ( 5.3e+03 ) rate = 1.238748e+04 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 5351 ( 5.4e+03 ) rate = 1.940077e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5351 ( 5.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5351 ( 5.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5351 ( 5.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5351 ( 5.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5351 ( 5.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5351 ( 5.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5351 ( 5.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5351 ( 5.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5351 ( 5.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 5354 ( 5.4e+03 ) rate = 2.869182e+03 N.s^-1
SPH setup: Nstep = 13 ( 1.3e+01 ) Ntotal = 5367 ( 5.4e+03 ) rate = 1.294335e+04 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5367 ( 5.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5367 ( 5.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 5371 ( 5.4e+03 ) rate = 3.790995e+03 N.s^-1
SPH setup: Nstep = 12 ( 1.2e+01 ) Ntotal = 5383 ( 5.4e+03 ) rate = 1.115708e+04 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5383 ( 5.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5383 ( 5.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5383 ( 5.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5383 ( 5.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5383 ( 5.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5383 ( 5.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 5385 ( 5.4e+03 ) rate = 1.842980e+03 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 5391 ( 5.4e+03 ) rate = 5.701655e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5391 ( 5.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5391 ( 5.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 5394 ( 5.4e+03 ) rate = 2.860466e+03 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 5403 ( 5.4e+03 ) rate = 8.921270e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5403 ( 5.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5403 ( 5.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 5409 ( 5.4e+03 ) rate = 5.805223e+03 N.s^-1
SPH setup: Nstep = 12 ( 1.2e+01 ) Ntotal = 5421 ( 5.4e+03 ) rate = 1.171778e+04 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5421 ( 5.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5421 ( 5.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5421 ( 5.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5421 ( 5.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5421 ( 5.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5421 ( 5.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5421 ( 5.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5421 ( 5.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5421 ( 5.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 11 ( 1.1e+01 ) Ntotal = 5432 ( 5.4e+03 ) rate = 1.090344e+04 N.s^-1
SPH setup: Nstep = 6 ( 6.0e+00 ) Ntotal = 5438 ( 5.4e+03 ) rate = 5.770879e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5438 ( 5.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5438 ( 5.4e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 5446 ( 5.4e+03 ) rate = 7.707211e+03 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 5451 ( 5.5e+03 ) rate = 5.115367e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5451 ( 5.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5451 ( 5.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 5454 ( 5.5e+03 ) rate = 2.758819e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5454 ( 5.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5454 ( 5.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5454 ( 5.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 5457 ( 5.5e+03 ) rate = 2.787040e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5457 ( 5.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5457 ( 5.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5457 ( 5.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 5466 ( 5.5e+03 ) rate = 8.239638e+03 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 5470 ( 5.5e+03 ) rate = 3.758201e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5470 ( 5.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5470 ( 5.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 13 ( 1.3e+01 ) Ntotal = 5483 ( 5.5e+03 ) rate = 1.180038e+04 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 5487 ( 5.5e+03 ) rate = 3.762096e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5487 ( 5.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5487 ( 5.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5487 ( 5.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5487 ( 5.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5487 ( 5.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5487 ( 5.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5487 ( 5.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5487 ( 5.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5487 ( 5.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 5488 ( 5.5e+03 ) rate = 9.619149e+02 N.s^-1
SPH setup: Nstep = 12 ( 1.2e+01 ) Ntotal = 5500 ( 5.5e+03 ) rate = 1.183742e+04 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 5502 ( 5.5e+03 ) rate = 2.007889e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5502 ( 5.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 5504 ( 5.5e+03 ) rate = 2.021123e+03 N.s^-1
SPH setup: Nstep = 11 ( 1.1e+01 ) Ntotal = 5515 ( 5.5e+03 ) rate = 1.127426e+04 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 5517 ( 5.5e+03 ) rate = 1.483505e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5517 ( 5.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5517 ( 5.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5517 ( 5.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5517 ( 5.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5517 ( 5.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 5519 ( 5.5e+03 ) rate = 1.844105e+03 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 5528 ( 5.5e+03 ) rate = 9.267029e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5528 ( 5.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5528 ( 5.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 5530 ( 5.5e+03 ) rate = 1.911580e+03 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 5539 ( 5.5e+03 ) rate = 9.553734e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5539 ( 5.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5539 ( 5.5e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 5542 ( 5.5e+03 ) rate = 3.016534e+03 N.s^-1
SPH setup: Nstep = 14 ( 1.4e+01 ) Ntotal = 5556 ( 5.6e+03 ) rate = 1.337418e+04 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5556 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 5557 ( 5.6e+03 ) rate = 7.128696e+02 N.s^-1
SPH setup: Nstep = 15 ( 1.5e+01 ) Ntotal = 5572 ( 5.6e+03 ) rate = 1.440471e+04 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 5576 ( 5.6e+03 ) rate = 4.141584e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5576 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 5577 ( 5.6e+03 ) rate = 1.003348e+03 N.s^-1
SPH setup: Nstep = 12 ( 1.2e+01 ) Ntotal = 5589 ( 5.6e+03 ) rate = 1.175413e+04 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 5592 ( 5.6e+03 ) rate = 3.014806e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5592 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5592 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 11 ( 1.1e+01 ) Ntotal = 5603 ( 5.6e+03 ) rate = 1.033856e+04 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 5604 ( 5.6e+03 ) rate = 9.746142e+02 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5604 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 5605 ( 5.6e+03 ) rate = 1.026831e+03 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 5609 ( 5.6e+03 ) rate = 4.096073e+03 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 5610 ( 5.6e+03 ) rate = 9.986010e+02 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5610 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 5613 ( 5.6e+03 ) rate = 3.085191e+03 N.s^-1
SPH setup: Nstep = 13 ( 1.3e+01 ) Ntotal = 5626 ( 5.6e+03 ) rate = 1.314540e+04 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 5628 ( 5.6e+03 ) rate = 2.033392e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5628 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 5632 ( 5.6e+03 ) rate = 3.942922e+03 N.s^-1
SPH setup: Nstep = 14 ( 1.4e+01 ) Ntotal = 5646 ( 5.6e+03 ) rate = 1.353005e+04 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 5648 ( 5.6e+03 ) rate = 2.040042e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5648 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5648 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5648 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5648 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5648 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5648 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5648 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5648 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5648 ( 5.6e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 5653 ( 5.7e+03 ) rate = 4.735239e+03 N.s^-1
SPH setup: Nstep = 15 ( 1.5e+01 ) Ntotal = 5668 ( 5.7e+03 ) rate = 1.435871e+04 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5668 ( 5.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5668 ( 5.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 5673 ( 5.7e+03 ) rate = 4.835155e+03 N.s^-1
SPH setup: Nstep = 13 ( 1.3e+01 ) Ntotal = 5686 ( 5.7e+03 ) rate = 1.233421e+04 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5686 ( 5.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5686 ( 5.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 5687 ( 5.7e+03 ) rate = 9.785215e+02 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 5692 ( 5.7e+03 ) rate = 4.952918e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5692 ( 5.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5692 ( 5.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 5695 ( 5.7e+03 ) rate = 2.856566e+03 N.s^-1
SPH setup: Nstep = 9 ( 9.0e+00 ) Ntotal = 5704 ( 5.7e+03 ) rate = 8.765872e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5704 ( 5.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5704 ( 5.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 5709 ( 5.7e+03 ) rate = 4.851609e+03 N.s^-1
SPH setup: Nstep = 11 ( 1.1e+01 ) Ntotal = 5720 ( 5.7e+03 ) rate = 1.095065e+04 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5720 ( 5.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5720 ( 5.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 8 ( 8.0e+00 ) Ntotal = 5728 ( 5.7e+03 ) rate = 7.679481e+03 N.s^-1
SPH setup: Nstep = 12 ( 1.2e+01 ) Ntotal = 5740 ( 5.7e+03 ) rate = 1.200616e+04 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5740 ( 5.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5740 ( 5.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5740 ( 5.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5740 ( 5.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5740 ( 5.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5740 ( 5.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5740 ( 5.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5740 ( 5.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5740 ( 5.7e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 14 ( 1.4e+01 ) Ntotal = 5754 ( 5.8e+03 ) rate = 1.369192e+04 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 5759 ( 5.8e+03 ) rate = 4.939286e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5759 ( 5.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5759 ( 5.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 12 ( 1.2e+01 ) Ntotal = 5771 ( 5.8e+03 ) rate = 1.169662e+04 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 5776 ( 5.8e+03 ) rate = 5.250226e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5776 ( 5.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5776 ( 5.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 5783 ( 5.8e+03 ) rate = 6.811452e+03 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 5785 ( 5.8e+03 ) rate = 2.029402e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5785 ( 5.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5785 ( 5.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 7 ( 7.0e+00 ) Ntotal = 5792 ( 5.8e+03 ) rate = 6.826165e+03 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 5794 ( 5.8e+03 ) rate = 1.995104e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5794 ( 5.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5794 ( 5.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 13 ( 1.3e+01 ) Ntotal = 5807 ( 5.8e+03 ) rate = 1.247664e+04 N.s^-1
SPH setup: Nstep = 4 ( 4.0e+00 ) Ntotal = 5811 ( 5.8e+03 ) rate = 4.011903e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5811 ( 5.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 5812 ( 5.8e+03 ) rate = 9.666291e+02 N.s^-1
SPH setup: Nstep = 15 ( 1.5e+01 ) Ntotal = 5827 ( 5.8e+03 ) rate = 1.567926e+04 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 5830 ( 5.8e+03 ) rate = 2.989760e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5830 ( 5.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5830 ( 5.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5830 ( 5.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5830 ( 5.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5830 ( 5.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5830 ( 5.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5830 ( 5.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5830 ( 5.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5830 ( 5.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 5833 ( 5.8e+03 ) rate = 2.887889e+03 N.s^-1
SPH setup: Nstep = 14 ( 1.4e+01 ) Ntotal = 5847 ( 5.8e+03 ) rate = 1.419557e+04 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 5849 ( 5.8e+03 ) rate = 2.005730e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5849 ( 5.8e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 5852 ( 5.9e+03 ) rate = 2.924527e+03 N.s^-1
SPH setup: Nstep = 14 ( 1.4e+01 ) Ntotal = 5866 ( 5.9e+03 ) rate = 1.425684e+04 N.s^-1
SPH setup: Nstep = 2 ( 2.0e+00 ) Ntotal = 5868 ( 5.9e+03 ) rate = 1.996761e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5868 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5868 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5868 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5868 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5868 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 5871 ( 5.9e+03 ) rate = 2.898932e+03 N.s^-1
SPH setup: Nstep = 11 ( 1.1e+01 ) Ntotal = 5882 ( 5.9e+03 ) rate = 1.111337e+04 N.s^-1
SPH setup: Nstep = 1 ( 1.0e+00 ) Ntotal = 5883 ( 5.9e+03 ) rate = 1.000834e+03 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5883 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 3 ( 3.0e+00 ) Ntotal = 5886 ( 5.9e+03 ) rate = 2.253592e+03 N.s^-1
SPH setup: Nstep = 12 ( 1.2e+01 ) Ntotal = 5898 ( 5.9e+03 ) rate = 1.227449e+04 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5898 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5898 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 5 ( 5.0e+00 ) Ntotal = 5903 ( 5.9e+03 ) rate = 4.676883e+03 N.s^-1
SPH setup: Nstep = 14 ( 1.4e+01 ) Ntotal = 5917 ( 5.9e+03 ) rate = 1.421549e+04 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: Nstep = 0 ( 0.0e+00 ) Ntotal = 5917 ( 5.9e+03 ) rate = 0.000000e+00 N.s^-1
SPH setup: the generation step took : 5.794116101 s
SPH setup: final particle count = 5917 begining 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     : 7.39 us    (64.2%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 1000 min = 1000                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 1000 min = 1000                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 8
    min = 1000
    max = 1000
    avg = 1000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (0.1%)
   patch tree reduce : 1352.00 ns (0.1%)
   gen split merge   : 1002.00 ns (0.0%)
   split / merge op  : 1/0
   apply split merge : 1653.53 us (79.0%)
   LB compute        : 409.29 us  (19.6%)
   LB move op cnt    : 0
   LB apply          : 16.03 us   (0.8%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.27 us    (46.9%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 1000 min = 1000                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 1000 min = 1000                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 15
    min = 1000
    max = 1000
    avg = 1000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (0.1%)
   patch tree reduce : 1111.00 ns (0.1%)
   gen split merge   : 751.00 ns  (0.0%)
   split / merge op  : 1/0
   apply split merge : 1544.91 us (80.9%)
   LB compute        : 345.83 us  (18.1%)
   LB move op cnt    : 0
   LB apply          : 2.09 us    (0.1%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.78 us    (32.6%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 1000 min = 1000                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 1000 min = 1000                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 22
    min = 1000
    max = 1000
    avg = 1000
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (0.0%)
   patch tree reduce : 1262.00 ns (0.0%)
   gen split merge   : 802.00 ns  (0.0%)
   split / merge op  : 1/0
   apply split merge : 9.01 ms    (95.9%)
   LB compute        : 353.38 us  (3.8%)
   LB move op cnt    : 0
   LB apply          : 2.13 us    (0.0%)
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
SPH setup: injected         1000 / 5917 =>  16.9% | ranks with patchs = 1 / 1  -> local loop <-
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     : 7.29 us    (43.4%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5888 min = 5888                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5888 min = 5888                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 78
    min = 5888
    max = 5888
    avg = 5888
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (0.0%)
   patch tree reduce : 4.62 us    (0.0%)
   gen split merge   : 1453.00 ns (0.0%)
   split / merge op  : 8/0
   apply split merge : 70.35 ms   (99.1%)
   LB compute        : 527.68 us  (0.7%)
   LB move op cnt    : 0
   LB apply          : 7.04 us    (0.0%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.29 us    (25.6%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5917 min = 5917                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5917 min = 5917                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 78
    min = 5917
    max = 5917
    avg = 5917
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1964.00 ns (0.5%)
   patch tree reduce : 10.40 us   (2.7%)
   gen split merge   : 1413.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 531.00 ns  (0.1%)
   LB compute        : 338.21 us  (86.6%)
   LB move op cnt    : 0
   LB apply          : 1914.00 ns (0.5%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (15.2%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5917 min = 5917                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5917 min = 5917                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 78
    min = 5917
    max = 5917
    avg = 5917
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (0.5%)
   patch tree reduce : 3.51 us    (1.0%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 291.00 ns  (0.1%)
   LB compute        : 316.08 us  (87.9%)
   LB move op cnt    : 0
   LB apply          : 1674.00 ns (0.5%)
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
SPH setup: injected         5917 / 5917 => 100.0% | ranks with patchs = 1 / 1  <- global loop ->
SPH setup: the injection step took : 0.143042539 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 |   3.0% 0.0% |   935.14 MB |     5.04 MB |
+------+--------------------+-------+-------------+-------------+-------------+
SPH setup: the setup took : 5.986287871 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 :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5917 min = 5917                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5917 min = 5917                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 78
    min = 5917
    max = 5917
    avg = 5917
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.91 us    (2.1%)
   patch tree reduce : 12.50 us   (2.7%)
   gen split merge   : 1463.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 390.68 us  (84.5%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.42 us    (16.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 15 high interf/patch volume: 2.6153846153846154
    patch 16 high interf/patch volume: 2.5625
    patch 17 high interf/patch volume: 2.0931677018633543
    patch 18 high interf/patch volume: 2.2777777777777777
    patch 19 high interf/patch volume: 2.1077844311377247
    patch 20 high interf/patch volume: 1.895104895104895
    patch 21 high interf/patch volume: 2.6999999999999997
    patch 22 high interf/patch volume: 2.3000000000000003
    patch 23 high interf/patch volume: 2.066666666666667
    patch 24 high interf/patch volume: 1.685483870967742
    patch 25 high interf/patch volume: 2.0625
    patch 26 high interf/patch volume: 1.8432835820895521
    patch 27 high interf/patch volume: 1.624
    patch 28 high interf/patch volume: 2.272727272727272
    patch 30 high interf/patch volume: 1.801369863013699
    patch 31 high interf/patch volume: 2.066666666666667
    patch 32 high interf/patch volume: 2.055555555555556
    patch 33 high interf/patch volume: 2.0625
    patch 34 high interf/patch volume: 2.3789473684210525
    patch 35 high interf/patch volume: 1.624
    patch 36 high interf/patch volume: 1.9777777777777776
    patch 37 high interf/patch volume: 7
    patch 38 high interf/patch volume: 2.3939393939393936
    patch 39 high interf/patch volume: 1.8905109489051093
    patch 40 high interf/patch volume: 2.5722222222222215
    patch 41 high interf/patch volume: 2.0833333333333335
    patch 42 high interf/patch volume: 1.8571428571428574
    patch 43 high interf/patch volume: 2.5625
    patch 44 high interf/patch volume: 2.666666666666667
    patch 45 high interf/patch volume: 7
    patch 46 high interf/patch volume: 2.6999999999999993
    patch 47 high interf/patch volume: 1.8905109489051095
    patch 48 high interf/patch volume: 2.0595238095238093
    patch 49 high interf/patch volume: 2.0833333333333335
    patch 50 high interf/patch volume: 1.9136690647482018
    patch 51 high interf/patch volume: 1.6846153846153848
    patch 52 high interf/patch volume: 2.296969696969696
    patch 53 high interf/patch volume: 5
    patch 54 high interf/patch volume: 2.7619047619047614
    patch 55 high interf/patch volume: 2.41025641025641
    patch 56 high interf/patch volume: 1.9352517985611515
    patch 57 high interf/patch volume: 2.2777777777777777
    patch 58 high interf/patch volume: 2.4000000000000004
    patch 59 high interf/patch volume: 1.6846153846153848
    patch 60 high interf/patch volume: 2.9999999999999996
    patch 61 high interf/patch volume: 5
    patch 62 high interf/patch volume: 2.01840490797546
    patch 63 high interf/patch volume: 2.41025641025641
    patch 64 high interf/patch volume: 2.5722222222222215
    patch 65 high interf/patch volume: 2.0749999999999997
    patch 66 high interf/patch volume: 1.8689655172413795
    patch 67 high interf/patch volume: 2.6666666666666665
    patch 68 high interf/patch volume: 2.163398692810457
    patch 69 high interf/patch volume: 4.333333333333333
    patch 70 high interf/patch volume: 2.4545454545454546
    patch 71 high interf/patch volume: 1.895104895104895
    patch 72 high interf/patch volume: 2.0635838150289016
    patch 73 high interf/patch volume: 2.075
    patch 74 high interf/patch volume: 2.2747252747252746
    patch 75 high interf/patch volume: 2.6666666666666665
    patch 76 high interf/patch volume: 2.75
    patch 77 high interf/patch volume: 4.333333333333333
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.065 unconverged cnt = 5917
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 15 high interf/patch volume: 3.897435897435898
    patch 16 high interf/patch volume: 4.0625
    patch 17 high interf/patch volume: 2.950310559006211
    patch 18 high interf/patch volume: 4.166666666666666
    patch 19 high interf/patch volume: 3.1137724550898205
    patch 20 high interf/patch volume: 3.0209790209790217
    patch 21 high interf/patch volume: 3.8571428571428568
    patch 22 high interf/patch volume: 3.833333333333333
    patch 23 high interf/patch volume: 3.7999999999999994
    patch 24 high interf/patch volume: 2.7661290322580654
    patch 25 high interf/patch volume: 4.0625
    patch 26 high interf/patch volume: 2.9477611940298507
    patch 27 high interf/patch volume: 2.896
    patch 28 high interf/patch volume: 3.618181818181818
    patch 30 high interf/patch volume: 2.856164383561643
    patch 31 high interf/patch volume: 3.8000000000000003
    patch 32 high interf/patch volume: 3.0555555555555554
    patch 33 high interf/patch volume: 4.0625
    patch 34 high interf/patch volume: 3.736842105263157
    patch 35 high interf/patch volume: 2.896
    patch 36 high interf/patch volume: 2.8518518518518516
    patch 37 high interf/patch volume: 7
    patch 38 high interf/patch volume: 3.9696969696969697
    patch 39 high interf/patch volume: 3.051094890510949
    patch 40 high interf/patch volume: 3.722222222222222
    patch 41 high interf/patch volume: 4.222222222222221
    patch 42 high interf/patch volume: 3.0357142857142856
    patch 43 high interf/patch volume: 4.0625
    patch 44 high interf/patch volume: 3.9999999999999996
    patch 45 high interf/patch volume: 7
    patch 46 high interf/patch volume: 3.8571428571428568
    patch 47 high interf/patch volume: 3.051094890510949
    patch 48 high interf/patch volume: 3.1249999999999996
    patch 49 high interf/patch volume: 4.222222222222222
    patch 50 high interf/patch volume: 3.02158273381295
    patch 51 high interf/patch volume: 2.9769230769230766
    patch 52 high interf/patch volume: 3.666666666666666
    patch 53 high interf/patch volume: 7
    patch 54 high interf/patch volume: 4
    patch 55 high interf/patch volume: 3.9743589743589745
    patch 56 high interf/patch volume: 3.014388489208633
    patch 57 high interf/patch volume: 4.166666666666666
    patch 58 high interf/patch volume: 3.778947368421052
    patch 59 high interf/patch volume: 2.9769230769230766
    patch 60 high interf/patch volume: 4.037037037037036
    patch 61 high interf/patch volume: 7
    patch 62 high interf/patch volume: 3.085889570552147
    patch 63 high interf/patch volume: 3.9743589743589745
    patch 64 high interf/patch volume: 3.7222222222222223
    patch 65 high interf/patch volume: 4.1
    patch 66 high interf/patch volume: 3.0206896551724136
    patch 67 high interf/patch volume: 4.095238095238095
    patch 68 high interf/patch volume: 3.052287581699346
    patch 69 high interf/patch volume: 7
    patch 70 high interf/patch volume: 4
    patch 71 high interf/patch volume: 3.0209790209790213
    patch 72 high interf/patch volume: 3.109826589595375
    patch 73 high interf/patch volume: 4.1
    patch 74 high interf/patch volume: 3.1538461538461537
    patch 75 high interf/patch volume: 4.095238095238095
    patch 76 high interf/patch volume: 4.035714285714286
    patch 77 high interf/patch volume: 7
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.0845 unconverged cnt = 5917
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 15 high interf/patch volume: 5.358974358974359
    patch 16 high interf/patch volume: 5.375
    patch 17 high interf/patch volume: 4.329192546583852
    patch 18 high interf/patch volume: 5.444444444444444
    patch 19 high interf/patch volume: 4.502994011976048
    patch 20 high interf/patch volume: 4.20979020979021
    patch 21 high interf/patch volume: 5.714285714285715
    patch 22 high interf/patch volume: 5.2666666666666675
    patch 23 high interf/patch volume: 4.733333333333333
    patch 24 high interf/patch volume: 3.8790322580645156
    patch 25 high interf/patch volume: 5.21875
    patch 26 high interf/patch volume: 4.2835820895522385
    patch 27 high interf/patch volume: 3.7600000000000002
    patch 28 high interf/patch volume: 5.1393939393939405
    patch 30 high interf/patch volume: 3.924657534246575
    patch 31 high interf/patch volume: 4.733333333333333
    patch 32 high interf/patch volume: 4.382716049382717
    patch 33 high interf/patch volume: 5.21875
    patch 34 high interf/patch volume: 5.226315789473683
    patch 35 high interf/patch volume: 3.7600000000000007
    patch 36 high interf/patch volume: 4.333333333333334
    patch 37 high interf/patch volume: 7
    patch 38 high interf/patch volume: 5.303030303030302
    patch 39 high interf/patch volume: 4.2627737226277365
    patch 40 high interf/patch volume: 5.666666666666667
    patch 41 high interf/patch volume: 5.222222222222221
    patch 42 high interf/patch volume: 4.385714285714286
    patch 43 high interf/patch volume: 5.375
    patch 44 high interf/patch volume: 5.3809523809523805
    patch 45 high interf/patch volume: 7
    patch 46 high interf/patch volume: 5.714285714285715
    patch 47 high interf/patch volume: 4.2627737226277365
    patch 48 high interf/patch volume: 4.464285714285714
    patch 49 high interf/patch volume: 5.222222222222221
    patch 50 high interf/patch volume: 4.431654676258992
    patch 51 high interf/patch volume: 3.884615384615384
    patch 52 high interf/patch volume: 5.242424242424242
    patch 53 high interf/patch volume: 7
    patch 54 high interf/patch volume: 5.571428571428571
    patch 55 high interf/patch volume: 4.948717948717948
    patch 56 high interf/patch volume: 4.2086330935251794
    patch 57 high interf/patch volume: 5.444444444444444
    patch 58 high interf/patch volume: 5.31578947368421
    patch 59 high interf/patch volume: 3.8846153846153837
    patch 60 high interf/patch volume: 5.592592592592592
    patch 61 high interf/patch volume: 7
    patch 62 high interf/patch volume: 4.2392638036809815
    patch 63 high interf/patch volume: 4.948717948717949
    patch 64 high interf/patch volume: 5.666666666666669
    patch 65 high interf/patch volume: 5.1
    patch 66 high interf/patch volume: 4.337931034482757
    patch 67 high interf/patch volume: 5.380952380952381
    patch 68 high interf/patch volume: 4.568627450980393
    patch 69 high interf/patch volume: 7
    patch 70 high interf/patch volume: 5.409090909090908
    patch 71 high interf/patch volume: 4.209790209790209
    patch 72 high interf/patch volume: 4.421965317919075
    patch 73 high interf/patch volume: 5.1
    patch 74 high interf/patch volume: 4.571428571428571
    patch 75 high interf/patch volume: 5.3809523809523805
    patch 76 high interf/patch volume: 5.464285714285714
    patch 77 high interf/patch volume: 7
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.10985000000000002 unconverged cnt = 1484
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 15 high interf/patch volume: 6.717948717948719
    patch 16 high interf/patch volume: 7
    patch 17 high interf/patch volume: 6.453416149068323
    patch 18 high interf/patch volume: 6.8888888888888875
    patch 19 high interf/patch volume: 6.48502994011976
    patch 20 high interf/patch volume: 6.069930069930071
    patch 21 high interf/patch volume: 8.419047619047618
    patch 22 high interf/patch volume: 6.833333333333333
    patch 23 high interf/patch volume: 6.899999999999999
    patch 24 high interf/patch volume: 6.620967741935485
    patch 25 high interf/patch volume: 6.53125
    patch 26 high interf/patch volume: 6.425373134328359
    patch 27 high interf/patch volume: 6.384000000000001
    patch 28 high interf/patch volume: 8.76969696969697
    patch 30 high interf/patch volume: 6.5410958904109595
    patch 31 high interf/patch volume: 6.9
    patch 32 high interf/patch volume: 6.2901234567901225
    patch 33 high interf/patch volume: 6.53125
    patch 34 high interf/patch volume: 8.715789473684207
    patch 35 high interf/patch volume: 6.384000000000001
    patch 36 high interf/patch volume: 6.555555555555556
    patch 37 high interf/patch volume: 7
    patch 38 high interf/patch volume: 7.545454545454546
    patch 39 high interf/patch volume: 6.1751824817518255
    patch 40 high interf/patch volume: 8.466666666666667
    patch 41 high interf/patch volume: 7.111111111111112
    patch 42 high interf/patch volume: 6.728571428571427
    patch 43 high interf/patch volume: 7
    patch 44 high interf/patch volume: 7.285714285714287
    patch 45 high interf/patch volume: 7
    patch 46 high interf/patch volume: 8.419047619047618
    patch 47 high interf/patch volume: 6.1751824817518255
    patch 48 high interf/patch volume: 6.5476190476190474
    patch 49 high interf/patch volume: 7.111111111111111
    patch 50 high interf/patch volume: 6.654676258992806
    patch 51 high interf/patch volume: 6.592307692307692
    patch 52 high interf/patch volume: 9.024242424242425
    patch 53 high interf/patch volume: 7
    patch 54 high interf/patch volume: 7.428571428571427
    patch 55 high interf/patch volume: 7.410256410256411
    patch 56 high interf/patch volume: 7.172661870503597
    patch 57 high interf/patch volume: 6.8888888888888875
    patch 58 high interf/patch volume: 8.936842105263153
    patch 59 high interf/patch volume: 6.592307692307692
    patch 60 high interf/patch volume: 7.148148148148148
    patch 61 high interf/patch volume: 7
    patch 62 high interf/patch volume: 7.024539877300612
    patch 63 high interf/patch volume: 7.4102564102564115
    patch 64 high interf/patch volume: 8.466666666666667
    patch 65 high interf/patch volume: 6.8999999999999995
    patch 66 high interf/patch volume: 6.6
    patch 67 high interf/patch volume: 6.809523809523808
    patch 68 high interf/patch volume: 6.686274509803922
    patch 69 high interf/patch volume: 7
    patch 70 high interf/patch volume: 7.363636363636362
    patch 71 high interf/patch volume: 6.06993006993007
    patch 72 high interf/patch volume: 6.445086705202312
    patch 73 high interf/patch volume: 6.9
    patch 74 high interf/patch volume: 6.582417582417583
    patch 75 high interf/patch volume: 6.809523809523808
    patch 76 high interf/patch volume: 7.107142857142858
    patch 77 high interf/patch volume: 7
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.14280500000000002 unconverged cnt = 4
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 15 high interf/patch volume: 7.948717948717949
    patch 16 high interf/patch volume: 8.1875
    patch 17 high interf/patch volume: 8.844720496894409
    patch 18 high interf/patch volume: 8.36111111111111
    patch 19 high interf/patch volume: 8.880239520958082
    patch 20 high interf/patch volume: 8.566433566433567
    patch 21 high interf/patch volume: 11.928571428571425
    patch 22 high interf/patch volume: 8.366666666666667
    patch 23 high interf/patch volume: 7.866666666666666
    patch 24 high interf/patch volume: 9.07258064516129
    patch 25 high interf/patch volume: 7.9375
    patch 26 high interf/patch volume: 9.082089552238806
    patch 27 high interf/patch volume: 8.768
    patch 28 high interf/patch volume: 12.430303030303032
    patch 30 high interf/patch volume: 8.815068493150685
    patch 31 high interf/patch volume: 7.866666666666666
    patch 32 high interf/patch volume: 8.672839506172838
    patch 33 high interf/patch volume: 7.9375
    patch 34 high interf/patch volume: 12.210526315789473
    patch 35 high interf/patch volume: 8.768
    patch 36 high interf/patch volume: 9.207407407407407
    patch 37 high interf/patch volume: 7
    patch 38 high interf/patch volume: 8.878787878787879
    patch 39 high interf/patch volume: 8.715328467153284
    patch 40 high interf/patch volume: 12.133333333333335
    patch 41 high interf/patch volume: 8.305555555555555
    patch 42 high interf/patch volume: 9.049999999999999
    patch 43 high interf/patch volume: 8.1875
    patch 44 high interf/patch volume: 8.380952380952381
    patch 45 high interf/patch volume: 7
    patch 46 high interf/patch volume: 11.828571428571431
    patch 47 high interf/patch volume: 8.715328467153286
    patch 48 high interf/patch volume: 8.648809523809524
    patch 49 high interf/patch volume: 8.305555555555555
    patch 50 high interf/patch volume: 9.31654676258993
    patch 51 high interf/patch volume: 8.984615384615386
    patch 52 high interf/patch volume: 12.763636363636365
    patch 53 high interf/patch volume: 7
    patch 54 high interf/patch volume: 8.80952380952381
    patch 55 high interf/patch volume: 8.41025641025641
    patch 56 high interf/patch volume: 9.66906474820144
    patch 57 high interf/patch volume: 8.36111111111111
    patch 58 high interf/patch volume: 12.510526315789475
    patch 59 high interf/patch volume: 9.046153846153846
    patch 60 high interf/patch volume: 8.25925925925926
    patch 61 high interf/patch volume: 7
    patch 62 high interf/patch volume: 9.386503067484663
    patch 63 high interf/patch volume: 8.538461538461538
    patch 64 high interf/patch volume: 12.194444444444445
    patch 65 high interf/patch volume: 8.075
    patch 66 high interf/patch volume: 9
    patch 67 high interf/patch volume: 8.261904761904763
    patch 68 high interf/patch volume: 9.372549019607844
    patch 69 high interf/patch volume: 7
    patch 70 high interf/patch volume: 8.77272727272727
    patch 71 high interf/patch volume: 8.678321678321677
    patch 72 high interf/patch volume: 8.687861271676299
    patch 73 high interf/patch volume: 8.274999999999999
    patch 74 high interf/patch volume: 9.005494505494505
    patch 75 high interf/patch volume: 8.261904761904761
    patch 76 high interf/patch volume: 8.285714285714286
    patch 77 high interf/patch volume: 7
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5917,-5917,-5917)
    sum a = (3.144186300207963e-18,7.047314121155779e-19,-2.5478751053409354e-18)
    sum e = 14792.5
    sum de = 3.1008182133085427e-17
Info: CFL hydro = 0.06584730987598779 sink sink = inf                                 [SPH][rank=0]
Info: cfl dt = 0.06584730987598779 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.6072e+03 | 5917 |     78 | 3.682e+00 | 0.0% |   2.6% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
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

Draw utilities#

103 import matplotlib.pyplot as plt
104 import numpy as np
105
106
107 def draw_aabb(ax, aabb, color, alpha):
108     from mpl_toolkits.mplot3d.art3d import Line3DCollection, Poly3DCollection
109
110     xmin, ymin, zmin = aabb.lower
111     xmax, ymax, zmax = aabb.upper
112
113     points = [
114         aabb.lower,
115         (aabb.lower[0], aabb.lower[1], aabb.upper[2]),
116         (aabb.lower[0], aabb.upper[1], aabb.lower[2]),
117         (aabb.lower[0], aabb.upper[1], aabb.upper[2]),
118         (aabb.upper[0], aabb.lower[1], aabb.lower[2]),
119         (aabb.upper[0], aabb.lower[1], aabb.upper[2]),
120         (aabb.upper[0], aabb.upper[1], aabb.lower[2]),
121         aabb.upper,
122     ]
123
124     faces = [
125         [points[0], points[1], points[3], points[2]],
126         [points[4], points[5], points[7], points[6]],
127         [points[0], points[1], points[5], points[4]],
128         [points[2], points[3], points[7], points[6]],
129         [points[0], points[2], points[6], points[4]],
130         [points[1], points[3], points[7], points[5]],
131     ]
132
133     edges = [
134         [points[0], points[1]],
135         [points[0], points[2]],
136         [points[0], points[4]],
137         [points[1], points[3]],
138         [points[1], points[5]],
139         [points[2], points[3]],
140         [points[2], points[6]],
141         [points[3], points[7]],
142         [points[4], points[5]],
143         [points[4], points[6]],
144         [points[5], points[7]],
145         [points[6], points[7]],
146     ]
147
148     collection = Poly3DCollection(faces, alpha=alpha, color=color)
149     ax.add_collection3d(collection)
150
151     edge_collection = Line3DCollection(edges, color="k", alpha=alpha)
152     ax.add_collection3d(edge_collection)
153
154
155 def plot_state(iplot):
156     pos = ctx.collect_data()["xyz"]
157
158     if shamrock.sys.world_rank() == 0:
159         X = pos[:, 0]
160         Y = pos[:, 1]
161         Z = pos[:, 2]
162
163         plt.cla()
164
165         patch_list = ctx.get_patch_list_global()
166
167         ax.set_xlim3d(bmin[0], bmax[0])
168         ax.set_ylim3d(bmin[1], bmax[1])
169         ax.set_zlim3d(bmin[2], bmax[2])
170
171         ptransf = model.get_patch_transform()
172         for p in patch_list:
173             draw_aabb(ax, ptransf.to_obj_coord(p), "blue", 0.1)
174
175         ax.scatter(X, Y, Z, c="red", s=1)
176
177         plt.savefig(os.path.join(dump_folder, f"{sim_name}_{iplot:04}.png"))

Run the simulation#

183 nstop = 80  # 100 normally
184 dt_stop = 0.1
185
186 t_stop = [i * dt_stop for i in range(nstop + 1)]
187
188 # Init MPL
189 fig = plt.figure(dpi=120)
190 ax = fig.add_subplot(111, projection="3d")
191
192 iplot = 0
193 istop = 0
194 for ttarg in t_stop:
195     model.evolve_until(ttarg)
196
197     # if do_plots:
198     plot_state(iplot)
199
200     iplot += 1
201     istop += 1
202
203 plt.close(fig)
Info: iteration since start : 1                                                       [SPH][rank=0]
Info: time since start : 1552.521210995 (s)                                           [SPH][rank=0]
Info: collected : 78 patches                                               [PatchScheduler][rank=0]
---------------- t = 0, dt = 0.06584730987598779 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5917 min = 5917                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5917 min = 5917                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 78
    min = 5917
    max = 5917
    avg = 5917
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 25.96 us   (3.6%)
   patch tree reduce : 21.35 us   (2.9%)
   gen split merge   : 1392.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.1%)
   LB compute        : 618.21 us  (85.0%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.78 us    (14.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 10 high interf/patch volume: 4.818181818181818
    patch 12 high interf/patch volume: 5.055555555555555
    patch 13 high interf/patch volume: 4.461538461538462
    patch 14 high interf/patch volume: 7.153846153846154
    patch 15 high interf/patch volume: 6.769230769230768
    patch 16 high interf/patch volume: 6.895522388059702
    patch 17 high interf/patch volume: 6.910828025477709
    patch 18 high interf/patch volume: 7.157894736842104
    patch 19 high interf/patch volume: 6.893617021276595
    patch 20 high interf/patch volume: 6.894039735099338
    patch 21 high interf/patch volume: 8.316666666666666
    patch 22 high interf/patch volume: 6.824324324324324
    patch 23 high interf/patch volume: 6.864197530864198
    patch 24 high interf/patch volume: 7.051428571428572
    patch 25 high interf/patch volume: 6.942028985507246
    patch 26 high interf/patch volume: 6.814102564102565
    patch 27 high interf/patch volume: 6.88
    patch 28 high interf/patch volume: 8.938888888888888
    patch 29 high interf/patch volume: 7.25
    patch 30 high interf/patch volume: 6.881656804733729
    patch 31 high interf/patch volume: 7.438596491228069
    patch 32 high interf/patch volume: 6.738562091503269
    patch 33 high interf/patch volume: 7.446808510638299
    patch 34 high interf/patch volume: 8.52777777777778
    patch 35 high interf/patch volume: 6.933774834437087
    patch 36 high interf/patch volume: 7.213414634146341
    patch 37 high interf/patch volume: 7.2
    patch 38 high interf/patch volume: 7.69047619047619
    patch 39 high interf/patch volume: 7.006060606060606
    patch 40 high interf/patch volume: 8.983333333333333
    patch 41 high interf/patch volume: 7.463414634146341
    patch 42 high interf/patch volume: 7.039370078740158
    patch 43 high interf/patch volume: 7.222222222222223
    patch 44 high interf/patch volume: 7.314285714285715
    patch 45 high interf/patch volume: 7
    patch 46 high interf/patch volume: 8.477777777777776
    patch 47 high interf/patch volume: 7.1366906474820135
    patch 48 high interf/patch volume: 6.758333333333334
    patch 49 high interf/patch volume: 7.541666666666665
    patch 50 high interf/patch volume: 6.9319727891156475
    patch 51 high interf/patch volume: 7.049382716049382
    patch 52 high interf/patch volume: 8.95
    patch 53 high interf/patch volume: 7
    patch 54 high interf/patch volume: 7.499999999999999
    patch 55 high interf/patch volume: 7.600000000000001
    patch 56 high interf/patch volume: 7.434108527131782
    patch 57 high interf/patch volume: 7.473684210526317
    patch 58 high interf/patch volume: 8.511111111111113
    patch 59 high interf/patch volume: 7.223880597014925
    patch 60 high interf/patch volume: 7.133333333333333
    patch 61 high interf/patch volume: 7
    patch 62 high interf/patch volume: 7.1900826446281
    patch 63 high interf/patch volume: 7.719999999999999
    patch 64 high interf/patch volume: 8.744444444444444
    patch 65 high interf/patch volume: 7.21875
    patch 66 high interf/patch volume: 6.991071428571429
    patch 67 high interf/patch volume: 7.233333333333333
    patch 68 high interf/patch volume: 7.33913043478261
    patch 70 high interf/patch volume: 7.5625
    patch 71 high interf/patch volume: 7.131147540983607
    patch 72 high interf/patch volume: 6.817307692307692
    patch 73 high interf/patch volume: 7.2777777777777795
    patch 74 high interf/patch volume: 7.1226415094339615
    patch 75 high interf/patch volume: 7.529411764705881
    patch 76 high interf/patch volume: 7.25
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5917.000000000001,-5916.999999999998,-5917)
    sum a = (1.0191500421363742e-17,-5.095750210681871e-18,-7.535205098774256e-18)
    sum e = 14792.50000006346
    sum de = 1.9081958235744878e-17
Info: CFL hydro = 2.2388129508452153 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 2.2388129508452153 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.3715e+03 | 5917 |     78 | 1.354e+00 | 0.0% |   3.3% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 175.1325281069 (tsim/hr)                                [sph::Model][rank=0]
---------------- t = 0.06584730987598779, dt = 0.03415269012401222 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5917 min = 5917                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5917 min = 5917                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 78
    min = 5917
    max = 5917
    avg = 5917
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (0.9%)
   patch tree reduce : 11.27 us   (1.7%)
   gen split merge   : 1543.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.2%)
   LB compute        : 584.76 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.48 us    (17.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 10 high interf/patch volume: 4.707692307692307
    patch 12 high interf/patch volume: 4.738095238095238
    patch 13 high interf/patch volume: 4.538461538461538
    patch 14 high interf/patch volume: 6.1190476190476195
    patch 15 high interf/patch volume: 6.380952380952382
    patch 16 high interf/patch volume: 6.152941176470589
    patch 17 high interf/patch volume: 6.7265625
    patch 18 high interf/patch volume: 6.225490196078432
    patch 19 high interf/patch volume: 6.700000000000001
    patch 20 high interf/patch volume: 6.681528662420382
    patch 21 high interf/patch volume: 8.165680473372781
    patch 22 high interf/patch volume: 5.972222222222222
    patch 23 high interf/patch volume: 5.972477064220184
    patch 24 high interf/patch volume: 6.425806451612904
    patch 25 high interf/patch volume: 6.178294573643411
    patch 26 high interf/patch volume: 6.570680628272251
    patch 27 high interf/patch volume: 6.446153846153847
    patch 28 high interf/patch volume: 8.2125
    patch 29 high interf/patch volume: 7
    patch 30 high interf/patch volume: 6.680272108843537
    patch 31 high interf/patch volume: 7.166666666666667
    patch 32 high interf/patch volume: 6.910614525139665
    patch 33 high interf/patch volume: 7.155555555555555
    patch 34 high interf/patch volume: 8.584337349397591
    patch 35 high interf/patch volume: 7.25
    patch 36 high interf/patch volume: 6.335616438356165
    patch 37 high interf/patch volume: 7
    patch 38 high interf/patch volume: 6.980000000000001
    patch 39 high interf/patch volume: 6.542553191489362
    patch 40 high interf/patch volume: 8.163636363636362
    patch 41 high interf/patch volume: 7.155172413793103
    patch 42 high interf/patch volume: 7.220588235294117
    patch 43 high interf/patch volume: 7.333333333333333
    patch 44 high interf/patch volume: 7.323529411764706
    patch 45 high interf/patch volume: 7
    patch 46 high interf/patch volume: 8.433526011560694
    patch 47 high interf/patch volume: 7.350515463917526
    patch 48 high interf/patch volume: 7.705357142857143
    patch 49 high interf/patch volume: 7.499999999999999
    patch 50 high interf/patch volume: 6.67065868263473
    patch 51 high interf/patch volume: 6.528735632183908
    patch 52 high interf/patch volume: 8.15
    patch 53 high interf/patch volume: 7
    patch 54 high interf/patch volume: 7
    patch 55 high interf/patch volume: 6.98
    patch 56 high interf/patch volume: 6.936363636363636
    patch 57 high interf/patch volume: 6.909090909090908
    patch 58 high interf/patch volume: 8.346590909090908
    patch 59 high interf/patch volume: 7.138297872340425
    patch 60 high interf/patch volume: 6.787878787878789
    patch 62 high interf/patch volume: 7.21978021978022
    patch 63 high interf/patch volume: 7.285714285714286
    patch 64 high interf/patch volume: 8.089385474860336
    patch 65 high interf/patch volume: 7.066666666666668
    patch 66 high interf/patch volume: 7.277777777777779
    patch 67 high interf/patch volume: 6.999999999999999
    patch 68 high interf/patch volume: 7.164835164835164
    patch 69 high interf/patch volume: 7
    patch 70 high interf/patch volume: 8
    patch 71 high interf/patch volume: 7.148648648648649
    patch 72 high interf/patch volume: 7.471264367816091
    patch 73 high interf/patch volume: 7.222222222222222
    patch 74 high interf/patch volume: 7.267605633802816
    patch 75 high interf/patch volume: 7.333333333333335
    patch 76 high interf/patch volume: 7.5555555555555545
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5917.000000000001,-5916.999999999999,-5917.000000000001)
    sum a = (1.3418211534368864e-07,3.948772732409456e-15,-1.0956208453124453e-08)
    sum e = 14792.50000001707
    sum de = -1.2322600932376283e-07
Info: CFL hydro = 3.687466124566825 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 3.687466124566825 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.8251e+03 | 5917 |     78 | 1.226e+00 | 0.0% |   2.3% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.26071665225105 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 3                                                       [SPH][rank=0]
Info: time since start : 1555.8349703820002 (s)                                       [SPH][rank=0]
Info: collected : 78 patches                                               [PatchScheduler][rank=0]
---------------- t = 0.1, dt = 0.1 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5917 min = 5917                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5917 min = 5917                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 78
    min = 5917
    max = 5917
    avg = 5917
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 13.05 us   (1.9%)
   patch tree reduce : 14.11 us   (2.1%)
   gen split merge   : 1473.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1233.00 ns (0.2%)
   LB compute        : 587.42 us  (87.7%)
   LB move op cnt    : 0
   LB apply          : 4.54 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.29 us    (21.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 10 high interf/patch volume: 4.607954545454546
    patch 12 high interf/patch volume: 4.285714285714285
    patch 13 high interf/patch volume: 4.512315270935962
    patch 14 high interf/patch volume: 4.711538461538462
    patch 15 high interf/patch volume: 5.45
    patch 16 high interf/patch volume: 5.658536585365854
    patch 17 high interf/patch volume: 6.330935251798563
    patch 18 high interf/patch volume: 5.548387096774194
    patch 19 high interf/patch volume: 6.000000000000001
    patch 20 high interf/patch volume: 6.317241379310346
    patch 21 high interf/patch volume: 7.01923076923077
    patch 22 high interf/patch volume: 5.134615384615385
    patch 23 high interf/patch volume: 5.150684931506849
    patch 24 high interf/patch volume: 6.119760479041917
    patch 25 high interf/patch volume: 5.2427745664739875
    patch 26 high interf/patch volume: 6.02139037433155
    patch 27 high interf/patch volume: 6.167630057803468
    patch 28 high interf/patch volume: 7.957055214723927
    patch 29 high interf/patch volume: 7
    patch 30 high interf/patch volume: 6.3076923076923075
    patch 31 high interf/patch volume: 7.3076923076923075
    patch 32 high interf/patch volume: 6.21195652173913
    patch 33 high interf/patch volume: 7.333333333333333
    patch 34 high interf/patch volume: 8.095238095238097
    patch 35 high interf/patch volume: 7.831578947368421
    patch 36 high interf/patch volume: 6.476470588235294
    patch 37 high interf/patch volume: 7
    patch 38 high interf/patch volume: 7.54054054054054
    patch 39 high interf/patch volume: 6.595744680851063
    patch 40 high interf/patch volume: 8.478260869565217
    patch 41 high interf/patch volume: 7.7105263157894735
    patch 42 high interf/patch volume: 8.126315789473683
    patch 43 high interf/patch volume: 6.947368421052631
    patch 44 high interf/patch volume: 6.941176470588235
    patch 46 high interf/patch volume: 7.821052631578948
    patch 47 high interf/patch volume: 7.366666666666667
    patch 48 high interf/patch volume: 7.528301886792453
    patch 50 high interf/patch volume: 6.261627906976744
    patch 51 high interf/patch volume: 6.4472049689440984
    patch 52 high interf/patch volume: 7.978142076502732
    patch 53 high interf/patch volume: 7.076923076923077
    patch 54 high interf/patch volume: 7.204545454545453
    patch 55 high interf/patch volume: 7.19047619047619
    patch 56 high interf/patch volume: 7.987654320987655
    patch 57 high interf/patch volume: 6.842105263157894
    patch 58 high interf/patch volume: 7.526946107784433
    patch 59 high interf/patch volume: 7.37037037037037
    patch 60 high interf/patch volume: 6.722222222222222
    patch 62 high interf/patch volume: 7.166666666666668
    patch 64 high interf/patch volume: 7.814606741573033
    patch 65 high interf/patch volume: 6.9375
    patch 66 high interf/patch volume: 7.333333333333333
    patch 67 high interf/patch volume: 7.0625
    patch 68 high interf/patch volume: 7.269841269841271
    patch 71 high interf/patch volume: 6.903225806451612
    patch 72 high interf/patch volume: 6.800000000000001
    patch 74 high interf/patch volume: 6.884615384615385
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.99999998429,-5917,-5917.000000001282)
    sum a = (2.6624758640847457e-08,3.8306339431200265e-08,1.7138573568144244e-09)
    sum e = 14792.500000131931
    sum de = -6.664500704599285e-08
Info: CFL hydro = 4.653294553728899 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 4.653294553728899 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    | 4.6786e+03 | 5917 |     78 | 1.265e+00 | 0.0% |   2.4% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 284.6559574562062 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 4                                                       [SPH][rank=0]
Info: time since start : 1557.7868796530001 (s)                                       [SPH][rank=0]
Info: collected : 78 patches                                               [PatchScheduler][rank=0]
---------------- t = 0.2, dt = 0.10000000000000003 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5917 min = 5917                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5917 min = 5917                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 78
    min = 5917
    max = 5917
    avg = 5917
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.61 us   (1.9%)
   patch tree reduce : 16.08 us   (2.4%)
   gen split merge   : 1222.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.1%)
   LB compute        : 581.32 us  (86.4%)
   LB move op cnt    : 0
   LB apply          : 4.55 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (21.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 10 high interf/patch volume: 4.22689075630252
    patch 12 high interf/patch volume: 4.169381107491855
    patch 13 high interf/patch volume: 4.221024258760108
    patch 14 high interf/patch volume: 4.525316455696202
    patch 15 high interf/patch volume: 5.230769230769231
    patch 16 high interf/patch volume: 5.574803149606298
    patch 17 high interf/patch volume: 6.521739130434781
    patch 18 high interf/patch volume: 5.565217391304349
    patch 19 high interf/patch volume: 6.426229508196722
    patch 20 high interf/patch volume: 6.728971962616821
    patch 21 high interf/patch volume: 7.652173913043478
    patch 22 high interf/patch volume: 5.072625698324023
    patch 23 high interf/patch volume: 5.033898305084745
    patch 24 high interf/patch volume: 5.900552486187847
    patch 25 high interf/patch volume: 5.068783068783068
    patch 26 high interf/patch volume: 6.010928961748634
    patch 27 high interf/patch volume: 6.243243243243242
    patch 28 high interf/patch volume: 8.117318435754193
    patch 29 high interf/patch volume: 7
    patch 30 high interf/patch volume: 6.19186046511628
    patch 31 high interf/patch volume: 7.352941176470588
    patch 32 high interf/patch volume: 6.204301075268817
    patch 33 high interf/patch volume: 7.2666666666666675
    patch 34 high interf/patch volume: 8.153439153439153
    patch 35 high interf/patch volume: 8.444444444444445
    patch 36 high interf/patch volume: 6.358974358974359
    patch 37 high interf/patch volume: 7.200000000000001
    patch 38 high interf/patch volume: 7.285714285714286
    patch 39 high interf/patch volume: 6.857988165680474
    patch 40 high interf/patch volume: 8.610465116279071
    patch 41 high interf/patch volume: 7.642857142857143
    patch 42 high interf/patch volume: 8.538461538461538
    patch 43 high interf/patch volume: 7.500000000000001
    patch 44 high interf/patch volume: 7.2
    patch 46 high interf/patch volume: 8.0875
    patch 47 high interf/patch volume: 8.058823529411764
    patch 48 high interf/patch volume: 8.055555555555555
    patch 50 high interf/patch volume: 6.415204678362574
    patch 51 high interf/patch volume: 6.656976744186046
    patch 52 high interf/patch volume: 8.279187817258883
    patch 53 high interf/patch volume: 7.625
    patch 54 high interf/patch volume: 7.3125
    patch 55 high interf/patch volume: 7.59375
    patch 56 high interf/patch volume: 8.574074074074074
    patch 57 high interf/patch volume: 7.166666666666667
    patch 58 high interf/patch volume: 7.8999999999999995
    patch 59 high interf/patch volume: 7.913043478260869
    patch 60 high interf/patch volume: 7.2
    patch 62 high interf/patch volume: 7.6521739130434785
    patch 64 high interf/patch volume: 7.881118881118882
    patch 65 high interf/patch volume: 7.285714285714286
    patch 66 high interf/patch volume: 7.705882352941177
    patch 67 high interf/patch volume: 7
    patch 68 high interf/patch volume: 7.888888888888888
    patch 71 high interf/patch volume: 7
    patch 72 high interf/patch volume: 7
    patch 74 high interf/patch volume: 7
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999987008,-5916.999999994256,-5917.000000000479)
    sum a = (-1.1535719023257293e-08,-4.777542217022121e-09,-6.359753992017528e-11)
    sum e = 14792.500000128088
    sum de = 1.6376851140253784e-08
Info: CFL hydro = 5.297267090873594 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 5.297267090873594 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    | 4.9180e+03 | 5917 |     78 | 1.203e+00 | 0.0% |   2.3% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 299.2196093265104 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 5                                                       [SPH][rank=0]
Info: time since start : 1559.806074751 (s)                                           [SPH][rank=0]
Info: collected : 78 patches                                               [PatchScheduler][rank=0]
---------------- t = 0.30000000000000004, dt = 0.09999999999999998 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5917 min = 5917                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5917 min = 5917                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 78
    min = 5917
    max = 5917
    avg = 5917
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.75 us    (1.5%)
   patch tree reduce : 14.06 us   (2.1%)
   gen split merge   : 1282.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.1%)
   LB compute        : 584.06 us  (88.2%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.37 us    (22.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 8 high interf/patch volume: 4.25
    patch 9 high interf/patch volume: 4.15
    patch 10 high interf/patch volume: 3.744954128440367
    patch 11 high interf/patch volume: 4.315789473684211
    patch 12 high interf/patch volume: 3.667226890756303
    patch 13 high interf/patch volume: 3.8489871086556167
    patch 14 high interf/patch volume: 5.210843373493976
    patch 15 high interf/patch volume: 5.012903225806451
    patch 16 high interf/patch volume: 5.88111888111888
    patch 17 high interf/patch volume: 5.815217391304348
    patch 18 high interf/patch volume: 5.415384615384616
    patch 19 high interf/patch volume: 5.655172413793103
    patch 20 high interf/patch volume: 5.581081081081081
    patch 21 high interf/patch volume: 6.606060606060606
    patch 22 high interf/patch volume: 4.953488372093022
    patch 23 high interf/patch volume: 5.2287234042553195
    patch 24 high interf/patch volume: 5.9565217391304355
    patch 25 high interf/patch volume: 5.154285714285715
    patch 26 high interf/patch volume: 5.829411764705882
    patch 27 high interf/patch volume: 6.228260869565218
    patch 28 high interf/patch volume: 8.288888888888888
    patch 30 high interf/patch volume: 5.697916666666667
    patch 31 high interf/patch volume: 6
    patch 32 high interf/patch volume: 5.510752688172042
    patch 33 high interf/patch volume: 6
    patch 34 high interf/patch volume: 7.154929577464788
    patch 35 high interf/patch volume: 6.777777777777778
    patch 36 high interf/patch volume: 6.337349397590361
    patch 37 high interf/patch volume: 7
    patch 38 high interf/patch volume: 7.666666666666666
    patch 39 high interf/patch volume: 6.312138728323698
    patch 40 high interf/patch volume: 7.720430107526881
    patch 41 high interf/patch volume: 7
    patch 42 high interf/patch volume: 8.083333333333332
    patch 46 high interf/patch volume: 6.789915966386555
    patch 50 high interf/patch volume: 6.087248322147651
    patch 51 high interf/patch volume: 5.974842767295598
    patch 52 high interf/patch volume: 7.704545454545455
    patch 53 high interf/patch volume: 7.333333333333333
    patch 54 high interf/patch volume: 7.133333333333335
    patch 55 high interf/patch volume: 6.857142857142857
    patch 56 high interf/patch volume: 7.392857142857143
    patch 58 high interf/patch volume: 6.838983050847457
    patch 62 high interf/patch volume: 7
    patch 64 high interf/patch volume: 6.585858585858586
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999990068,-5916.999999996886,-5917.000000000574)
    sum a = (-9.169572477620708e-09,1.0588188234170182e-09,6.969201993387193e-09)
    sum e = 14792.500000133861
    sum de = 1.1413588277622844e-09
Info: CFL hydro = 5.726693877892195 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 5.726693877892195 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    | 5.9896e+03 | 5917 |     78 | 9.879e-01 | 0.0% |   2.0% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 364.4183834011798 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 6                                                       [SPH][rank=0]
Info: time since start : 1561.483477706 (s)                                           [SPH][rank=0]
Info: collected : 78 patches                                               [PatchScheduler][rank=0]
---------------- t = 0.4, dt = 0.09999999999999998 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5906 min = 5906                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5906 min = 5906                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 99
    min = 5906
    max = 5906
    avg = 5906
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.42 us   (0.0%)
   patch tree reduce : 14.46 us   (0.1%)
   gen split merge   : 3.18 us    (0.0%)
   split / merge op  : 3/1
   apply split merge : 19.96 ms   (95.6%)
   LB compute        : 524.12 us  (2.5%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (0.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (23.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 7 high interf/patch volume: 7
    patch 8 high interf/patch volume: 4.773809523809524
    patch 9 high interf/patch volume: 4.789473684210526
    patch 11 high interf/patch volume: 4.838235294117647
    patch 14 high interf/patch volume: 5.166666666666667
    patch 15 high interf/patch volume: 5.32520325203252
    patch 16 high interf/patch volume: 5.30827067669173
    patch 17 high interf/patch volume: 7.235294117647059
    patch 18 high interf/patch volume: 5.053846153846154
    patch 19 high interf/patch volume: 7.027027027027028
    patch 20 high interf/patch volume: 7.125
    patch 21 high interf/patch volume: 7
    patch 22 high interf/patch volume: 5.703124999999999
    patch 23 high interf/patch volume: 5.471264367816093
    patch 24 high interf/patch volume: 6.717821782178219
    patch 25 high interf/patch volume: 5.666666666666667
    patch 26 high interf/patch volume: 6.880382775119617
    patch 27 high interf/patch volume: 6.614583333333334
    patch 28 high interf/patch volume: 8.044843049327357
    patch 30 high interf/patch volume: 5.75
    patch 32 high interf/patch volume: 5.9270072992700715
    patch 34 high interf/patch volume: 6.298611111111111
    patch 36 high interf/patch volume: 5.987500000000001
    patch 39 high interf/patch volume: 5.953020134228188
    patch 40 high interf/patch volume: 6.541899441340782
    patch 46 high interf/patch volume: 7
    patch 50 high interf/patch volume: 5.675159235668789
    patch 51 high interf/patch volume: 5.613636363636363
    patch 52 high interf/patch volume: 6.26923076923077
    patch 58 high interf/patch volume: 7.000000000000002
    patch 64 high interf/patch volume: 6.859999999999999
    patch 81 high interf/patch volume: 3.617391304347826
    patch 82 high interf/patch volume: 5.438356164383562
    patch 83 high interf/patch volume: 5.4222222222222225
    patch 84 high interf/patch volume: 7
    patch 86 high interf/patch volume: 3.84742951907131
    patch 87 high interf/patch volume: 5.484848484848484
    patch 90 high interf/patch volume: 5.390243902439025
    patch 91 high interf/patch volume: 7
    patch 92 high interf/patch volume: 3.7988721804511267
    patch 94 high interf/patch volume: 5.486486486486486
    patch 96 high interf/patch volume: 5.342465753424657
    patch 98 high interf/patch volume: 7
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999990867,-5916.9999999964875,-5916.999999999525)
    sum a = (-1.8870538812110205e-16,2.0179893864372437e-07,-5.1228552649940085e-17)
    sum e = 14792.500000133201
    sum de = -2.018079020320784e-07
Info: CFL hydro = 6.013112080216256 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 6.013112080216256 cfl multiplier : 0.9130864197530864           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.1604e+03 | 5917 |     92 | 9.605e-01 | 0.0% |   2.6% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 374.8063055672081 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 7                                                       [SPH][rank=0]
Info: time since start : 1563.1175424280002 (s)                                       [SPH][rank=0]
Info: collected : 92 patches                                               [PatchScheduler][rank=0]
---------------- t = 0.5, dt = 0.10000000000000009 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5903 min = 5903                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5903 min = 5903                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 113
    min = 5903
    max = 5903
    avg = 5903
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.90 us   (0.1%)
   patch tree reduce : 16.10 us   (0.1%)
   gen split merge   : 2.54 us    (0.0%)
   split / merge op  : 3/0
   apply split merge : 17.13 ms   (95.2%)
   LB compute        : 770.06 us  (4.3%)
   LB move op cnt    : 0
   LB apply          : 4.59 us    (0.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (19.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 7 high interf/patch volume: 6.119047619047619
    patch 8 high interf/patch volume: 5.683168316831683
    patch 9 high interf/patch volume: 5.634615384615385
    patch 11 high interf/patch volume: 5.810699588477366
    patch 14 high interf/patch volume: 7.697368421052631
    patch 15 high interf/patch volume: 6.3999999999999995
    patch 16 high interf/patch volume: 6.345588235294118
    patch 17 high interf/patch volume: 7.666666666666667
    patch 18 high interf/patch volume: 5.999999999999999
    patch 19 high interf/patch volume: 7.2857142857142865
    patch 20 high interf/patch volume: 8
    patch 22 high interf/patch volume: 7.783950617283951
    patch 23 high interf/patch volume: 7.477987421383649
    patch 24 high interf/patch volume: 8.070175438596491
    patch 25 high interf/patch volume: 7.455555555555555
    patch 26 high interf/patch volume: 8.005649717514125
    patch 27 high interf/patch volume: 7.773480662983426
    patch 28 high interf/patch volume: 8.15204678362573
    patch 30 high interf/patch volume: 7.051546391752577
    patch 32 high interf/patch volume: 6.808510638297872
    patch 34 high interf/patch volume: 7.148648648648649
    patch 36 high interf/patch volume: 7.446428571428572
    patch 39 high interf/patch volume: 6.972222222222222
    patch 40 high interf/patch volume: 7.471264367816092
    patch 46 high interf/patch volume: 7.222222222222222
    patch 50 high interf/patch volume: 6.912087912087912
    patch 51 high interf/patch volume: 6.835164835164836
    patch 52 high interf/patch volume: 7.267605633802816
    patch 58 high interf/patch volume: 7.333333333333335
    patch 64 high interf/patch volume: 7.5555555555555545
    patch 81 high interf/patch volume: 6.153846153846153
    patch 82 high interf/patch volume: 6.333333333333333
    patch 83 high interf/patch volume: 6.309523809523809
    patch 84 high interf/patch volume: 7
    patch 86 high interf/patch volume: 6.476190476190476
    patch 87 high interf/patch volume: 6.269230769230768
    patch 90 high interf/patch volume: 6.108433734939759
    patch 92 high interf/patch volume: 6.444444444444445
    patch 94 high interf/patch volume: 6.16504854368932
    patch 96 high interf/patch volume: 5.952941176470588
    patch 98 high interf/patch volume: 7
    patch 99 high interf/patch volume: 6.7142857142857135
    patch 100 high interf/patch volume: 6.715789473684211
    patch 101 high interf/patch volume: 6.648044692737431
    patch 102 high interf/patch volume: 6.6
    patch 103 high interf/patch volume: 7
    patch 104 high interf/patch volume: 6.500000000000001
    patch 105 high interf/patch volume: 6.686666666666667
    patch 106 high interf/patch volume: 6.3076923076923075
    patch 107 high interf/patch volume: 6.7333333333333325
    patch 108 high interf/patch volume: 6.857142857142857
    patch 109 high interf/patch volume: 6.680981595092025
    patch 110 high interf/patch volume: 6.506666666666667
    patch 111 high interf/patch volume: 6.373333333333333
    patch 112 high interf/patch volume: 6.8203125
    patch 113 high interf/patch volume: 6.453608247422679
    patch 114 high interf/patch volume: 6
    patch 115 high interf/patch volume: 6.18716577540107
    patch 116 high interf/patch volume: 6
    patch 117 high interf/patch volume: 6.131428571428572
    patch 119 high interf/patch volume: 6.443037974683545
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999990407,-5916.999999966271,-5916.9999999998745)
    sum a = (1.340034518290418e-07,1.471906364153286e-13,-1.0951574629797234e-08)
    sum e = 14792.500000102853
    sum de = -1.2305257317854305e-07
Info: CFL hydro = 6.204211622079716 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 6.204211622079716 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    | 4.6668e+03 | 5917 |    113 | 1.268e+00 | 0.0% |   2.5% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 283.9385231484618 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 8                                                       [SPH][rank=0]
Info: time since start : 1565.2046132100002 (s)                                       [SPH][rank=0]
Info: collected : 113 patches                                              [PatchScheduler][rank=0]
---------------- t = 0.6000000000000001, dt = 0.09999999999999998 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5917 min = 5917                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5917 min = 5917                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 113
    min = 5917
    max = 5917
    avg = 5917
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.15 us   (0.2%)
   patch tree reduce : 25.73 us   (0.4%)
   gen split merge   : 3.10 us    (0.1%)
   split / merge op  : 0/3
   apply split merge : 821.00 ns  (0.0%)
   LB compute        : 745.22 us  (12.4%)
   LB move op cnt    : 0
   LB apply          : 5.17 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (21.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 7 high interf/patch volume: 4.517857142857142
    patch 8 high interf/patch volume: 4.817910447761194
    patch 9 high interf/patch volume: 4.776119402985075
    patch 11 high interf/patch volume: 4.9689265536723175
    patch 14 high interf/patch volume: 7.790540540540541
    patch 15 high interf/patch volume: 7.031578947368421
    patch 16 high interf/patch volume: 7.178947368421052
    patch 18 high interf/patch volume: 7.2592592592592595
    patch 22 high interf/patch volume: 7.496969696969698
    patch 23 high interf/patch volume: 7.766304347826088
    patch 24 high interf/patch volume: 7.465608465608465
    patch 25 high interf/patch volume: 7.530054644808743
    patch 26 high interf/patch volume: 7.178571428571428
    patch 27 high interf/patch volume: 7.494382022471911
    patch 28 high interf/patch volume: 7.025477707006368
    patch 30 high interf/patch volume: 6.983333333333333
    patch 32 high interf/patch volume: 6.962962962962962
    patch 34 high interf/patch volume: 6.903225806451612
    patch 36 high interf/patch volume: 7.094339622641509
    patch 39 high interf/patch volume: 6.944444444444445
    patch 40 high interf/patch volume: 6.8
    patch 50 high interf/patch volume: 6.7407407407407405
    patch 51 high interf/patch volume: 6.904761904761905
    patch 52 high interf/patch volume: 6.884615384615385
    patch 81 high interf/patch volume: 5.8125
    patch 82 high interf/patch volume: 6.241379310344828
    patch 83 high interf/patch volume: 6.351851851851852
    patch 86 high interf/patch volume: 5.781818181818182
    patch 87 high interf/patch volume: 6.360655737704918
    patch 90 high interf/patch volume: 6.419354838709677
    patch 92 high interf/patch volume: 5.82089552238806
    patch 94 high interf/patch volume: 6.537037037037037
    patch 96 high interf/patch volume: 6.275862068965516
    patch 99 high interf/patch volume: 5.999999999999999
    patch 100 high interf/patch volume: 6.807486631016042
    patch 101 high interf/patch volume: 6.407608695652173
    patch 102 high interf/patch volume: 6.153846153846154
    patch 103 high interf/patch volume: 7
    patch 104 high interf/patch volume: 6.540697674418605
    patch 105 high interf/patch volume: 6.347517730496453
    patch 106 high interf/patch volume: 6.068965517241379
    patch 107 high interf/patch volume: 6.060606060606061
    patch 108 high interf/patch volume: 7
    patch 109 high interf/patch volume: 6.730769230769232
    patch 110 high interf/patch volume: 6.367088607594936
    patch 111 high interf/patch volume: 6.358823529411766
    patch 112 high interf/patch volume: 6.62589928057554
    patch 113 high interf/patch volume: 6.497076023391813
    patch 114 high interf/patch volume: 5.870967741935484
    patch 115 high interf/patch volume: 6.390374331550802
    patch 116 high interf/patch volume: 6.03125
    patch 117 high interf/patch volume: 6.302469135802469
    patch 118 high interf/patch volume: 7.000000000000001
    patch 119 high interf/patch volume: 6.4520547945205475
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999970309,-5916.999999976359,-5917.000000001516)
    sum a = (2.6508542605354485e-08,3.814781579774412e-08,1.7081279780374603e-09)
    sum e = 14792.500000094466
    sum de = -6.636463560009791e-08
Info: CFL hydro = 6.331785062179054 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 6.331785062179054 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    | 5.1125e+03 | 5917 |     92 | 1.157e+00 | 0.0% |   2.0% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 311.05586186815145 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 9                                                       [SPH][rank=0]
Info: time since start : 1567.1735331250002 (s)                                       [SPH][rank=0]
Info: collected : 92 patches                                               [PatchScheduler][rank=0]
---------------- t = 0.7000000000000001, dt = 0.09999999999999998 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5917 min = 5917                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5917 min = 5917                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 92
    min = 5917
    max = 5917
    avg = 5917
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.12 us   (1.4%)
   patch tree reduce : 21.24 us   (3.0%)
   gen split merge   : 1313.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.1%)
   LB compute        : 619.78 us  (86.3%)
   LB move op cnt    : 0
   LB apply          : 4.70 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (17.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 7 high interf/patch volume: 3.5450643776824036
    patch 8 high interf/patch volume: 4.225263157894736
    patch 9 high interf/patch volume: 4.132478632478632
    patch 11 high interf/patch volume: 4.359574468085107
    patch 14 high interf/patch volume: 7.94857142857143
    patch 15 high interf/patch volume: 7.444444444444445
    patch 16 high interf/patch volume: 7.569230769230769
    patch 18 high interf/patch volume: 7.611111111111112
    patch 22 high interf/patch volume: 7.596774193548386
    patch 23 high interf/patch volume: 7.866279069767442
    patch 24 high interf/patch volume: 7.681250000000002
    patch 25 high interf/patch volume: 7.6395939086294415
    patch 26 high interf/patch volume: 7.50625
    patch 27 high interf/patch volume: 7.503496503496505
    patch 28 high interf/patch volume: 7.6521739130434785
    patch 30 high interf/patch volume: 7.529411764705881
    patch 32 high interf/patch volume: 7.2608695652173925
    patch 34 high interf/patch volume: 7
    patch 36 high interf/patch volume: 7.444444444444443
    patch 39 high interf/patch volume: 7.058823529411765
    patch 40 high interf/patch volume: 7
    patch 50 high interf/patch volume: 7.043478260869566
    patch 51 high interf/patch volume: 7.333333333333335
    patch 52 high interf/patch volume: 7
    patch 81 high interf/patch volume: 5.415730337078651
    patch 82 high interf/patch volume: 6.3
    patch 83 high interf/patch volume: 6.151515151515151
    patch 86 high interf/patch volume: 5.4431818181818175
    patch 87 high interf/patch volume: 6.4444444444444455
    patch 90 high interf/patch volume: 6.243243243243243
    patch 92 high interf/patch volume: 5.3238095238095235
    patch 94 high interf/patch volume: 6.428571428571429
    patch 96 high interf/patch volume: 6.3428571428571425
    patch 99 high interf/patch volume: 5.903225806451612
    patch 100 high interf/patch volume: 6.754098360655737
    patch 101 high interf/patch volume: 6.49462365591398
    patch 102 high interf/patch volume: 5.666666666666666
    patch 103 high interf/patch volume: 7
    patch 104 high interf/patch volume: 6.36842105263158
    patch 105 high interf/patch volume: 6.918032786885246
    patch 106 high interf/patch volume: 5.695652173913044
    patch 107 high interf/patch volume: 5.475
    patch 108 high interf/patch volume: 7.142857142857142
    patch 109 high interf/patch volume: 6.45945945945946
    patch 110 high interf/patch volume: 6.3257142857142865
    patch 111 high interf/patch volume: 6.1923076923076925
    patch 112 high interf/patch volume: 6.756521739130434
    patch 113 high interf/patch volume: 6.644444444444446
    patch 114 high interf/patch volume: 5.857142857142858
    patch 115 high interf/patch volume: 6.591715976331361
    patch 116 high interf/patch volume: 5.627906976744186
    patch 117 high interf/patch volume: 6.3895348837209305
    patch 118 high interf/patch volume: 7
    patch 119 high interf/patch volume: 6.719626168224299
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.99999997303,-5916.999999970639,-5917.000000000711)
    sum a = (-1.1460368024799467e-08,-4.746841959432646e-09,-6.373388535679814e-11)
    sum e = 14792.500000090638
    sum de = 1.627092990593229e-08
Info: CFL hydro = 6.417027149239854 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 6.417027149239854 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    | 5.2572e+03 | 5917 |     92 | 1.126e+00 | 0.0% |   2.1% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 319.8575937129217 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 10                                                      [SPH][rank=0]
Info: time since start : 1569.035870264 (s)                                           [SPH][rank=0]
Info: collected : 92 patches                                               [PatchScheduler][rank=0]
---------------- t = 0.8, dt = 0.09999999999999998 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5917 min = 5917                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5917 min = 5917                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 92
    min = 5917
    max = 5917
    avg = 5917
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.59 us   (1.3%)
   patch tree reduce : 21.57 us   (2.6%)
   gen split merge   : 1433.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.1%)
   LB compute        : 730.67 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (20.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 7 high interf/patch volume: 2.366265060240964
    patch 8 high interf/patch volume: 3.4991843393148447
    patch 9 high interf/patch volume: 3.6307947019867552
    patch 11 high interf/patch volume: 3.496539792387543
    patch 14 high interf/patch volume: 8.528409090909092
    patch 15 high interf/patch volume: 6.777777777777778
    patch 16 high interf/patch volume: 7.25
    patch 18 high interf/patch volume: 6.9642857142857135
    patch 22 high interf/patch volume: 7.183098591549295
    patch 23 high interf/patch volume: 7.416216216216217
    patch 24 high interf/patch volume: 6.80672268907563
    patch 25 high interf/patch volume: 7.437500000000001
    patch 26 high interf/patch volume: 6.88135593220339
    patch 27 high interf/patch volume: 6.686868686868686
    patch 28 high interf/patch volume: 6.6060606060606055
    patch 50 high interf/patch volume: 7
    patch 81 high interf/patch volume: 4.9322033898305095
    patch 82 high interf/patch volume: 6
    patch 83 high interf/patch volume: 6.666666666666667
    patch 86 high interf/patch volume: 4.931297709923664
    patch 87 high interf/patch volume: 6
    patch 90 high interf/patch volume: 6.4
    patch 92 high interf/patch volume: 5.1328125
    patch 94 high interf/patch volume: 6.25
    patch 96 high interf/patch volume: 6.214285714285714
    patch 99 high interf/patch volume: 5.647058823529411
    patch 100 high interf/patch volume: 6.814371257485029
    patch 101 high interf/patch volume: 6.367567567567568
    patch 102 high interf/patch volume: 5.434782608695652
    patch 103 high interf/patch volume: 7
    patch 104 high interf/patch volume: 6.293333333333334
    patch 105 high interf/patch volume: 7.045977011494253
    patch 106 high interf/patch volume: 5.611111111111112
    patch 107 high interf/patch volume: 5.536585365853659
    patch 108 high interf/patch volume: 7.125
    patch 109 high interf/patch volume: 6.707446808510638
    patch 110 high interf/patch volume: 6.401041666666665
    patch 111 high interf/patch volume: 6.317365269461079
    patch 112 high interf/patch volume: 6.9021739130434785
    patch 113 high interf/patch volume: 7.229508196721312
    patch 114 high interf/patch volume: 5.95
    patch 115 high interf/patch volume: 6.75
    patch 116 high interf/patch volume: 5.5777777777777775
    patch 117 high interf/patch volume: 6.4402515723270435
    patch 118 high interf/patch volume: 7.166666666666667
    patch 119 high interf/patch volume: 6.986486486486487
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999976076,-5916.99999997326,-5917.000000000806)
    sum a = (5.204170427930421e-18,3.903127820947816e-18,-3.2526065174565133e-18)
    sum e = 14792.500000096363
    sum de = -1.734723475976807e-17
Info: CFL hydro = 6.474067650169656 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 6.474067650169656 cfl multiplier : 0.9828318853833258           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0605e+03 | 5917 |     92 | 9.763e-01 | 0.0% |   2.3% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 368.7302457187936 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 11                                                      [SPH][rank=0]
Info: time since start : 1570.826101954 (s)                                           [SPH][rank=0]
Info: collected : 92 patches                                               [PatchScheduler][rank=0]
---------------- t = 0.9, dt = 0.09999999999999998 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5906 min = 5906                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5906 min = 5906                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 113
    min = 5906
    max = 5906
    avg = 5906
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.87 us   (0.1%)
   patch tree reduce : 22.36 us   (0.2%)
   gen split merge   : 3.32 us    (0.0%)
   split / merge op  : 3/3
   apply split merge : 8.26 ms    (80.1%)
   LB compute        : 795.45 us  (7.7%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (0.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (24.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 7 high interf/patch volume: 1.784073506891271
    patch 14 high interf/patch volume: 8.16591928251121
    patch 22 high interf/patch volume: 6.222222222222221
    patch 23 high interf/patch volume: 6.46927374301676
    patch 24 high interf/patch volume: 7
    patch 25 high interf/patch volume: 6.152866242038217
    patch 26 high interf/patch volume: 7
    patch 27 high interf/patch volume: 6.86
    patch 28 high interf/patch volume: 7
    patch 81 high interf/patch volume: 4.522292993630574
    patch 86 high interf/patch volume: 4.685714285714286
    patch 92 high interf/patch volume: 4.590277777777778
    patch 99 high interf/patch volume: 5.138888888888888
    patch 100 high interf/patch volume: 6.889952153110047
    patch 101 high interf/patch volume: 5.700729927007299
    patch 102 high interf/patch volume: 5.130434782608695
    patch 103 high interf/patch volume: 7
    patch 104 high interf/patch volume: 5.42948717948718
    patch 105 high interf/patch volume: 7.027027027027026
    patch 106 high interf/patch volume: 5.138888888888888
    patch 107 high interf/patch volume: 5.140000000000001
    patch 108 high interf/patch volume: 7
    patch 109 high interf/patch volume: 6.688118811881188
    patch 110 high interf/patch volume: 5.4296875
    patch 111 high interf/patch volume: 5.7124999999999995
    patch 112 high interf/patch volume: 7.23529411764706
    patch 113 high interf/patch volume: 6.677083333333333
    patch 114 high interf/patch volume: 5.1499999999999995
    patch 115 high interf/patch volume: 5.744966442953021
    patch 116 high interf/patch volume: 5.027777777777778
    patch 117 high interf/patch volume: 5.353383458646616
    patch 118 high interf/patch volume: 7
    patch 119 high interf/patch volume: 7.124999999999999
    patch 122 high interf/patch volume: 2.964539007092198
    patch 131 high interf/patch volume: 2.8972099853157123
    patch 139 high interf/patch volume: 2.9662618083670718
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999975502,-5916.999999973022,-5917.000000000803)
    sum a = (4.3612744274335036e-07,1.4841693775531628e-07,7.326815702063394e-08)
    sum e = 14792.500000095517
    sum de = -6.578249830049149e-07
Info: CFL hydro = 6.5123264509902 sink sink = inf                                     [SPH][rank=0]
Info: cfl dt = 6.5123264509902 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    | 7.6557e+03 | 5917 |     92 | 7.729e-01 | 0.0% |   2.1% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 465.7834211453036 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 12                                                      [SPH][rank=0]
Info: time since start : 1572.3226491700002 (s)                                       [SPH][rank=0]
Info: collected : 92 patches                                               [PatchScheduler][rank=0]
---------------- t = 1, dt = 0.10000000000000009 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5905 min = 5905                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5905 min = 5905                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 120
    min = 5905
    max = 5905
    avg = 5905
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.84 us   (0.0%)
   patch tree reduce : 21.58 us   (0.1%)
   gen split merge   : 2.77 us    (0.0%)
   split / merge op  : 4/0
   apply split merge : 33.14 ms   (98.1%)
   LB compute        : 523.55 us  (1.5%)
   LB move op cnt    : 0
   LB apply          : 4.64 us    (0.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (19.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 10 high interf/patch volume: 7.285714285714285
    patch 12 high interf/patch volume: 7
    patch 14 high interf/patch volume: 8.25
    patch 22 high interf/patch volume: 7.148648648648648
    patch 23 high interf/patch volume: 7.471264367816093
    patch 24 high interf/patch volume: 7.222222222222223
    patch 25 high interf/patch volume: 7.267605633802816
    patch 26 high interf/patch volume: 7.333333333333333
    patch 27 high interf/patch volume: 7.555555555555557
    patch 81 high interf/patch volume: 7.453125
    patch 86 high interf/patch volume: 7.293333333333333
    patch 92 high interf/patch volume: 7.056962025316456
    patch 99 high interf/patch volume: 7
    patch 100 high interf/patch volume: 8.293785310734464
    patch 101 high interf/patch volume: 7.138297872340426
    patch 102 high interf/patch volume: 6.93939393939394
    patch 104 high interf/patch volume: 7.21978021978022
    patch 105 high interf/patch volume: 7.285714285714286
    patch 106 high interf/patch volume: 7.4074074074074066
    patch 107 high interf/patch volume: 7.470588235294119
    patch 108 high interf/patch volume: 7
    patch 109 high interf/patch volume: 8.4
    patch 110 high interf/patch volume: 7.350515463917525
    patch 111 high interf/patch volume: 7.705357142857144
    patch 112 high interf/patch volume: 7.5
    patch 113 high interf/patch volume: 8.120879120879122
    patch 114 high interf/patch volume: 7.044444444444446
    patch 115 high interf/patch volume: 7.277777777777778
    patch 116 high interf/patch volume: 7.000000000000001
    patch 117 high interf/patch volume: 7.164835164835165
    patch 118 high interf/patch volume: 7
    patch 119 high interf/patch volume: 8
    patch 120 high interf/patch volume: 6.6
    patch 121 high interf/patch volume: 6
    patch 122 high interf/patch volume: 5.509803921568627
    patch 127 high interf/patch volume: 6.75
    patch 130 high interf/patch volume: 6
    patch 131 high interf/patch volume: 5.411764705882352
    patch 135 high interf/patch volume: 6.615384615384616
    patch 137 high interf/patch volume: 6.57142857142857
    patch 139 high interf/patch volume: 5.714285714285715
    patch 143 high interf/patch volume: 5.517241379310345
    patch 145 high interf/patch volume: 6.095238095238095
    patch 146 high interf/patch volume: 6.444444444444445
    patch 147 high interf/patch volume: 4.10855565777369
    patch 148 high interf/patch volume: 7
    patch 149 high interf/patch volume: 6.833333333333333
    patch 150 high interf/patch volume: 7.3571428571428585
    patch 151 high interf/patch volume: 6.837988826815643
    patch 152 high interf/patch volume: 7.2444444444444445
    patch 153 high interf/patch volume: 7.851851851851852
    patch 154 high interf/patch volume: 7.25
    patch 155 high interf/patch volume: 6.653333333333333
    patch 156 high interf/patch volume: 7
    patch 157 high interf/patch volume: 7.1800000000000015
    patch 158 high interf/patch volume: 6.331550802139037
    patch 159 high interf/patch volume: 7.594936708860762
    patch 160 high interf/patch volume: 7.155172413793102
    patch 161 high interf/patch volume: 7.220588235294119
    patch 162 high interf/patch volume: 6.803571428571428
    patch 163 high interf/patch volume: 6.417142857142856
    patch 164 high interf/patch volume: 7.572222222222223
    patch 165 high interf/patch volume: 7
    patch 166 high interf/patch volume: 7.16
    patch 167 high interf/patch volume: 6.9799999999999995
    patch 168 high interf/patch volume: 6.936363636363636
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999910083,-5916.999999950756,-5916.999999989811)
    sum a = (1.3357018452137687e-07,5.312367841632526e-13,-1.0940312442650826e-08)
    sum e = 14792.499999996808
    sum de = -1.2263132936852703e-07
Info: CFL hydro = 6.538083559850003 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 6.538083559850003 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.9651e+03 | 5917 |    120 | 1.492e+00 | 0.0% |   2.0% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 241.2418336715922 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 13                                                      [SPH][rank=0]
Info: time since start : 1574.534745847 (s)                                           [SPH][rank=0]
Info: collected : 120 patches                                              [PatchScheduler][rank=0]
---------------- t = 1.1, dt = 0.10000000000000009 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5910 min = 5910                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5910 min = 5910                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 127
    min = 5910
    max = 5910
    avg = 5910
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.26 us   (0.1%)
   patch tree reduce : 24.97 us   (0.2%)
   gen split merge   : 2.73 us    (0.0%)
   split / merge op  : 1/0
   apply split merge : 11.02 ms   (92.3%)
   LB compute        : 792.36 us  (6.6%)
   LB move op cnt    : 0
   LB apply          : 5.00 us    (0.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (17.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 10 high interf/patch volume: 7.111111111111111
    patch 12 high interf/patch volume: 7.125
    patch 13 high interf/patch volume: 7.3076923076923075
    patch 14 high interf/patch volume: 7.031645569620256
    patch 22 high interf/patch volume: 6.903225806451612
    patch 23 high interf/patch volume: 6.8
    patch 25 high interf/patch volume: 6.884615384615384
    patch 81 high interf/patch volume: 7.302158273381296
    patch 86 high interf/patch volume: 7.070921985815602
    patch 92 high interf/patch volume: 7.136986301369862
    patch 99 high interf/patch volume: 6.999999999999999
    patch 100 high interf/patch volume: 7.523809523809522
    patch 101 high interf/patch volume: 7.370370370370371
    patch 102 high interf/patch volume: 6.888888888888889
    patch 104 high interf/patch volume: 7.166666666666666
    patch 106 high interf/patch volume: 7.105263157894737
    patch 107 high interf/patch volume: 7.058823529411765
    patch 109 high interf/patch volume: 7.819148936170214
    patch 110 high interf/patch volume: 7.366666666666667
    patch 111 high interf/patch volume: 7.528301886792453
    patch 113 high interf/patch volume: 7.815642458100561
    patch 114 high interf/patch volume: 7.0625
    patch 115 high interf/patch volume: 7.333333333333335
    patch 116 high interf/patch volume: 7.1875
    patch 117 high interf/patch volume: 7.26984126984127
    patch 120 high interf/patch volume: 6.5
    patch 121 high interf/patch volume: 6.435897435897435
    patch 122 high interf/patch volume: 6.250000000000001
    patch 127 high interf/patch volume: 6.621621621621621
    patch 130 high interf/patch volume: 6.421052631578948
    patch 131 high interf/patch volume: 6.292682926829269
    patch 135 high interf/patch volume: 6.529411764705882
    patch 137 high interf/patch volume: 6.28
    patch 139 high interf/patch volume: 6.158333333333334
    patch 143 high interf/patch volume: 5.822916666666666
    patch 145 high interf/patch volume: 5.69047619047619
    patch 146 high interf/patch volume: 5.778761061946902
    patch 147 high interf/patch volume: 4.711538461538462
    patch 148 high interf/patch volume: 7
    patch 149 high interf/patch volume: 7.2215189873417724
    patch 150 high interf/patch volume: 7.435897435897436
    patch 151 high interf/patch volume: 7.21195652173913
    patch 152 high interf/patch volume: 7.476190476190476
    patch 153 high interf/patch volume: 8.096969696969698
    patch 154 high interf/patch volume: 7.831578947368422
    patch 155 high interf/patch volume: 7.3
    patch 156 high interf/patch volume: 7
    patch 157 high interf/patch volume: 7.648648648648648
    patch 158 high interf/patch volume: 7.347593582887701
    patch 159 high interf/patch volume: 8.480874316939891
    patch 160 high interf/patch volume: 7.842105263157895
    patch 161 high interf/patch volume: 8.126315789473685
    patch 162 high interf/patch volume: 7.226744186046512
    patch 163 high interf/patch volume: 7.11111111111111
    patch 164 high interf/patch volume: 7.978142076502733
    patch 165 high interf/patch volume: 7.076923076923077
    patch 166 high interf/patch volume: 7.454545454545454
    patch 167 high interf/patch volume: 7.404761904761905
    patch 168 high interf/patch volume: 7.987654320987655
    patch 169 high interf/patch volume: 5.820512820512819
    patch 170 high interf/patch volume: 5.775510204081633
    patch 171 high interf/patch volume: 7.131147540983606
    patch 172 high interf/patch volume: 5.867052023121385
    patch 173 high interf/patch volume: 7.0641711229946536
    patch 174 high interf/patch volume: 6.9415204678362565
    patch 175 high interf/patch volume: 7.959183673469388
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.9999999118545,-5916.9999999581805,-5916.999999995118)
    sum a = (2.626390644614049e-08,3.781417984991826e-08,1.6960669463485878e-09)
    sum e = 14792.500000011261
    sum de = -6.57743578147175e-08
Info: CFL hydro = 6.555525742371208 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 6.555525742371208 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.9985e+03 | 5917 |    127 | 1.480e+00 | 0.0% |   2.4% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 243.27593804993666 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 14                                                      [SPH][rank=0]
Info: time since start : 1576.9364563810002 (s)                                       [SPH][rank=0]
Info: collected : 127 patches                                              [PatchScheduler][rank=0]
---------------- t = 1.2000000000000002, dt = 0.09999999999999987 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5917 min = 5917                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5917 min = 5917                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 127
    min = 5917
    max = 5917
    avg = 5917
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.02 us   (1.7%)
   patch tree reduce : 25.86 us   (3.6%)
   gen split merge   : 1704.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.2%)
   LB compute        : 603.82 us  (83.1%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (18.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 10 high interf/patch volume: 7.285714285714286
    patch 12 high interf/patch volume: 7.111111111111111
    patch 13 high interf/patch volume: 7.222222222222221
    patch 14 high interf/patch volume: 7.652173913043479
    patch 22 high interf/patch volume: 7
    patch 23 high interf/patch volume: 7
    patch 25 high interf/patch volume: 7
    patch 81 high interf/patch volume: 7.573913043478261
    patch 86 high interf/patch volume: 7.682926829268292
    patch 92 high interf/patch volume: 7.476635514018692
    patch 99 high interf/patch volume: 7.333333333333334
    patch 100 high interf/patch volume: 7.899999999999999
    patch 101 high interf/patch volume: 7.913043478260869
    patch 102 high interf/patch volume: 7.2
    patch 104 high interf/patch volume: 7.652173913043478
    patch 106 high interf/patch volume: 7.5
    patch 107 high interf/patch volume: 7.4
    patch 109 high interf/patch volume: 8.087499999999999
    patch 110 high interf/patch volume: 8.058823529411764
    patch 111 high interf/patch volume: 8.055555555555555
    patch 113 high interf/patch volume: 7.881118881118882
    patch 114 high interf/patch volume: 7
    patch 115 high interf/patch volume: 7.705882352941177
    patch 116 high interf/patch volume: 7
    patch 117 high interf/patch volume: 7.888888888888889
    patch 120 high interf/patch volume: 6.127659574468085
    patch 121 high interf/patch volume: 6.081967213114753
    patch 122 high interf/patch volume: 6.309352517985612
    patch 127 high interf/patch volume: 6.113207547169811
    patch 130 high interf/patch volume: 6.254901960784313
    patch 131 high interf/patch volume: 6.1484375
    patch 135 high interf/patch volume: 6.21875
    patch 137 high interf/patch volume: 5.999999999999999
    patch 139 high interf/patch volume: 5.972027972027973
    patch 143 high interf/patch volume: 5.171673819742489
    patch 145 high interf/patch volume: 5.160194174757281
    patch 146 high interf/patch volume: 5.088
    patch 147 high interf/patch volume: 4.417721518987341
    patch 148 high interf/patch volume: 6.916666666666666
    patch 149 high interf/patch volume: 7.2228571428571415
    patch 150 high interf/patch volume: 7.4411764705882355
    patch 151 high interf/patch volume: 7.275675675675674
    patch 152 high interf/patch volume: 7.433333333333334
    patch 153 high interf/patch volume: 8.172043010752688
    patch 154 high interf/patch volume: 8.444444444444443
    patch 155 high interf/patch volume: 7.261146496815288
    patch 156 high interf/patch volume: 6.900000000000001
    patch 157 high interf/patch volume: 7.535714285714286
    patch 158 high interf/patch volume: 7.499999999999998
    patch 159 high interf/patch volume: 8.619883040935672
    patch 160 high interf/patch volume: 7.42857142857143
    patch 161 high interf/patch volume: 8.538461538461538
    patch 162 high interf/patch volume: 7.391812865497077
    patch 163 high interf/patch volume: 7.261627906976745
    patch 164 high interf/patch volume: 8.279187817258885
    patch 165 high interf/patch volume: 7.25
    patch 166 high interf/patch volume: 7.4375
    patch 167 high interf/patch volume: 7.4375
    patch 168 high interf/patch volume: 8.574074074074074
    patch 169 high interf/patch volume: 5.7016574585635365
    patch 170 high interf/patch volume: 5.670329670329671
    patch 171 high interf/patch volume: 6.883597883597884
    patch 172 high interf/patch volume: 5.755319148936171
    patch 173 high interf/patch volume: 7.082872928176795
    patch 174 high interf/patch volume: 7.000000000000001
    patch 175 high interf/patch volume: 8.163742690058479
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999914592,-5916.999999952508,-5916.9999999943175)
    sum a = (-1.1316821959975613e-08,-4.6884213208953605e-09,-6.398917111032087e-11)
    sum e = 14792.500000007485
    sum de = 1.606921981912987e-08
Info: CFL hydro = 6.5674442626757665 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 6.5674442626757665 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    | 4.1388e+03 | 5917 |    127 | 1.430e+00 | 0.0% |   2.1% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 251.81310630182597 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 15                                                      [SPH][rank=0]
Info: time since start : 1579.235210476 (s)                                           [SPH][rank=0]
Info: collected : 127 patches                                              [PatchScheduler][rank=0]
---------------- t = 1.3, dt = 0.10000000000000009 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5917 min = 5917                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5917 min = 5917                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 127
    min = 5917
    max = 5917
    avg = 5917
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.61 us   (1.4%)
   patch tree reduce : 26.08 us   (3.5%)
   gen split merge   : 1674.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.1%)
   LB compute        : 630.94 us  (84.0%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (16.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 10 high interf/patch volume: 7.125
    patch 11 high interf/patch volume: 7
    patch 12 high interf/patch volume: 7
    patch 13 high interf/patch volume: 7.166666666666667
    patch 14 high interf/patch volume: 6.6060606060606055
    patch 81 high interf/patch volume: 7.021739130434782
    patch 86 high interf/patch volume: 7.068965517241378
    patch 92 high interf/patch volume: 6.932432432432433
    patch 100 high interf/patch volume: 6.838983050847457
    patch 104 high interf/patch volume: 7
    patch 109 high interf/patch volume: 6.789915966386555
    patch 113 high interf/patch volume: 6.585858585858586
    patch 120 high interf/patch volume: 6.038461538461539
    patch 121 high interf/patch volume: 6.112676056338027
    patch 122 high interf/patch volume: 6.583333333333333
    patch 127 high interf/patch volume: 6.289855072463768
    patch 130 high interf/patch volume: 6.246376811594204
    patch 131 high interf/patch volume: 6.625000000000001
    patch 135 high interf/patch volume: 5.766666666666667
    patch 137 high interf/patch volume: 5.582417582417582
    patch 139 high interf/patch volume: 5.6410256410256405
    patch 141 high interf/patch volume: 4.916666666666666
    patch 142 high interf/patch volume: 4.85
    patch 143 high interf/patch volume: 4.402116402116402
    patch 144 high interf/patch volume: 5.166666666666666
    patch 145 high interf/patch volume: 4.4014423076923075
    patch 146 high interf/patch volume: 4.526448362720402
    patch 147 high interf/patch volume: 5.100591715976329
    patch 149 high interf/patch volume: 6.630208333333332
    patch 150 high interf/patch volume: 6
    patch 151 high interf/patch volume: 6.486486486486487
    patch 152 high interf/patch volume: 6
    patch 153 high interf/patch volume: 7.154929577464787
    patch 154 high interf/patch volume: 6.777777777777778
    patch 155 high interf/patch volume: 7.1916167664670665
    patch 156 high interf/patch volume: 7
    patch 157 high interf/patch volume: 7.666666666666666
    patch 158 high interf/patch volume: 7.27906976744186
    patch 159 high interf/patch volume: 7.713513513513512
    patch 160 high interf/patch volume: 7
    patch 161 high interf/patch volume: 8.083333333333332
    patch 162 high interf/patch volume: 7.019867549668874
    patch 163 high interf/patch volume: 6.956250000000001
    patch 164 high interf/patch volume: 7.7175141242937855
    patch 165 high interf/patch volume: 7.333333333333333
    patch 166 high interf/patch volume: 7.199999999999999
    patch 167 high interf/patch volume: 6.999999999999999
    patch 168 high interf/patch volume: 7.392857142857143
    patch 169 high interf/patch volume: 5.434285714285715
    patch 170 high interf/patch volume: 6.005263157894738
    patch 171 high interf/patch volume: 6.862433862433862
    patch 172 high interf/patch volume: 6.182352941176471
    patch 173 high interf/patch volume: 6.745454545454543
    patch 174 high interf/patch volume: 7.182320441988951
    patch 175 high interf/patch volume: 8.293103448275861
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999917604,-5916.999999955102,-5916.99999999441)
    sum a = (-8.760015632577422e-09,1.0116740273734067e-09,6.830955254045889e-09)
    sum e = 14792.500000013131
    sum de = 9.168028383440136e-10
Info: CFL hydro = 6.575700037719576 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 6.575700037719576 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    | 4.5979e+03 | 5917 |    127 | 1.287e+00 | 0.0% |   2.0% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 279.7417439760823 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 16                                                      [SPH][rank=0]
Info: time since start : 1581.4763729180002 (s)                                       [SPH][rank=0]
Info: collected : 127 patches                                              [PatchScheduler][rank=0]
---------------- t = 1.4000000000000001, dt = 0.09999999999999987 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5917 min = 5917                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5917 min = 5917                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 127
    min = 5917
    max = 5917
    avg = 5917
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.38 us   (0.8%)
   patch tree reduce : 24.64 us   (1.9%)
   gen split merge   : 2.62 us    (0.2%)
   split / merge op  : 0/1
   apply split merge : 832.00 ns  (0.1%)
   LB compute        : 719.41 us  (56.3%)
   LB move op cnt    : 0
   LB apply          : 5.00 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (17.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 7 high interf/patch volume: 7
    patch 8 high interf/patch volume: 7
    patch 9 high interf/patch volume: 7
    patch 10 high interf/patch volume: 7
    patch 11 high interf/patch volume: 7
    patch 12 high interf/patch volume: 7
    patch 13 high interf/patch volume: 7
    patch 14 high interf/patch volume: 7
    patch 81 high interf/patch volume: 7.23529411764706
    patch 86 high interf/patch volume: 7.027027027027027
    patch 92 high interf/patch volume: 7.125
    patch 100 high interf/patch volume: 7.000000000000001
    patch 109 high interf/patch volume: 7
    patch 113 high interf/patch volume: 6.859999999999999
    patch 120 high interf/patch volume: 5.634146341463415
    patch 121 high interf/patch volume: 5.534246575342466
    patch 122 high interf/patch volume: 5.298507462686567
    patch 127 high interf/patch volume: 5.655555555555555
    patch 130 high interf/patch volume: 5.68918918918919
    patch 131 high interf/patch volume: 5.586466165413533
    patch 135 high interf/patch volume: 5.63013698630137
    patch 137 high interf/patch volume: 5.666666666666668
    patch 139 high interf/patch volume: 5.504065040650406
    patch 141 high interf/patch volume: 4.987804878048781
    patch 142 high interf/patch volume: 4.931506849315069
    patch 143 high interf/patch volume: 3.7590361445783134
    patch 144 high interf/patch volume: 5
    patch 145 high interf/patch volume: 3.986733001658375
    patch 146 high interf/patch volume: 3.9191729323308264
    patch 147 high interf/patch volume: 5.16867469879518
    patch 149 high interf/patch volume: 5.75
    patch 151 high interf/patch volume: 5.927007299270072
    patch 153 high interf/patch volume: 6.298611111111111
    patch 155 high interf/patch volume: 5.987500000000001
    patch 158 high interf/patch volume: 5.953020134228187
    patch 159 high interf/patch volume: 6.541899441340782
    patch 162 high interf/patch volume: 5.738853503184713
    patch 163 high interf/patch volume: 5.624060150375939
    patch 164 high interf/patch volume: 6.273885350318472
    patch 169 high interf/patch volume: 5.910526315789472
    patch 170 high interf/patch volume: 5.687861271676301
    patch 171 high interf/patch volume: 6.716417910447761
    patch 172 high interf/patch volume: 5.823204419889501
    patch 173 high interf/patch volume: 6.859903381642512
    patch 174 high interf/patch volume: 6.628272251308901
    patch 175 high interf/patch volume: 8.04954954954955
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999918353,-5916.999999954714,-5916.999999993383)
    sum a = (4.479730320960766e-13,2.012827698160262e-07,7.362728184296188e-14)
    sum e = 14792.500000012415
    sum de = -2.0130689923162097e-07
Info: CFL hydro = 6.581533738769554 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 6.581533738769554 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    | 5.6189e+03 | 5917 |    120 | 1.053e+00 | 0.0% |   2.0% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 341.86287051246234 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 17                                                      [SPH][rank=0]
Info: time since start : 1583.3856038400002 (s)                                       [SPH][rank=0]
Info: collected : 120 patches                                              [PatchScheduler][rank=0]
---------------- t = 1.5, dt = 0.10000000000000009 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5905 min = 5905                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5905 min = 5905                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 141
    min = 5905
    max = 5905
    avg = 5905
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.64 us   (0.1%)
   patch tree reduce : 23.69 us   (0.1%)
   gen split merge   : 3.72 us    (0.0%)
   split / merge op  : 3/1
   apply split merge : 16.72 ms   (94.1%)
   LB compute        : 514.17 us  (2.9%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (0.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (17.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 7 high interf/patch volume: 6.119047619047619
    patch 8 high interf/patch volume: 7
    patch 9 high interf/patch volume: 7
    patch 10 high interf/patch volume: 7
    patch 11 high interf/patch volume: 7
    patch 13 high interf/patch volume: 7
    patch 81 high interf/patch volume: 7.666666666666667
    patch 86 high interf/patch volume: 7.2857142857142865
    patch 92 high interf/patch volume: 8
    patch 100 high interf/patch volume: 7.333333333333333
    patch 109 high interf/patch volume: 7.222222222222221
    patch 113 high interf/patch volume: 7.555555555555555
    patch 120 high interf/patch volume: 6.361445783132529
    patch 121 high interf/patch volume: 6.235294117647058
    patch 122 high interf/patch volume: 6.236363636363635
    patch 127 high interf/patch volume: 6.583333333333333
    patch 130 high interf/patch volume: 6.4368932038834945
    patch 131 high interf/patch volume: 6.588235294117647
    patch 135 high interf/patch volume: 6.608695652173913
    patch 137 high interf/patch volume: 6.538461538461537
    patch 139 high interf/patch volume: 6.666666666666665
    patch 141 high interf/patch volume: 5.912371134020618
    patch 142 high interf/patch volume: 5.795918367346939
    patch 143 high interf/patch volume: 6.153846153846153
    patch 144 high interf/patch volume: 6
    patch 145 high interf/patch volume: 6.476190476190476
    patch 146 high interf/patch volume: 6.444444444444445
    patch 147 high interf/patch volume: 7.688741721854305
    patch 149 high interf/patch volume: 7.051546391752577
    patch 151 high interf/patch volume: 6.808510638297872
    patch 153 high interf/patch volume: 7.148648648648649
    patch 155 high interf/patch volume: 7.446428571428572
    patch 158 high interf/patch volume: 6.972222222222223
    patch 159 high interf/patch volume: 7.471264367816092
    patch 162 high interf/patch volume: 6.912087912087913
    patch 163 high interf/patch volume: 6.835164835164836
    patch 164 high interf/patch volume: 7.267605633802816
    patch 169 high interf/patch volume: 8.012422360248447
    patch 170 high interf/patch volume: 7.649681528662421
    patch 171 high interf/patch volume: 8.065088757396449
    patch 172 high interf/patch volume: 7.605555555555555
    patch 173 high interf/patch volume: 8.005649717514125
    patch 174 high interf/patch volume: 7.78021978021978
    patch 175 high interf/patch volume: 8.145348837209305
    patch 176 high interf/patch volume: 6.384615384615385
    patch 177 high interf/patch volume: 6.8
    patch 178 high interf/patch volume: 6.857142857142857
    patch 179 high interf/patch volume: 6.6951219512195115
    patch 180 high interf/patch volume: 6.834437086092716
    patch 181 high interf/patch volume: 6.6158940397351
    patch 182 high interf/patch volume: 6.844961240310076
    patch 183 high interf/patch volume: 6.7142857142857135
    patch 184 high interf/patch volume: 6.708994708994709
    patch 185 high interf/patch volume: 6.98876404494382
    patch 186 high interf/patch volume: 6.6
    patch 187 high interf/patch volume: 7
    patch 188 high interf/patch volume: 6.769230769230768
    patch 189 high interf/patch volume: 6.688741721854304
    patch 190 high interf/patch volume: 6.453608247422679
    patch 191 high interf/patch volume: 6
    patch 192 high interf/patch volume: 6.454545454545455
    patch 193 high interf/patch volume: 6
    patch 194 high interf/patch volume: 6.405714285714286
    patch 196 high interf/patch volume: 6.443037974683545
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999917914,-5916.999999924574,-5916.9999999937245)
    sum a = (1.3288383027580328e-07,1.242583726884794e-12,-1.0922396268247397e-08)
    sum e = 14792.499999982118
    sum de = -1.2196390734267766e-07
Info: CFL hydro = 6.585772526659318 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 6.585772526659318 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    | 4.1981e+03 | 5917 |    134 | 1.409e+00 | 0.0% |   2.4% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 255.42205340927802 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 18                                                      [SPH][rank=0]
Info: time since start : 1585.71470453 (s)                                            [SPH][rank=0]
Info: collected : 134 patches                                              [PatchScheduler][rank=0]
---------------- t = 1.6, dt = 0.10000000000000009 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5917 min = 5917                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5917 min = 5917                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 134
    min = 5917
    max = 5917
    avg = 5917
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.74 us   (0.3%)
   patch tree reduce : 28.31 us   (0.9%)
   gen split merge   : 3.30 us    (0.1%)
   split / merge op  : 0/3
   apply split merge : 1192.00 ns (0.0%)
   LB compute        : 650.11 us  (20.7%)
   LB move op cnt    : 0
   LB apply          : 4.58 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (19.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 7 high interf/patch volume: 4.539823008849558
    patch 8 high interf/patch volume: 6.999999999999999
    patch 9 high interf/patch volume: 6.999999999999999
    patch 11 high interf/patch volume: 7.0769230769230775
    patch 120 high interf/patch volume: 6.758064516129032
    patch 121 high interf/patch volume: 6.655172413793102
    patch 122 high interf/patch volume: 7.530864197530864
    patch 127 high interf/patch volume: 6.703703703703703
    patch 130 high interf/patch volume: 6.907407407407407
    patch 131 high interf/patch volume: 7.452631578947367
    patch 135 high interf/patch volume: 6.620689655172415
    patch 137 high interf/patch volume: 6.721311475409836
    patch 139 high interf/patch volume: 7.305263157894737
    patch 141 high interf/patch volume: 4.938650306748467
    patch 142 high interf/patch volume: 4.938650306748465
    patch 143 high interf/patch volume: 5.8125
    patch 144 high interf/patch volume: 5.088235294117648
    patch 145 high interf/patch volume: 5.781818181818182
    patch 146 high interf/patch volume: 5.82089552238806
    patch 147 high interf/patch volume: 7.775510204081632
    patch 149 high interf/patch volume: 6.983333333333335
    patch 151 high interf/patch volume: 6.962962962962963
    patch 153 high interf/patch volume: 6.903225806451614
    patch 155 high interf/patch volume: 7.09433962264151
    patch 158 high interf/patch volume: 6.9444444444444455
    patch 159 high interf/patch volume: 6.8
    patch 162 high interf/patch volume: 6.7407407407407405
    patch 163 high interf/patch volume: 6.904761904761904
    patch 164 high interf/patch volume: 6.884615384615384
    patch 169 high interf/patch volume: 7.679012345679011
    patch 170 high interf/patch volume: 7.928176795580111
    patch 171 high interf/patch volume: 7.462765957446808
    patch 172 high interf/patch volume: 7.6775956284153
    patch 173 high interf/patch volume: 7.170588235294116
    patch 174 high interf/patch volume: 7.491620111731844
    patch 175 high interf/patch volume: 7.0316455696202524
    patch 176 high interf/patch volume: 6.172413793103448
    patch 177 high interf/patch volume: 6.1818181818181825
    patch 178 high interf/patch volume: 7
    patch 179 high interf/patch volume: 6.748633879781421
    patch 180 high interf/patch volume: 6.622641509433962
    patch 181 high interf/patch volume: 6.63953488372093
    patch 182 high interf/patch volume: 6.62589928057554
    patch 183 high interf/patch volume: 6.0476190476190474
    patch 184 high interf/patch volume: 6.806451612903224
    patch 185 high interf/patch volume: 6.670329670329669
    patch 186 high interf/patch volume: 6.230769230769231
    patch 187 high interf/patch volume: 7
    patch 188 high interf/patch volume: 6.813953488372092
    patch 189 high interf/patch volume: 6.347517730496453
    patch 190 high interf/patch volume: 6.4940476190476195
    patch 191 high interf/patch volume: 6.03225806451613
    patch 192 high interf/patch volume: 6.695187165775401
    patch 193 high interf/patch volume: 6.15625
    patch 194 high interf/patch volume: 6.597560975609756
    patch 195 high interf/patch volume: 7
    patch 196 high interf/patch volume: 6.452054794520548
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999897981,-5916.999999934635,-5916.999999995364)
    sum a = (2.5892534187468147e-08,3.730772580754979e-08,1.677745416987092e-09)
    sum e = 14792.49999997383
    sum de = -6.487822389934263e-08
Info: CFL hydro = 6.5889678771712825 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 6.5889678771712825 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    | 4.5154e+03 | 5917 |    113 | 1.310e+00 | 0.0% |   2.4% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 274.72451768144606 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 19                                                      [SPH][rank=0]
Info: time since start : 1587.9211760130001 (s)                                       [SPH][rank=0]
Info: collected : 113 patches                                              [PatchScheduler][rank=0]
---------------- t = 1.7000000000000002, dt = 0.09999999999999987 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5917 min = 5917                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5917 min = 5917                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 113
    min = 5917
    max = 5917
    avg = 5917
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.72 us   (0.9%)
   patch tree reduce : 25.37 us   (2.2%)
   gen split merge   : 3.02 us    (0.3%)
   split / merge op  : 0/3
   apply split merge : 722.00 ns  (0.1%)
   LB compute        : 592.95 us  (50.8%)
   LB move op cnt    : 0
   LB apply          : 4.80 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (19.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 7 high interf/patch volume: 3.5450643776824036
    patch 8 high interf/patch volume: 6.916666666666666
    patch 9 high interf/patch volume: 6.7
    patch 11 high interf/patch volume: 7.25
    patch 120 high interf/patch volume: 6.864864864864865
    patch 121 high interf/patch volume: 6.885714285714285
    patch 122 high interf/patch volume: 8.018518518518517
    patch 127 high interf/patch volume: 6.727272727272727
    patch 130 high interf/patch volume: 6.914285714285715
    patch 131 high interf/patch volume: 7.969230769230769
    patch 135 high interf/patch volume: 6.825
    patch 137 high interf/patch volume: 6.916666666666668
    patch 139 high interf/patch volume: 7.847222222222222
    patch 141 high interf/patch volume: 4.3412017167381975
    patch 142 high interf/patch volume: 4.275488069414316
    patch 143 high interf/patch volume: 5.415730337078651
    patch 144 high interf/patch volume: 4.471861471861472
    patch 145 high interf/patch volume: 5.4431818181818175
    patch 146 high interf/patch volume: 5.3238095238095235
    patch 147 high interf/patch volume: 7.994117647058823
    patch 149 high interf/patch volume: 7.529411764705881
    patch 151 high interf/patch volume: 7.260869565217392
    patch 153 high interf/patch volume: 7
    patch 155 high interf/patch volume: 7.444444444444445
    patch 158 high interf/patch volume: 7.058823529411765
    patch 159 high interf/patch volume: 7
    patch 162 high interf/patch volume: 7.0434782608695645
    patch 163 high interf/patch volume: 7.333333333333335
    patch 164 high interf/patch volume: 7
    patch 169 high interf/patch volume: 7.771739130434784
    patch 170 high interf/patch volume: 8.118343195266272
    patch 171 high interf/patch volume: 7.681250000000001
    patch 172 high interf/patch volume: 7.8527918781725905
    patch 173 high interf/patch volume: 7.50625
    patch 174 high interf/patch volume: 7.5103448275862075
    patch 175 high interf/patch volume: 7.65217391304348
    patch 176 high interf/patch volume: 5.869565217391305
    patch 177 high interf/patch volume: 5.7749999999999995
    patch 178 high interf/patch volume: 7.142857142857142
    patch 179 high interf/patch volume: 6.457894736842105
    patch 180 high interf/patch volume: 6.5875706214689265
    patch 181 high interf/patch volume: 6.59235668789809
    patch 182 high interf/patch volume: 6.756521739130436
    patch 183 high interf/patch volume: 5.96774193548387
    patch 184 high interf/patch volume: 6.737430167597764
    patch 185 high interf/patch volume: 6.766304347826086
    patch 186 high interf/patch volume: 5.787878787878787
    patch 187 high interf/patch volume: 7
    patch 188 high interf/patch volume: 6.738372093023256
    patch 189 high interf/patch volume: 6.919354838709678
    patch 190 high interf/patch volume: 6.668539325842697
    patch 191 high interf/patch volume: 6.057142857142857
    patch 192 high interf/patch volume: 6.946428571428572
    patch 193 high interf/patch volume: 5.790697674418605
    patch 194 high interf/patch volume: 6.715116279069767
    patch 195 high interf/patch volume: 7
    patch 196 high interf/patch volume: 6.719626168224299
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999900743,-5916.999999929041,-5916.999999994564)
    sum a = (-1.1105756446416759e-08,-4.602687985952314e-09,-6.435220715680923e-11)
    sum e = 14792.499999970136
    sum de = 1.5772792435423538e-08
Info: CFL hydro = 6.5914874667114125 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 6.5914874667114125 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    | 4.8971e+03 | 5917 |     92 | 1.208e+00 | 0.0% |   2.3% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 297.94590284632596 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 20                                                      [SPH][rank=0]
Info: time since start : 1590.023330011 (s)                                           [SPH][rank=0]
Info: collected : 92 patches                                               [PatchScheduler][rank=0]
---------------- t = 1.8, dt = 0.10000000000000009 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5917 min = 5917                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5917 min = 5917                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 92
    min = 5917
    max = 5917
    avg = 5917
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.55 us   (1.6%)
   patch tree reduce : 20.79 us   (3.1%)
   gen split merge   : 1423.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.1%)
   LB compute        : 581.62 us  (86.4%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.23 us    (18.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 7 high interf/patch volume: 2.370192307692308
    patch 9 high interf/patch volume: 7
    patch 11 high interf/patch volume: 7.333333333333334
    patch 120 high interf/patch volume: 7.200000000000001
    patch 121 high interf/patch volume: 7
    patch 122 high interf/patch volume: 7.4642857142857135
    patch 127 high interf/patch volume: 7.666666666666666
    patch 130 high interf/patch volume: 7
    patch 131 high interf/patch volume: 8.083333333333332
    patch 135 high interf/patch volume: 6
    patch 137 high interf/patch volume: 6
    patch 139 high interf/patch volume: 6.777777777777777
    patch 141 high interf/patch volume: 3.5032573289902285
    patch 142 high interf/patch volume: 3.809602649006623
    patch 143 high interf/patch volume: 4.9322033898305095
    patch 144 high interf/patch volume: 3.5884413309982484
    patch 145 high interf/patch volume: 4.931297709923664
    patch 146 high interf/patch volume: 5.1328125
    patch 147 high interf/patch volume: 8.526315789473681
    patch 162 high interf/patch volume: 7
    patch 169 high interf/patch volume: 7.183098591549295
    patch 170 high interf/patch volume: 7.6702702702702705
    patch 171 high interf/patch volume: 6.80672268907563
    patch 172 high interf/patch volume: 7.6536312849162
    patch 173 high interf/patch volume: 6.881355932203389
    patch 174 high interf/patch volume: 6.686868686868686
    patch 175 high interf/patch volume: 6.606060606060606
    patch 176 high interf/patch volume: 5.611111111111112
    patch 177 high interf/patch volume: 5.829268292682928
    patch 178 high interf/patch volume: 7.125
    patch 179 high interf/patch volume: 6.721052631578947
    patch 180 high interf/patch volume: 6.401041666666666
    patch 181 high interf/patch volume: 6.736526946107785
    patch 182 high interf/patch volume: 6.902173913043479
    patch 183 high interf/patch volume: 5.647058823529411
    patch 184 high interf/patch volume: 6.787878787878788
    patch 185 high interf/patch volume: 6.367567567567567
    patch 186 high interf/patch volume: 5.608695652173913
    patch 187 high interf/patch volume: 7
    patch 188 high interf/patch volume: 6.6887417218543055
    patch 189 high interf/patch volume: 7.045977011494253
    patch 190 high interf/patch volume: 7.1853932584269655
    patch 191 high interf/patch volume: 6.125
    patch 192 high interf/patch volume: 7.122093023255814
    patch 193 high interf/patch volume: 5.733333333333334
    patch 194 high interf/patch volume: 6.796296296296296
    patch 195 high interf/patch volume: 7.166666666666667
    patch 196 high interf/patch volume: 6.986486486486487
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999903701,-5916.999999931598,-5916.99999999466)
    sum a = (-8.673617379884035e-19,-2.0816681711721685e-17,1.951563910473908e-18)
    sum e = 14792.499999975675
    sum de = -1.8214596497756474e-17
Info: CFL hydro = 6.593576431372701 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 6.593576431372701 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    | 5.7555e+03 | 5917 |     92 | 1.028e+00 | 0.0% |   2.0% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 350.171709615908 (tsim/hr)                              [sph::Model][rank=0]
Info: iteration since start : 21                                                      [SPH][rank=0]
Info: time since start : 1591.7861946920002 (s)                                       [SPH][rank=0]
Info: collected : 92 patches                                               [PatchScheduler][rank=0]
---------------- t = 1.9000000000000001, dt = 0.09999999999999987 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5904 min = 5904                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5904 min = 5904                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 113
    min = 5904
    max = 5904
    avg = 5904
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.87 us   (0.0%)
   patch tree reduce : 22.38 us   (0.1%)
   gen split merge   : 3.31 us    (0.0%)
   split / merge op  : 3/3
   apply split merge : 23.84 ms   (93.8%)
   LB compute        : 488.19 us  (1.9%)
   LB move op cnt    : 0
   LB apply          : 4.55 us    (0.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (23.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 7 high interf/patch volume: 3.6106870229007635
    patch 141 high interf/patch volume: 5.130434782608696
    patch 142 high interf/patch volume: 5.027777777777779
    patch 143 high interf/patch volume: 6.152866242038217
    patch 144 high interf/patch volume: 4.999999999999999
    patch 145 high interf/patch volume: 6.302857142857143
    patch 146 high interf/patch volume: 6.145833333333333
    patch 147 high interf/patch volume: 8.203619909502262
    patch 169 high interf/patch volume: 6.298611111111111
    patch 170 high interf/patch volume: 6.5418994413407825
    patch 171 high interf/patch volume: 7
    patch 172 high interf/patch volume: 6.273885350318472
    patch 173 high interf/patch volume: 7
    patch 174 high interf/patch volume: 6.86
    patch 175 high interf/patch volume: 7
    patch 176 high interf/patch volume: 7
    patch 177 high interf/patch volume: 6.86
    patch 178 high interf/patch volume: 7
    patch 179 high interf/patch volume: 8.084999999999997
    patch 180 high interf/patch volume: 6.3828125
    patch 181 high interf/patch volume: 6.6625
    patch 182 high interf/patch volume: 7.23529411764706
    patch 183 high interf/patch volume: 6.916666666666667
    patch 184 high interf/patch volume: 8.198067632850242
    patch 185 high interf/patch volume: 6.569343065693431
    patch 186 high interf/patch volume: 6.847826086956521
    patch 187 high interf/patch volume: 7
    patch 188 high interf/patch volume: 6.391025641025641
    patch 189 high interf/patch volume: 7.054054054054054
    patch 190 high interf/patch volume: 8.057894736842105
    patch 191 high interf/patch volume: 6.8999999999999995
    patch 192 high interf/patch volume: 6.624161073825503
    patch 193 high interf/patch volume: 6.888888888888889
    patch 194 high interf/patch volume: 6.368421052631578
    patch 195 high interf/patch volume: 7
    patch 196 high interf/patch volume: 7.125
    patch 197 high interf/patch volume: 5.524137931034482
    patch 198 high interf/patch volume: 5.664233576642336
    patch 199 high interf/patch volume: 7.50828729281768
    patch 200 high interf/patch volume: 7
    patch 201 high interf/patch volume: 7.083333333333333
    patch 202 high interf/patch volume: 7.0540540540540535
    patch 203 high interf/patch volume: 6.481751824817517
    patch 204 high interf/patch volume: 5.353383458646617
    patch 205 high interf/patch volume: 7
    patch 206 high interf/patch volume: 7.125
    patch 207 high interf/patch volume: 5.34375
    patch 208 high interf/patch volume: 7.261627906976744
    patch 209 high interf/patch volume: 7.117647058823531
    patch 210 high interf/patch volume: 6.7593984962406015
    patch 211 high interf/patch volume: 7
    patch 212 high interf/patch volume: 5.481249999999999
    patch 213 high interf/patch volume: 7.054054054054054
    patch 214 high interf/patch volume: 5.658064516129033
    patch 215 high interf/patch volume: 7.1000000000000005
    patch 216 high interf/patch volume: 7.531578947368422
    patch 217 high interf/patch volume: 6.634146341463414
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999903149,-5916.999999931365,-5916.999999994654)
    sum a = (1.1810309117179021e-08,1.9947153351285423e-07,3.862914607979939e-09)
    sum e = 14792.49999997481
    sum de = -2.1517390359098755e-07
Info: CFL hydro = 6.595398207979373 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 6.595398207979373 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    | 4.8262e+03 | 5917 |     92 | 1.226e+00 | 0.0% |   2.1% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 293.6363178787785 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 22                                                      [SPH][rank=0]
Info: time since start : 1593.820759983 (s)                                           [SPH][rank=0]
Info: collected : 92 patches                                               [PatchScheduler][rank=0]
---------------- t = 2, dt = 0.10000000000000009 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5910 min = 5910                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5910 min = 5910                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 99
    min = 5910
    max = 5910
    avg = 5910
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.14 us   (0.1%)
   patch tree reduce : 35.02 us   (0.3%)
   gen split merge   : 2.94 us    (0.0%)
   split / merge op  : 1/3
   apply split merge : 11.63 ms   (86.8%)
   LB compute        : 1233.21 us (9.2%)
   LB move op cnt    : 0
   LB apply          : 4.72 us    (0.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (24.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 3 high interf/patch volume: 4.707692307692308
    patch 5 high interf/patch volume: 4.785714285714286
    patch 6 high interf/patch volume: 4.538461538461538
    patch 7 high interf/patch volume: 6.1190476190476195
    patch 141 high interf/patch volume: 6.380952380952381
    patch 142 high interf/patch volume: 6.152941176470588
    patch 143 high interf/patch volume: 6.778625954198474
    patch 144 high interf/patch volume: 6.2254901960784315
    patch 145 high interf/patch volume: 6.701986754966887
    patch 146 high interf/patch volume: 6.6835443037974684
    patch 147 high interf/patch volume: 8.145348837209303
    patch 169 high interf/patch volume: 7.148648648648649
    patch 170 high interf/patch volume: 7.471264367816093
    patch 171 high interf/patch volume: 7.222222222222223
    patch 172 high interf/patch volume: 7.267605633802816
    patch 173 high interf/patch volume: 7.333333333333333
    patch 174 high interf/patch volume: 7.555555555555557
    patch 176 high interf/patch volume: 7.333333333333332
    patch 177 high interf/patch volume: 7.3235294117647065
    patch 178 high interf/patch volume: 7
    patch 179 high interf/patch volume: 8.449101796407184
    patch 180 high interf/patch volume: 7.350515463917525
    patch 181 high interf/patch volume: 7.705357142857144
    patch 182 high interf/patch volume: 7.5
    patch 183 high interf/patch volume: 6.90909090909091
    patch 184 high interf/patch volume: 8.365714285714287
    patch 185 high interf/patch volume: 7.138297872340426
    patch 186 high interf/patch volume: 6.787878787878789
    patch 188 high interf/patch volume: 7.21978021978022
    patch 189 high interf/patch volume: 7.285714285714286
    patch 190 high interf/patch volume: 8.106145251396647
    patch 191 high interf/patch volume: 7.066666666666667
    patch 192 high interf/patch volume: 7.277777777777778
    patch 193 high interf/patch volume: 7
    patch 194 high interf/patch volume: 7.164835164835165
    patch 195 high interf/patch volume: 7
    patch 196 high interf/patch volume: 8
    patch 197 high interf/patch volume: 6.686390532544377
    patch 198 high interf/patch volume: 6.542857142857145
    patch 199 high interf/patch volume: 8.141242937853107
    patch 200 high interf/patch volume: 7
    patch 201 high interf/patch volume: 7
    patch 202 high interf/patch volume: 6.9799999999999995
    patch 203 high interf/patch volume: 6.936363636363636
    patch 204 high interf/patch volume: 6.42483660130719
    patch 205 high interf/patch volume: 7
    patch 206 high interf/patch volume: 6.980000000000001
    patch 207 high interf/patch volume: 6.540106951871658
    patch 208 high interf/patch volume: 8.139240506329115
    patch 209 high interf/patch volume: 7.155172413793103
    patch 210 high interf/patch volume: 7.220588235294117
    patch 211 high interf/patch volume: 7
    patch 212 high interf/patch volume: 6.735099337748344
    patch 213 high interf/patch volume: 7.166666666666667
    patch 214 high interf/patch volume: 6.910112359550563
    patch 215 high interf/patch volume: 7.155555555555556
    patch 216 high interf/patch volume: 8.558282208588958
    patch 217 high interf/patch volume: 7.25
    patch 218 high interf/patch volume: 5.972222222222221
    patch 219 high interf/patch volume: 5.972477064220183
    patch 220 high interf/patch volume: 6.5060975609756095
    patch 221 high interf/patch volume: 6.17829457364341
    patch 222 high interf/patch volume: 6.555555555555556
    patch 223 high interf/patch volume: 6.432989690721649
    patch 224 high interf/patch volume: 8.240259740259738
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.9999999013735,-5916.999999901444,-5916.999999994076)
    sum a = (1.319467681146447e-07,2.4149775739880896e-12,-1.0897783576168556e-08)
    sum e = 14792.499999942467
    sum de = -1.2105286209655466e-07
Info: CFL hydro = 6.597061762807835 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 6.597061762807835 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    | 4.0679e+03 | 5917 |     78 | 1.455e+00 | 0.0% |   2.5% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 247.49796776324965 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 23                                                      [SPH][rank=0]
Info: time since start : 1596.01149295 (s)                                            [SPH][rank=0]
Info: collected : 78 patches                                               [PatchScheduler][rank=0]
---------------- t = 2.1, dt = 0.10000000000000009 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5917 min = 5917                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5917 min = 5917                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 78
    min = 5917
    max = 5917
    avg = 5917
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.05 us   (1.7%)
   patch tree reduce : 18.42 us   (2.8%)
   gen split merge   : 1242.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.1%)
   LB compute        : 571.45 us  (86.6%)
   LB move op cnt    : 0
   LB apply          : 4.65 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.33 us    (21.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 3 high interf/patch volume: 4.607954545454545
    patch 5 high interf/patch volume: 4.312925170068027
    patch 6 high interf/patch volume: 4.536945812807883
    patch 7 high interf/patch volume: 4.780952380952381
    patch 141 high interf/patch volume: 5.508196721311476
    patch 142 high interf/patch volume: 5.693548387096776
    patch 143 high interf/patch volume: 6.357142857142858
    patch 144 high interf/patch volume: 5.556451612903227
    patch 145 high interf/patch volume: 6.007092198581559
    patch 146 high interf/patch volume: 6.321917808219177
    patch 147 high interf/patch volume: 7.031645569620254
    patch 169 high interf/patch volume: 6.903225806451614
    patch 170 high interf/patch volume: 6.8
    patch 172 high interf/patch volume: 6.884615384615384
    patch 176 high interf/patch volume: 6.947368421052632
    patch 177 high interf/patch volume: 7
    patch 179 high interf/patch volume: 7.823529411764705
    patch 180 high interf/patch volume: 7.366666666666667
    patch 181 high interf/patch volume: 7.528301886792452
    patch 183 high interf/patch volume: 6.894736842105262
    patch 184 high interf/patch volume: 7.517647058823528
    patch 185 high interf/patch volume: 7.388888888888889
    patch 186 high interf/patch volume: 6.722222222222223
    patch 188 high interf/patch volume: 7.166666666666666
    patch 190 high interf/patch volume: 7.81111111111111
    patch 191 high interf/patch volume: 6.9375
    patch 192 high interf/patch volume: 7.333333333333335
    patch 193 high interf/patch volume: 7.0625
    patch 194 high interf/patch volume: 7.269841269841269
    patch 197 high interf/patch volume: 6.271676300578034
    patch 198 high interf/patch volume: 6.4573170731707314
    patch 199 high interf/patch volume: 7.988636363636362
    patch 200 high interf/patch volume: 7.076923076923077
    patch 201 high interf/patch volume: 7.204545454545454
    patch 202 high interf/patch volume: 7.19047619047619
    patch 203 high interf/patch volume: 7.987654320987655
    patch 204 high interf/patch volume: 6.517441860465116
    patch 205 high interf/patch volume: 7
    patch 206 high interf/patch volume: 7.648648648648648
    patch 207 high interf/patch volume: 6.591397849462366
    patch 208 high interf/patch volume: 8.472222222222223
    patch 209 high interf/patch volume: 7.7105263157894735
    patch 210 high interf/patch volume: 8.126315789473683
    patch 211 high interf/patch volume: 7.083333333333333
    patch 212 high interf/patch volume: 6.345911949685534
    patch 213 high interf/patch volume: 7.384615384615385
    patch 214 high interf/patch volume: 6.2032967032967035
    patch 215 high interf/patch volume: 7.333333333333333
    patch 216 high interf/patch volume: 8.111111111111112
    patch 217 high interf/patch volume: 7.831578947368422
    patch 218 high interf/patch volume: 5.146496815286626
    patch 219 high interf/patch volume: 5.175675675675676
    patch 220 high interf/patch volume: 6.278688524590163
    patch 221 high interf/patch volume: 5.232558139534883
    patch 222 high interf/patch volume: 6.005405405405405
    patch 223 high interf/patch volume: 6.142857142857142
    patch 224 high interf/patch volume: 7.948051948051947
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999882173,-5916.999999911418,-5916.999999995904)
    sum a = (2.5397096998055272e-08,3.663201541870762e-08,1.653270636672499e-09)
    sum e = 14792.499999934995
    sum de = -6.368257578787828e-08
Info: CFL hydro = 6.598639745136488 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 6.598639745136488 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    | 4.6455e+03 | 5917 |     78 | 1.274e+00 | 0.0% |   2.3% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 282.63859680174505 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 24                                                      [SPH][rank=0]
Info: time since start : 1597.9780651 (s)                                             [SPH][rank=0]
Info: collected : 78 patches                                               [PatchScheduler][rank=0]
---------------- t = 2.2, dt = 0.10000000000000009 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5917 min = 5917                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5917 min = 5917                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 78
    min = 5917
    max = 5917
    avg = 5917
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.65 us   (1.5%)
   patch tree reduce : 17.32 us   (2.5%)
   gen split merge   : 1232.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.1%)
   LB compute        : 596.67 us  (86.0%)
   LB move op cnt    : 0
   LB apply          : 5.15 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (24.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 3 high interf/patch volume: 4.22689075630252
    patch 5 high interf/patch volume: 4.185667752442997
    patch 6 high interf/patch volume: 4.229110512129379
    patch 7 high interf/patch volume: 4.525316455696202
    patch 141 high interf/patch volume: 5.230769230769232
    patch 142 high interf/patch volume: 5.5859375
    patch 143 high interf/patch volume: 6.521739130434783
    patch 144 high interf/patch volume: 5.631205673758865
    patch 145 high interf/patch volume: 6.46774193548387
    patch 146 high interf/patch volume: 6.731481481481481
    patch 147 high interf/patch volume: 7.645161290322578
    patch 169 high interf/patch volume: 7
    patch 170 high interf/patch volume: 7
    patch 172 high interf/patch volume: 7
    patch 176 high interf/patch volume: 7.5
    patch 177 high interf/patch volume: 7.2
    patch 179 high interf/patch volume: 8.094339622641511
    patch 180 high interf/patch volume: 8.058823529411764
    patch 181 high interf/patch volume: 8.055555555555555
    patch 183 high interf/patch volume: 7.166666666666667
    patch 184 high interf/patch volume: 7.899999999999998
    patch 185 high interf/patch volume: 8
    patch 186 high interf/patch volume: 7.2
    patch 188 high interf/patch volume: 7.652173913043478
    patch 190 high interf/patch volume: 7.882758620689655
    patch 191 high interf/patch volume: 7.285714285714286
    patch 192 high interf/patch volume: 7.705882352941177
    patch 193 high interf/patch volume: 7
    patch 194 high interf/patch volume: 7.888888888888889
    patch 197 high interf/patch volume: 6.424418604651163
    patch 198 high interf/patch volume: 6.656976744186046
    patch 199 high interf/patch volume: 8.279187817258885
    patch 200 high interf/patch volume: 7.625
    patch 201 high interf/patch volume: 7.3125
    patch 202 high interf/patch volume: 7.59375
    patch 203 high interf/patch volume: 8.574074074074073
    patch 204 high interf/patch volume: 6.392405063291139
    patch 205 high interf/patch volume: 7.200000000000001
    patch 206 high interf/patch volume: 7.285714285714285
    patch 207 high interf/patch volume: 6.856287425149701
    patch 208 high interf/patch volume: 8.613095238095239
    patch 209 high interf/patch volume: 7.642857142857143
    patch 210 high interf/patch volume: 8.538461538461538
    patch 211 high interf/patch volume: 7
    patch 212 high interf/patch volume: 6.214689265536723
    patch 213 high interf/patch volume: 7.352941176470588
    patch 214 high interf/patch volume: 6.195652173913045
    patch 215 high interf/patch volume: 7.2666666666666675
    patch 216 high interf/patch volume: 8.184782608695654
    patch 217 high interf/patch volume: 8.444444444444443
    patch 218 high interf/patch volume: 5.093406593406593
    patch 219 high interf/patch volume: 5.065217391304349
    patch 220 high interf/patch volume: 5.957894736842105
    patch 221 high interf/patch volume: 5.026881720430106
    patch 222 high interf/patch volume: 5.994413407821231
    patch 223 high interf/patch volume: 6.258426966292134
    patch 224 high interf/patch volume: 8.170588235294115
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.99999988496,-5916.999999905925,-5916.999999995111)
    sum a = (-1.0828248908277819e-08,-4.490284502806734e-09,-6.480378869815425e-11)
    sum e = 14792.49999993141
    sum de = 1.538334786368871e-08
Info: CFL hydro = 6.600180590433672 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 6.600180590433672 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.8516e+03 | 5917 |     78 | 1.220e+00 | 0.0% |   2.6% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 295.18061923752873 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 25                                                      [SPH][rank=0]
Info: time since start : 1599.978375158 (s)                                           [SPH][rank=0]
Info: collected : 78 patches                                               [PatchScheduler][rank=0]
---------------- t = 2.3000000000000003, dt = 0.10000000000000009 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5917 min = 5917                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5917 min = 5917                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 78
    min = 5917
    max = 5917
    avg = 5917
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.26 us   (1.6%)
   patch tree reduce : 18.05 us   (2.6%)
   gen split merge   : 1252.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.1%)
   LB compute        : 606.62 us  (86.9%)
   LB move op cnt    : 0
   LB apply          : 4.80 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.72 us    (21.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 1 high interf/patch volume: 4.25
    patch 2 high interf/patch volume: 4.15
    patch 3 high interf/patch volume: 3.7449541284403676
    patch 4 high interf/patch volume: 4.368421052631579
    patch 5 high interf/patch volume: 3.6722689075630255
    patch 6 high interf/patch volume: 3.8563535911602207
    patch 7 high interf/patch volume: 5.207100591715975
    patch 141 high interf/patch volume: 5.0256410256410255
    patch 142 high interf/patch volume: 5.88888888888889
    patch 143 high interf/patch volume: 5.815217391304348
    patch 144 high interf/patch volume: 5.4393939393939394
    patch 145 high interf/patch volume: 5.655172413793103
    patch 146 high interf/patch volume: 5.581081081081082
    patch 147 high interf/patch volume: 6.6060606060606055
    patch 179 high interf/patch volume: 6.789915966386555
    patch 184 high interf/patch volume: 6.838983050847458
    patch 188 high interf/patch volume: 7
    patch 190 high interf/patch volume: 6.585858585858586
    patch 197 high interf/patch volume: 6.112582781456954
    patch 198 high interf/patch volume: 6.0123456790123475
    patch 199 high interf/patch volume: 7.726256983240224
    patch 200 high interf/patch volume: 7.333333333333333
    patch 201 high interf/patch volume: 7.133333333333333
    patch 202 high interf/patch volume: 6.857142857142857
    patch 203 high interf/patch volume: 7.392857142857142
    patch 204 high interf/patch volume: 6.353293413173652
    patch 205 high interf/patch volume: 7
    patch 206 high interf/patch volume: 7.666666666666666
    patch 207 high interf/patch volume: 6.308139534883721
    patch 208 high interf/patch volume: 7.713513513513512
    patch 209 high interf/patch volume: 7
    patch 210 high interf/patch volume: 8.083333333333332
    patch 212 high interf/patch volume: 5.697916666666667
    patch 213 high interf/patch volume: 6
    patch 214 high interf/patch volume: 5.513513513513514
    patch 215 high interf/patch volume: 6
    patch 216 high interf/patch volume: 7.164319248826291
    patch 217 high interf/patch volume: 6.888888888888889
    patch 218 high interf/patch volume: 4.977401129943503
    patch 219 high interf/patch volume: 5.282722513089006
    patch 220 high interf/patch volume: 6.010526315789474
    patch 221 high interf/patch volume: 5.135294117647059
    patch 222 high interf/patch volume: 5.803680981595091
    patch 223 high interf/patch volume: 6.157303370786517
    patch 224 high interf/patch volume: 8.298245614035087
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999887856,-5916.999999908428,-5916.999999995203)
    sum a = (-7.90388819363608e-09,9.134623939976232e-10,6.541098699747475e-09)
    sum e = 14792.499999936812
    sum de = 4.4848247242668873e-10
Info: CFL hydro = 6.601716589768513 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 6.601716589768513 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    | 5.5842e+03 | 5917 |     78 | 1.060e+00 | 0.0% |   2.3% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 339.75150701240204 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 26                                                      [SPH][rank=0]
Info: time since start : 1601.729398845 (s)                                           [SPH][rank=0]
Info: collected : 78 patches                                               [PatchScheduler][rank=0]
---------------- t = 2.4000000000000004, dt = 0.09999999999999964 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5906 min = 5906                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5906 min = 5906                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 99
    min = 5906
    max = 5906
    avg = 5906
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.69 us   (0.1%)
   patch tree reduce : 15.56 us   (0.2%)
   gen split merge   : 2.73 us    (0.0%)
   split / merge op  : 3/1
   apply split merge : 5.94 ms    (80.0%)
   LB compute        : 771.50 us  (10.4%)
   LB move op cnt    : 0
   LB apply          : 4.54 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.33 us   (26.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7
    patch 1 high interf/patch volume: 4.25
    patch 2 high interf/patch volume: 4.342105263157895
    patch 4 high interf/patch volume: 4.367647058823529
    patch 7 high interf/patch volume: 5.197604790419161
    patch 141 high interf/patch volume: 4.536585365853659
    patch 142 high interf/patch volume: 4.255639097744361
    patch 143 high interf/patch volume: 5.823529411764706
    patch 144 high interf/patch volume: 4.185714285714286
    patch 145 high interf/patch volume: 5.675675675675676
    patch 146 high interf/patch volume: 5.525
    patch 147 high interf/patch volume: 7
    patch 179 high interf/patch volume: 7
    patch 184 high interf/patch volume: 7
    patch 190 high interf/patch volume: 6.859999999999999
    patch 197 high interf/patch volume: 4.856209150326798
    patch 198 high interf/patch volume: 4.676691729323308
    patch 199 high interf/patch volume: 6.273885350318471
    patch 204 high interf/patch volume: 4.925
    patch 207 high interf/patch volume: 4.932885906040268
    patch 208 high interf/patch volume: 6.5418994413407825
    patch 212 high interf/patch volume: 4.9140625
    patch 214 high interf/patch volume: 5.014598540145985
    patch 216 high interf/patch volume: 6.298611111111111
    patch 218 high interf/patch volume: 5
    patch 219 high interf/patch volume: 4.720930232558139
    patch 220 high interf/patch volume: 5.795
    patch 221 high interf/patch volume: 4.856353591160222
    patch 222 high interf/patch volume: 5.9275362318840585
    patch 223 high interf/patch volume: 5.726315789473684
    patch 224 high interf/patch volume: 8.054298642533936
    patch 228 high interf/patch volume: 3.102803738317757
    patch 233 high interf/patch volume: 3.2111553784860556
    patch 239 high interf/patch volume: 3.2815249266862168
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999888499,-5916.999999908068,-5916.9999999942165)
    sum a = (1.3357197292673817e-12,2.0024740473960356e-07,2.2103152641506085e-13)
    sum e = 14792.499999936026
    sum de = -2.002828046639149e-07
Info: CFL hydro = 6.60326926987879 sink sink = inf                                    [SPH][rank=0]
Info: cfl dt = 6.60326926987879 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    | 7.4718e+03 | 5917 |     92 | 7.919e-01 | 0.0% |   1.9% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 454.5951328393257 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 27                                                      [SPH][rank=0]
Info: time since start : 1603.19869304 (s)                                            [SPH][rank=0]
Info: collected : 92 patches                                               [PatchScheduler][rank=0]
---------------- t = 2.5, dt = 0.10000000000000009 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5909 min = 5909                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5909 min = 5909                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 113
    min = 5909
    max = 5909
    avg = 5909
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.38 us   (0.1%)
   patch tree reduce : 18.62 us   (0.1%)
   gen split merge   : 3.02 us    (0.0%)
   split / merge op  : 3/0
   apply split merge : 16.91 ms   (95.1%)
   LB compute        : 767.18 us  (4.3%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (0.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (18.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.785714285714286
    patch 1 high interf/patch volume: 3.7871287128712874
    patch 2 high interf/patch volume: 3.5721153846153846
    patch 4 high interf/patch volume: 4.078189300411522
    patch 7 high interf/patch volume: 5.1089743589743595
    patch 141 high interf/patch volume: 5.775
    patch 142 high interf/patch volume: 5.919117647058824
    patch 143 high interf/patch volume: 7.666666666666667
    patch 144 high interf/patch volume: 5.418181818181818
    patch 145 high interf/patch volume: 7.2857142857142865
    patch 146 high interf/patch volume: 8
    patch 179 high interf/patch volume: 7.222222222222222
    patch 184 high interf/patch volume: 7.333333333333333
    patch 190 high interf/patch volume: 7.555555555555555
    patch 197 high interf/patch volume: 6.626373626373627
    patch 198 high interf/patch volume: 6.571428571428572
    patch 199 high interf/patch volume: 7.267605633802817
    patch 204 high interf/patch volume: 7.178571428571428
    patch 207 high interf/patch volume: 6.740740740740741
    patch 208 high interf/patch volume: 7.471264367816092
    patch 212 high interf/patch volume: 6.690721649484537
    patch 214 high interf/patch volume: 6.595744680851065
    patch 216 high interf/patch volume: 7.256756756756756
    patch 218 high interf/patch volume: 6.269938650306749
    patch 219 high interf/patch volume: 5.943396226415094
    patch 220 high interf/patch volume: 7.333333333333333
    patch 221 high interf/patch volume: 5.8742857142857146
    patch 222 high interf/patch volume: 7.3828571428571435
    patch 223 high interf/patch volume: 7.106741573033709
    patch 224 high interf/patch volume: 8.222222222222221
    patch 247 high interf/patch volume: 3.6406035665294922
    patch 248 high interf/patch volume: 5.474358974358974
    patch 251 high interf/patch volume: 5.0843373493975905
    patch 256 high interf/patch volume: 3.1969696969696964
    patch 257 high interf/patch volume: 5.260869565217391
    patch 258 high interf/patch volume: 5.214285714285714
    patch 259 high interf/patch volume: 7
    patch 260 high interf/patch volume: 3.403026134800551
    patch 262 high interf/patch volume: 5.45631067961165
    patch 264 high interf/patch volume: 4.988235294117647
    patch 266 high interf/patch volume: 7
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999888106,-5916.999999878077,-5916.999999994545)
    sum a = (1.3076223933778362e-07,4.226850816514867e-12,-1.0866416025263935e-08)
    sum e = 14792.499999905865
    sum de = -1.1990167236085683e-07
Info: CFL hydro = 6.604852980219957 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 6.604852980219957 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    | 6.0547e+03 | 5917 |    113 | 9.773e-01 | 0.0% |   1.8% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 368.3784344780999 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 28                                                      [SPH][rank=0]
Info: time since start : 1604.975928947 (s)                                           [SPH][rank=0]
Info: collected : 113 patches                                              [PatchScheduler][rank=0]
---------------- t = 2.6, dt = 0.10000000000000009 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5905 min = 5905                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5905 min = 5905                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 134
    min = 5905
    max = 5905
    avg = 5905
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.81 us   (0.0%)
   patch tree reduce : 22.29 us   (0.1%)
   gen split merge   : 3.33 us    (0.0%)
   split / merge op  : 3/3
   apply split merge : 29.10 ms   (88.6%)
   LB compute        : 803.59 us  (2.4%)
   LB move op cnt    : 0
   LB apply          : 4.92 us    (0.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (22.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.539823008849558
    patch 1 high interf/patch volume: 4.961538461538461
    patch 2 high interf/patch volume: 4.839762611275965
    patch 4 high interf/patch volume: 5.056657223796034
    patch 7 high interf/patch volume: 7.909677419354839
    patch 141 high interf/patch volume: 7.031578947368422
    patch 142 high interf/patch volume: 7.178947368421053
    patch 144 high interf/patch volume: 7.296296296296298
    patch 197 high interf/patch volume: 6.907407407407408
    patch 198 high interf/patch volume: 6.825396825396825
    patch 199 high interf/patch volume: 7.038461538461539
    patch 204 high interf/patch volume: 7.150943396226416
    patch 207 high interf/patch volume: 6.944444444444445
    patch 208 high interf/patch volume: 7
    patch 212 high interf/patch volume: 6.983333333333333
    patch 214 high interf/patch volume: 7.0740740740740735
    patch 216 high interf/patch volume: 6.903225806451613
    patch 218 high interf/patch volume: 7.512345679012345
    patch 219 high interf/patch volume: 7.772222222222223
    patch 220 high interf/patch volume: 7.465240641711231
    patch 221 high interf/patch volume: 7.634285714285714
    patch 222 high interf/patch volume: 7.288235294117647
    patch 223 high interf/patch volume: 7.488888888888888
    patch 224 high interf/patch volume: 7.044303797468354
    patch 247 high interf/patch volume: 5.945454545454545
    patch 248 high interf/patch volume: 6.393442622950819
    patch 251 high interf/patch volume: 6.5
    patch 256 high interf/patch volume: 5.958333333333334
    patch 257 high interf/patch volume: 6.241379310344828
    patch 258 high interf/patch volume: 6.425925925925926
    patch 260 high interf/patch volume: 5.970149253731344
    patch 262 high interf/patch volume: 6.537037037037038
    patch 264 high interf/patch volume: 6.327586206896551
    patch 267 high interf/patch volume: 6.142857142857142
    patch 268 high interf/patch volume: 6.935135135135136
    patch 269 high interf/patch volume: 6.412087912087911
    patch 270 high interf/patch volume: 6.269230769230769
    patch 271 high interf/patch volume: 7.25
    patch 272 high interf/patch volume: 6.676300578034681
    patch 273 high interf/patch volume: 6.496453900709219
    patch 274 high interf/patch volume: 6.241379310344827
    patch 275 high interf/patch volume: 6.060606060606061
    patch 276 high interf/patch volume: 7.222222222222222
    patch 277 high interf/patch volume: 6.9016393442622945
    patch 278 high interf/patch volume: 6.371069182389937
    patch 279 high interf/patch volume: 6.377906976744185
    patch 280 high interf/patch volume: 6.657142857142857
    patch 281 high interf/patch volume: 6.613095238095238
    patch 282 high interf/patch volume: 5.870967741935484
    patch 283 high interf/patch volume: 6.392473118279569
    patch 284 high interf/patch volume: 6.03125
    patch 285 high interf/patch volume: 6.390243902439025
    patch 286 high interf/patch volume: 7.000000000000001
    patch 287 high interf/patch volume: 6.452054794520548
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999868491,-5916.9999998880885,-5916.999999996177)
    sum a = (2.5647022399051533e-08,3.560925481869634e-08,1.688043716526616e-09)
    sum e = 14792.499999897802
    sum de = -6.294446367187574e-08
Info: CFL hydro = 6.60647728457628 sink sink = inf                                    [SPH][rank=0]
Info: cfl dt = 6.60647728457628 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    | 4.7311e+03 | 5917 |    113 | 1.251e+00 | 0.0% |   2.4% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 287.8475076015932 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 29                                                      [SPH][rank=0]
Info: time since start : 1607.030231852 (s)                                           [SPH][rank=0]
Info: collected : 113 patches                                              [PatchScheduler][rank=0]
---------------- t = 2.7, dt = 0.10000000000000009 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5917 min = 5917                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5917 min = 5917                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 113
    min = 5917
    max = 5917
    avg = 5917
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.69 us   (1.5%)
   patch tree reduce : 21.07 us   (2.9%)
   gen split merge   : 1924.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 792.00 ns  (0.1%)
   LB compute        : 616.46 us  (85.2%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.43 us    (16.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.5450643776824036
    patch 1 high interf/patch volume: 4.242677824267783
    patch 2 high interf/patch volume: 4.138004246284502
    patch 4 high interf/patch volume: 4.463829787234044
    patch 7 high interf/patch volume: 8.123529411764705
    patch 141 high interf/patch volume: 7.513888888888888
    patch 142 high interf/patch volume: 7.569230769230769
    patch 144 high interf/patch volume: 7.722222222222223
    patch 197 high interf/patch volume: 7.043478260869565
    patch 198 high interf/patch volume: 7.333333333333334
    patch 199 high interf/patch volume: 7
    patch 204 high interf/patch volume: 7.444444444444443
    patch 207 high interf/patch volume: 7.058823529411765
    patch 208 high interf/patch volume: 7
    patch 212 high interf/patch volume: 7.529411764705882
    patch 214 high interf/patch volume: 7.347826086956522
    patch 216 high interf/patch volume: 7
    patch 218 high interf/patch volume: 7.657608695652176
    patch 219 high interf/patch volume: 7.863095238095239
    patch 220 high interf/patch volume: 7.685534591194968
    patch 221 high interf/patch volume: 7.7969543147208125
    patch 222 high interf/patch volume: 7.562499999999998
    patch 223 high interf/patch volume: 7.5103448275862075
    patch 224 high interf/patch volume: 7.64516129032258
    patch 247 high interf/patch volume: 5.670454545454545
    patch 248 high interf/patch volume: 6.555555555555556
    patch 251 high interf/patch volume: 6.378378378378378
    patch 256 high interf/patch volume: 5.415730337078651
    patch 257 high interf/patch volume: 6.3
    patch 258 high interf/patch volume: 6.151515151515151
    patch 260 high interf/patch volume: 5.361904761904762
    patch 262 high interf/patch volume: 6.571428571428572
    patch 264 high interf/patch volume: 6.685714285714286
    patch 267 high interf/patch volume: 6.032258064516129
    patch 268 high interf/patch volume: 6.966480446927374
    patch 269 high interf/patch volume: 6.586956521739131
    patch 270 high interf/patch volume: 5.96969696969697
    patch 271 high interf/patch volume: 7.111111111111111
    patch 272 high interf/patch volume: 6.656976744186046
    patch 273 high interf/patch volume: 7.048387096774194
    patch 274 high interf/patch volume: 5.695652173913044
    patch 275 high interf/patch volume: 5.475
    patch 276 high interf/patch volume: 7.142857142857142
    patch 277 high interf/patch volume: 6.457894736842106
    patch 278 high interf/patch volume: 6.32768361581921
    patch 279 high interf/patch volume: 6.215189873417721
    patch 280 high interf/patch volume: 6.756521739130434
    patch 281 high interf/patch volume: 6.719101123595506
    patch 282 high interf/patch volume: 5.857142857142858
    patch 283 high interf/patch volume: 6.592814371257485
    patch 284 high interf/patch volume: 5.627906976744186
    patch 285 high interf/patch volume: 6.424418604651163
    patch 286 high interf/patch volume: 7
    patch 287 high interf/patch volume: 6.814814814814817
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999871181,-5916.99999988275,-5916.9999999953825)
    sum a = (-1.048581601843096e-08,-4.352105468542755e-09,-6.531467944617675e-11)
    sum e = 14792.499999894253
    sum de = 1.4903267134703385e-08
Info: CFL hydro = 6.608148555644359 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 6.608148555644359 cfl multiplier : 0.9999922555838495           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 4.8652e+03 | 5917 |    113 | 1.216e+00 | 0.0% |   2.0% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 296.0037447104853 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 30                                                      [SPH][rank=0]
Info: time since start : 1609.160293141 (s)                                           [SPH][rank=0]
Info: collected : 113 patches                                              [PatchScheduler][rank=0]
---------------- t = 2.8000000000000003, dt = 0.10000000000000009 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5917 min = 5917                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5917 min = 5917                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 113
    min = 5917
    max = 5917
    avg = 5917
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.05 us   (1.6%)
   patch tree reduce : 22.77 us   (3.3%)
   gen split merge   : 1854.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.2%)
   LB compute        : 569.45 us  (83.6%)
   LB move op cnt    : 0
   LB apply          : 4.57 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.14 us    (15.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.370192307692308
    patch 1 high interf/patch volume: 3.503257328990228
    patch 2 high interf/patch volume: 3.641914191419142
    patch 4 high interf/patch volume: 3.495667244367418
    patch 7 high interf/patch volume: 8.561403508771928
    patch 141 high interf/patch volume: 6.888888888888888
    patch 142 high interf/patch volume: 7.25
    patch 144 high interf/patch volume: 6.9642857142857135
    patch 197 high interf/patch volume: 7
    patch 218 high interf/patch volume: 7.248826291079811
    patch 219 high interf/patch volume: 7.416216216216217
    patch 220 high interf/patch volume: 6.80672268907563
    patch 221 high interf/patch volume: 7.463687150837988
    patch 222 high interf/patch volume: 6.881355932203389
    patch 223 high interf/patch volume: 6.686868686868686
    patch 224 high interf/patch volume: 6.575757575757576
    patch 247 high interf/patch volume: 4.969465648854961
    patch 248 high interf/patch volume: 6
    patch 251 high interf/patch volume: 6.4
    patch 256 high interf/patch volume: 4.9322033898305095
    patch 257 high interf/patch volume: 6
    patch 258 high interf/patch volume: 6.666666666666667
    patch 260 high interf/patch volume: 5.1328125
    patch 262 high interf/patch volume: 6.25
    patch 264 high interf/patch volume: 6.214285714285714
    patch 267 high interf/patch volume: 5.745098039215685
    patch 268 high interf/patch volume: 6.842424242424243
    patch 269 high interf/patch volume: 6.475675675675676
    patch 270 high interf/patch volume: 5.434782608695652
    patch 271 high interf/patch volume: 7
    patch 272 high interf/patch volume: 6.33112582781457
    patch 273 high interf/patch volume: 7.045977011494253
    patch 274 high interf/patch volume: 5.611111111111112
    patch 275 high interf/patch volume: 5.512195121951219
    patch 276 high interf/patch volume: 7.125
    patch 277 high interf/patch volume: 6.7210526315789485
    patch 278 high interf/patch volume: 6.401041666666665
    patch 279 high interf/patch volume: 6.317365269461079
    patch 280 high interf/patch volume: 6.891304347826087
    patch 281 high interf/patch volume: 7.185393258426966
    patch 282 high interf/patch volume: 5.875
    patch 283 high interf/patch volume: 6.75
    patch 284 high interf/patch volume: 5.5777777777777775
    patch 285 high interf/patch volume: 6.487654320987653
    patch 286 high interf/patch volume: 7.166666666666667
    patch 287 high interf/patch volume: 6.972972972972973
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999874035,-5916.999999885181,-5916.999999995472)
    sum a = (1.691355389077387e-17,-1.8214596497756474e-17,-3.599551212651875e-17)
    sum e = 14792.499999899537
    sum de = 4.336808689942018e-18
Info: CFL hydro = 6.609871038213531 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 6.609871038213531 cfl multiplier : 0.9999948370558996           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7549e+03 | 5917 |    113 | 1.028e+00 | 0.0% |   2.0% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 350.13641149249577 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 31                                                      [SPH][rank=0]
Info: time since start : 1611.018552943 (s)                                           [SPH][rank=0]
Info: collected : 113 patches                                              [PatchScheduler][rank=0]
---------------- t = 2.9000000000000004, dt = 0.09999999999999964 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5904 min = 5904                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5904 min = 5904                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 134
    min = 5904
    max = 5904
    avg = 5904
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.65 us   (0.1%)
   patch tree reduce : 20.12 us   (0.3%)
   gen split merge   : 3.07 us    (0.0%)
   split / merge op  : 3/3
   apply split merge : 5.52 ms    (75.7%)
   LB compute        : 492.89 us  (6.8%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (18.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.7839879154078548
    patch 7 high interf/patch volume: 8.243119266055048
    patch 218 high interf/patch volume: 6.26896551724138
    patch 219 high interf/patch volume: 6.46927374301676
    patch 220 high interf/patch volume: 6.949999999999999
    patch 221 high interf/patch volume: 6.170886075949367
    patch 222 high interf/patch volume: 6.944444444444445
    patch 223 high interf/patch volume: 6.86
    patch 224 high interf/patch volume: 7
    patch 247 high interf/patch volume: 4.765714285714285
    patch 256 high interf/patch volume: 4.531645569620253
    patch 260 high interf/patch volume: 4.593103448275862
    patch 267 high interf/patch volume: 5.249999999999999
    patch 268 high interf/patch volume: 6.999999999999998
    patch 269 high interf/patch volume: 5.7867647058823515
    patch 270 high interf/patch volume: 5.130434782608695
    patch 271 high interf/patch volume: 7
    patch 272 high interf/patch volume: 5.673469387755103
    patch 273 high interf/patch volume: 7.081081081081081
    patch 274 high interf/patch volume: 5.083333333333333
    patch 275 high interf/patch volume: 5.140000000000001
    patch 276 high interf/patch volume: 7
    patch 277 high interf/patch volume: 6.715736040609137
    patch 278 high interf/patch volume: 5.441860465116279
    patch 279 high interf/patch volume: 5.7124999999999995
    patch 280 high interf/patch volume: 7.176470588235295
    patch 281 high interf/patch volume: 6.74468085106383
    patch 282 high interf/patch volume: 5.124999999999999
    patch 283 high interf/patch volume: 5.744966442953021
    patch 284 high interf/patch volume: 4.972222222222222
    patch 285 high interf/patch volume: 5.358208955223881
    patch 286 high interf/patch volume: 7
    patch 287 high interf/patch volume: 7.124999999999999
    patch 293 high interf/patch volume: 2.9850746268656714
    patch 299 high interf/patch volume: 2.8969072164948457
    patch 304 high interf/patch volume: 3.001388888888889
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999873513,-5916.9999998849635,-5916.999999995472)
    sum a = (4.512909146398708e-07,1.7832808608779505e-07,2.145986829262675e-07)
    sum e = 14792.499999898686
    sum de = -8.442516305981473e-07
Info: CFL hydro = 6.6116475580409855 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 6.6116475580409855 cfl multiplier : 0.9999965580372665          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 7.4136e+03 | 5917 |    113 | 7.981e-01 | 0.0% |   1.9% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 451.0555850882791 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 32                                                      [SPH][rank=0]
Info: time since start : 1612.7212223640001 (s)                                       [SPH][rank=0]
Info: collected : 113 patches                                              [PatchScheduler][rank=0]
---------------- t = 3, dt = 0.10000000000000009 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5903 min = 5903                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5903 min = 5903                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 141
    min = 5903
    max = 5903
    avg = 5903
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.11 us   (0.1%)
   patch tree reduce : 34.85 us   (0.4%)
   gen split merge   : 3.77 us    (0.0%)
   split / merge op  : 4/0
   apply split merge : 7.99 ms    (89.7%)
   LB compute        : 781.97 us  (8.8%)
   LB move op cnt    : 0
   LB apply          : 4.60 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (17.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 7 high interf/patch volume: 8.28654970760234
    patch 218 high interf/patch volume: 7.162162162162161
    patch 219 high interf/patch volume: 7.448275862068966
    patch 220 high interf/patch volume: 7.222222222222223
    patch 221 high interf/patch volume: 7.070422535211267
    patch 222 high interf/patch volume: 7.333333333333333
    patch 223 high interf/patch volume: 7.555555555555557
    patch 228 high interf/patch volume: 6.142857142857142
    patch 233 high interf/patch volume: 6
    patch 247 high interf/patch volume: 5.602649006622515
    patch 256 high interf/patch volume: 5.763358778625955
    patch 260 high interf/patch volume: 5.360759493670886
    patch 267 high interf/patch volume: 5.212121212121212
    patch 268 high interf/patch volume: 7.177142857142856
    patch 269 high interf/patch volume: 6.319148936170214
    patch 270 high interf/patch volume: 5.242424242424243
    patch 272 high interf/patch volume: 6.252747252747253
    patch 273 high interf/patch volume: 7.285714285714286
    patch 274 high interf/patch volume: 5.296296296296296
    patch 275 high interf/patch volume: 5.852941176470589
    patch 276 high interf/patch volume: 7
    patch 277 high interf/patch volume: 7.125000000000001
    patch 278 high interf/patch volume: 6.247422680412372
    patch 279 high interf/patch volume: 6.803571428571429
    patch 280 high interf/patch volume: 7.5
    patch 281 high interf/patch volume: 7.185393258426966
    patch 282 high interf/patch volume: 5.311111111111112
    patch 283 high interf/patch volume: 6.481481481481482
    patch 284 high interf/patch volume: 5.028571428571429
    patch 285 high interf/patch volume: 6.241758241758243
    patch 286 high interf/patch volume: 7
    patch 287 high interf/patch volume: 8
    patch 315 high interf/patch volume: 2.2983521248915872
    patch 316 high interf/patch volume: 5.125
    patch 319 high interf/patch volume: 5
    patch 320 high interf/patch volume: 3.421428571428571
    patch 324 high interf/patch volume: 5.153846153846154
    patch 326 high interf/patch volume: 5.142857142857142
    patch 328 high interf/patch volume: 3.434892541087232
    patch 330 high interf/patch volume: 5.3999999999999995
    patch 331 high interf/patch volume: 5
    patch 332 high interf/patch volume: 3.492857142857142
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999805819,-5916.999999858211,-5916.99999996328)
    sum a = (9.749253271872094e-08,-3.629667181398455e-09,-4.1490008304001513e-10)
    sum e = 14792.499999771935
    sum de = -9.344939336242142e-08
Info: CFL hydro = 6.6134799944959735 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 6.6134799944959735 cfl multiplier : 0.9999977053581777          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.9741e+03 | 5917 |    141 | 8.484e-01 | 0.0% |   1.8% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 424.31779922764525 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 33                                                      [SPH][rank=0]
Info: time since start : 1614.3736898680002 (s)                                       [SPH][rank=0]
Info: collected : 141 patches                                              [PatchScheduler][rank=0]
---------------- t = 3.1, dt = 0.10000000000000009 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5909 min = 5909                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5909 min = 5909                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 169
    min = 5909
    max = 5909
    avg = 5909
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.96 us    (0.0%)
   patch tree reduce : 22.66 us   (0.1%)
   gen split merge   : 3.50 us    (0.0%)
   split / merge op  : 4/0
   apply split merge : 36.76 ms   (98.0%)
   LB compute        : 576.98 us  (1.5%)
   LB move op cnt    : 0
   LB apply          : 4.96 us    (0.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (13.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 7 high interf/patch volume: 7.367088607594939
    patch 218 high interf/patch volume: 6.903225806451612
    patch 219 high interf/patch volume: 7.08
    patch 221 high interf/patch volume: 7.115384615384615
    patch 228 high interf/patch volume: 7.444444444444445
    patch 233 high interf/patch volume: 7.5
    patch 239 high interf/patch volume: 7.384615384615385
    patch 247 high interf/patch volume: 7.382978723404253
    patch 256 high interf/patch volume: 7.6000000000000005
    patch 260 high interf/patch volume: 7.184931506849314
    patch 267 high interf/patch volume: 7.105263157894736
    patch 268 high interf/patch volume: 7.905882352941175
    patch 269 high interf/patch volume: 7.481481481481482
    patch 270 high interf/patch volume: 6.888888888888889
    patch 272 high interf/patch volume: 7.333333333333334
    patch 274 high interf/patch volume: 7.157894736842105
    patch 275 high interf/patch volume: 7.352941176470589
    patch 277 high interf/patch volume: 8.053475935828876
    patch 278 high interf/patch volume: 7.366666666666667
    patch 279 high interf/patch volume: 7.811320754716982
    patch 281 high interf/patch volume: 7.861111111111111
    patch 282 high interf/patch volume: 7.0625
    patch 283 high interf/patch volume: 7.333333333333335
    patch 284 high interf/patch volume: 7.1875
    patch 285 high interf/patch volume: 7.19047619047619
    patch 316 high interf/patch volume: 6.189189189189189
    patch 319 high interf/patch volume: 5.842105263157896
    patch 320 high interf/patch volume: 5.564516129032258
    patch 324 high interf/patch volume: 6.323529411764706
    patch 326 high interf/patch volume: 6.16
    patch 328 high interf/patch volume: 5.69672131147541
    patch 330 high interf/patch volume: 6.200000000000001
    patch 331 high interf/patch volume: 6.0769230769230775
    patch 332 high interf/patch volume: 5.685483870967741
    patch 339 high interf/patch volume: 4.208333333333334
    patch 341 high interf/patch volume: 4.202380952380952
    patch 342 high interf/patch volume: 4.212389380530973
    patch 343 high interf/patch volume: 4.008634222919937
    patch 344 high interf/patch volume: 6.813953488372092
    patch 345 high interf/patch volume: 7
    patch 346 high interf/patch volume: 7.648648648648648
    patch 347 high interf/patch volume: 6.758064516129032
    patch 348 high interf/patch volume: 7.950000000000001
    patch 349 high interf/patch volume: 7.842105263157895
    patch 350 high interf/patch volume: 8.126315789473685
    patch 351 high interf/patch volume: 7.083333333333333
    patch 352 high interf/patch volume: 7.0754716981132075
    patch 353 high interf/patch volume: 7.6410256410256405
    patch 354 high interf/patch volume: 6.934065934065933
    patch 355 high interf/patch volume: 7.595238095238096
    patch 356 high interf/patch volume: 8
    patch 357 high interf/patch volume: 7.957894736842107
    patch 358 high interf/patch volume: 7.0404624277456636
    patch 359 high interf/patch volume: 6.75609756097561
    patch 360 high interf/patch volume: 7.833333333333334
    patch 361 high interf/patch volume: 7.076923076923077
    patch 362 high interf/patch volume: 7.613636363636363
    patch 363 high interf/patch volume: 7.5
    patch 364 high interf/patch volume: 8.11111111111111
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999813763,-5916.999999867675,-5916.99999997407)
    sum a = (2.4874539907449728e-08,3.46184465209844e-08,1.6523220165145722e-09)
    sum e = 14792.499999800018
    sum de = -6.1145355988515e-08
Info: CFL hydro = 6.615369595697159 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 6.615369595697159 cfl multiplier : 0.9999984702387851           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 4.1967e+03 | 5917 |    169 | 1.410e+00 | 0.0% |   1.9% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 255.33144377898984 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 34                                                      [SPH][rank=0]
Info: time since start : 1616.7987099830002 (s)                                       [SPH][rank=0]
Info: collected : 169 patches                                              [PatchScheduler][rank=0]
---------------- t = 3.2, dt = 0.10000000000000009 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5915 min = 5915                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5915 min = 5915                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 176
    min = 5915
    max = 5915
    avg = 5915
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.57 us   (0.1%)
   patch tree reduce : 29.80 us   (0.3%)
   gen split merge   : 3.49 us    (0.0%)
   split / merge op  : 1/0
   apply split merge : 10.34 ms   (90.8%)
   LB compute        : 867.47 us  (7.6%)
   LB move op cnt    : 0
   LB apply          : 4.94 us    (0.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (14.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 7 high interf/patch volume: 7.645161290322578
    patch 218 high interf/patch volume: 7
    patch 219 high interf/patch volume: 7
    patch 221 high interf/patch volume: 7
    patch 228 high interf/patch volume: 7.285714285714286
    patch 233 high interf/patch volume: 7.222222222222221
    patch 239 high interf/patch volume: 7.222222222222221
    patch 247 high interf/patch volume: 7.806451612903227
    patch 256 high interf/patch volume: 7.704347826086956
    patch 260 high interf/patch volume: 7.888888888888889
    patch 267 high interf/patch volume: 7.333333333333334
    patch 268 high interf/patch volume: 7.956249999999999
    patch 269 high interf/patch volume: 8
    patch 270 high interf/patch volume: 7.2
    patch 272 high interf/patch volume: 7.652173913043478
    patch 274 high interf/patch volume: 7.666666666666666
    patch 275 high interf/patch volume: 7.4
    patch 277 high interf/patch volume: 8.094339622641511
    patch 278 high interf/patch volume: 8.058823529411764
    patch 279 high interf/patch volume: 8.055555555555555
    patch 281 high interf/patch volume: 7.882758620689655
    patch 282 high interf/patch volume: 7.571428571428571
    patch 283 high interf/patch volume: 7.705882352941177
    patch 284 high interf/patch volume: 7
    patch 285 high interf/patch volume: 7.888888888888889
    patch 316 high interf/patch volume: 6.264150943396226
    patch 319 high interf/patch volume: 6.294117647058823
    patch 320 high interf/patch volume: 6.390625
    patch 324 high interf/patch volume: 6.21875
    patch 326 high interf/patch volume: 6.133333333333334
    patch 328 high interf/patch volume: 6.167832167832168
    patch 330 high interf/patch volume: 6.531914893617021
    patch 331 high interf/patch volume: 6.163934426229508
    patch 332 high interf/patch volume: 6.638297872340425
    patch 339 high interf/patch volume: 5.313304721030042
    patch 341 high interf/patch volume: 5.383495145631068
    patch 342 high interf/patch volume: 5.184
    patch 343 high interf/patch volume: 4.525316455696202
    patch 344 high interf/patch volume: 7.430379746835443
    patch 345 high interf/patch volume: 7.200000000000001
    patch 346 high interf/patch volume: 7.535714285714286
    patch 347 high interf/patch volume: 7.808383233532934
    patch 348 high interf/patch volume: 8.613095238095237
    patch 349 high interf/patch volume: 7.857142857142858
    patch 350 high interf/patch volume: 8.538461538461538
    patch 351 high interf/patch volume: 7
    patch 352 high interf/patch volume: 7.389830508474576
    patch 353 high interf/patch volume: 7.588235294117647
    patch 354 high interf/patch volume: 7.375000000000001
    patch 355 high interf/patch volume: 7.566666666666666
    patch 356 high interf/patch volume: 8.233695652173914
    patch 357 high interf/patch volume: 8.51388888888889
    patch 358 high interf/patch volume: 7.808139534883721
    patch 359 high interf/patch volume: 7.656976744186048
    patch 360 high interf/patch volume: 8.512690355329951
    patch 361 high interf/patch volume: 7.625
    patch 362 high interf/patch volume: 7.75
    patch 363 high interf/patch volume: 7.84375
    patch 364 high interf/patch volume: 8.796296296296296
    patch 365 high interf/patch volume: 5.956043956043955
    patch 366 high interf/patch volume: 5.869565217391305
    patch 367 high interf/patch volume: 7.137566137566139
    patch 368 high interf/patch volume: 5.919354838709677
    patch 369 high interf/patch volume: 7.307262569832403
    patch 370 high interf/patch volume: 7.337078651685394
    patch 371 high interf/patch volume: 8.292397660818713
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999814902,-5916.999999862301,-5916.999999973805)
    sum a = (-1.0080460738598432e-08,-4.189319558436227e-09,-6.584248838632839e-11)
    sum e = 14792.499999795406
    sum de = 1.4335678471009361e-08
Info: CFL hydro = 6.617317188631759 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 6.617317188631759 cfl multiplier : 0.99999898015919             [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.9719e+03 | 5917 |    176 | 1.490e+00 | 0.0% |   2.3% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 241.6554894457964 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 35                                                      [SPH][rank=0]
Info: time since start : 1619.3261238680002 (s)                                       [SPH][rank=0]
Info: collected : 176 patches                                              [PatchScheduler][rank=0]
---------------- t = 3.3000000000000003, dt = 0.10000000000000009 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5917 min = 5917                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5917 min = 5917                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 176
    min = 5917
    max = 5917
    avg = 5917
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.34 us   (1.3%)
   patch tree reduce : 31.08 us   (3.5%)
   gen split merge   : 2.42 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.1%)
   LB compute        : 712.49 us  (80.2%)
   LB move op cnt    : 0
   LB apply          : 4.81 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (7.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 7 high interf/patch volume: 6.515151515151515
    patch 228 high interf/patch volume: 7
    patch 233 high interf/patch volume: 7
    patch 239 high interf/patch volume: 7.166666666666667
    patch 247 high interf/patch volume: 7.068965517241378
    patch 256 high interf/patch volume: 7.184782608695652
    patch 260 high interf/patch volume: 6.891891891891892
    patch 268 high interf/patch volume: 6.84033613445378
    patch 272 high interf/patch volume: 7
    patch 277 high interf/patch volume: 6.789915966386555
    patch 281 high interf/patch volume: 6.585858585858586
    patch 304 high interf/patch volume: 7
    patch 316 high interf/patch volume: 6.231884057971014
    patch 319 high interf/patch volume: 6.217391304347827
    patch 320 high interf/patch volume: 6.708333333333335
    patch 324 high interf/patch volume: 5.766666666666667
    patch 326 high interf/patch volume: 5.725274725274725
    patch 328 high interf/patch volume: 5.833333333333333
    patch 330 high interf/patch volume: 6.038461538461539
    patch 331 high interf/patch volume: 6.112676056338027
    patch 332 high interf/patch volume: 6.583333333333333
    patch 337 high interf/patch volume: 4.916666666666666
    patch 338 high interf/patch volume: 4.85
    patch 339 high interf/patch volume: 4.402116402116402
    patch 340 high interf/patch volume: 5.277777777777779
    patch 341 high interf/patch volume: 4.502403846153846
    patch 342 high interf/patch volume: 4.6272040302267
    patch 343 high interf/patch volume: 5.207100591715975
    patch 344 high interf/patch volume: 7.29940119760479
    patch 345 high interf/patch volume: 7
    patch 346 high interf/patch volume: 7.666666666666666
    patch 347 high interf/patch volume: 7.27906976744186
    patch 348 high interf/patch volume: 7.713513513513512
    patch 349 high interf/patch volume: 7
    patch 350 high interf/patch volume: 8.083333333333332
    patch 352 high interf/patch volume: 6.802083333333333
    patch 353 high interf/patch volume: 6
    patch 354 high interf/patch volume: 6.594594594594595
    patch 355 high interf/patch volume: 6
    patch 356 high interf/patch volume: 7.221698113207548
    patch 357 high interf/patch volume: 6.888888888888889
    patch 358 high interf/patch volume: 7.019867549668874
    patch 359 high interf/patch volume: 6.9447852760736195
    patch 360 high interf/patch volume: 7.726256983240224
    patch 361 high interf/patch volume: 7.333333333333333
    patch 362 high interf/patch volume: 7.199999999999999
    patch 363 high interf/patch volume: 6.999999999999999
    patch 364 high interf/patch volume: 7.392857142857143
    patch 365 high interf/patch volume: 5.588571428571429
    patch 366 high interf/patch volume: 6.1047120418848175
    patch 367 high interf/patch volume: 7.005263157894737
    patch 368 high interf/patch volume: 6.288235294117648
    patch 369 high interf/patch volume: 6.872727272727272
    patch 370 high interf/patch volume: 7.265536723163841
    patch 371 high interf/patch volume: 8.380116959064326
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999817658,-5916.999999864657,-5916.999999973896)
    sum a = (-6.619773266679548e-09,7.670035777226073e-10,6.103995180414856e-09)
    sum e = 14792.49999980049
    sum de = -2.5220332319155844e-10
Info: CFL hydro = 6.619323319251993 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 6.619323319251993 cfl multiplier : 0.9999993201061267           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 4.5917e+03 | 5917 |    176 | 1.289e+00 | 0.0% |   2.0% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 279.36869606137907 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 36                                                      [SPH][rank=0]
Info: time since start : 1621.7779905260002 (s)                                       [SPH][rank=0]
Info: collected : 176 patches                                              [PatchScheduler][rank=0]
---------------- t = 3.4000000000000004, dt = 0.09999999999999964 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5917 min = 5917                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5917 min = 5917                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 176
    min = 5917
    max = 5917
    avg = 5917
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.27 us   (0.6%)
   patch tree reduce : 28.38 us   (1.6%)
   gen split merge   : 3.29 us    (0.2%)
   split / merge op  : 0/1
   apply split merge : 832.00 ns  (0.0%)
   LB compute        : 735.53 us  (41.8%)
   LB move op cnt    : 0
   LB apply          : 5.07 us    (0.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (9.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 7 high interf/patch volume: 7
    patch 228 high interf/patch volume: 7
    patch 233 high interf/patch volume: 7
    patch 239 high interf/patch volume: 7
    patch 247 high interf/patch volume: 6.972972972972974
    patch 256 high interf/patch volume: 7.0882352941176485
    patch 260 high interf/patch volume: 7.125
    patch 268 high interf/patch volume: 6.861111111111111
    patch 277 high interf/patch volume: 6.825
    patch 281 high interf/patch volume: 6.859999999999999
    patch 293 high interf/patch volume: 7
    patch 299 high interf/patch volume: 7
    patch 304 high interf/patch volume: 7
    patch 315 high interf/patch volume: 7
    patch 316 high interf/patch volume: 5.655555555555555
    patch 319 high interf/patch volume: 5.527027027027027
    patch 320 high interf/patch volume: 5.586466165413533
    patch 324 high interf/patch volume: 5.534246575342465
    patch 326 high interf/patch volume: 5.590909090909091
    patch 328 high interf/patch volume: 5.524590163934427
    patch 330 high interf/patch volume: 5.634146341463415
    patch 331 high interf/patch volume: 5.438356164383562
    patch 332 high interf/patch volume: 5.238095238095238
    patch 337 high interf/patch volume: 4.987804878048781
    patch 338 high interf/patch volume: 4.835616438356164
    patch 339 high interf/patch volume: 3.7863247863247858
    patch 340 high interf/patch volume: 4.924242424242424
    patch 341 high interf/patch volume: 4.053067993366501
    patch 342 high interf/patch volume: 3.964285714285714
    patch 343 high interf/patch volume: 5.176470588235295
    patch 344 high interf/patch volume: 5.9875
    patch 347 high interf/patch volume: 5.953020134228189
    patch 348 high interf/patch volume: 6.5418994413407825
    patch 352 high interf/patch volume: 5.767441860465116
    patch 354 high interf/patch volume: 6.007352941176471
    patch 356 high interf/patch volume: 6.351724137931035
    patch 358 high interf/patch volume: 5.9520547945205475
    patch 359 high interf/patch volume: 5.634328358208955
    patch 360 high interf/patch volume: 6.29113924050633
    patch 365 high interf/patch volume: 5.978835978835979
    patch 366 high interf/patch volume: 5.71764705882353
    patch 367 high interf/patch volume: 6.741116751269036
    patch 368 high interf/patch volume: 5.978021978021978
    patch 369 high interf/patch volume: 7.038277511961723
    patch 370 high interf/patch volume: 6.728723404255319
    patch 371 high interf/patch volume: 8.142201834862387
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.9999998181465,-5916.999999864336,-5916.999999972978)
    sum a = (2.708573443928764e-12,2.1971467767108342e-07,8.072493276048073e-13)
    sum e = 14792.499999799616
    sum de = -2.1976820657039714e-07
Info: CFL hydro = 6.6213883458833775 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 6.6213883458833775 cfl multiplier : 0.9999995467374179          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5709e+03 | 5917 |    169 | 1.062e+00 | 0.0% |   1.9% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 338.9431895964133 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 37                                                      [SPH][rank=0]
Info: time since start : 1624.0007405610002 (s)                                       [SPH][rank=0]
Info: collected : 169 patches                                              [PatchScheduler][rank=0]
---------------- t = 3.5, dt = 0.10000000000000009 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5909 min = 5909                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5909 min = 5909                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 190
    min = 5909
    max = 5909
    avg = 5909
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.81 us   (0.1%)
   patch tree reduce : 28.31 us   (0.2%)
   gen split merge   : 3.97 us    (0.0%)
   split / merge op  : 3/1
   apply split merge : 16.10 ms   (94.0%)
   LB compute        : 508.70 us  (3.0%)
   LB move op cnt    : 0
   LB apply          : 5.04 us    (0.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (13.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 228 high interf/patch volume: 7
    patch 239 high interf/patch volume: 7
    patch 247 high interf/patch volume: 7.2857142857142865
    patch 256 high interf/patch volume: 7.666666666666667
    patch 260 high interf/patch volume: 8
    patch 268 high interf/patch volume: 7.333333333333333
    patch 277 high interf/patch volume: 7.222222222222221
    patch 281 high interf/patch volume: 7.555555555555555
    patch 293 high interf/patch volume: 7
    patch 299 high interf/patch volume: 7
    patch 304 high interf/patch volume: 7
    patch 315 high interf/patch volume: 6.119047619047619
    patch 316 high interf/patch volume: 6.583333333333333
    patch 319 high interf/patch volume: 6.4368932038834945
    patch 320 high interf/patch volume: 6.588235294117647
    patch 324 high interf/patch volume: 6.608695652173913
    patch 326 high interf/patch volume: 6.717948717948716
    patch 328 high interf/patch volume: 6.749999999999998
    patch 330 high interf/patch volume: 6.36144578313253
    patch 331 high interf/patch volume: 6.235294117647058
    patch 332 high interf/patch volume: 6.236363636363635
    patch 337 high interf/patch volume: 5.912371134020618
    patch 338 high interf/patch volume: 5.796954314720812
    patch 339 high interf/patch volume: 6.153846153846153
    patch 340 high interf/patch volume: 6.16017316017316
    patch 341 high interf/patch volume: 6.523809523809524
    patch 342 high interf/patch volume: 6.444444444444445
    patch 343 high interf/patch volume: 7.773584905660379
    patch 344 high interf/patch volume: 7.446428571428572
    patch 347 high interf/patch volume: 6.972222222222223
    patch 348 high interf/patch volume: 7.471264367816092
    patch 352 high interf/patch volume: 7.1340206185567006
    patch 354 high interf/patch volume: 6.978723404255319
    patch 356 high interf/patch volume: 7.256756756756756
    patch 358 high interf/patch volume: 6.912087912087913
    patch 359 high interf/patch volume: 6.835164835164836
    patch 360 high interf/patch volume: 7.267605633802816
    patch 365 high interf/patch volume: 8.104938271604938
    patch 366 high interf/patch volume: 7.672955974842768
    patch 367 high interf/patch volume: 8.136904761904761
    patch 368 high interf/patch volume: 7.75
    patch 369 high interf/patch volume: 8.154285714285715
    patch 370 high interf/patch volume: 7.837078651685393
    patch 371 high interf/patch volume: 8.222222222222223
    patch 372 high interf/patch volume: 6.384615384615385
    patch 373 high interf/patch volume: 6.8
    patch 374 high interf/patch volume: 6.857142857142857
    patch 375 high interf/patch volume: 6.6951219512195115
    patch 376 high interf/patch volume: 6.828947368421053
    patch 377 high interf/patch volume: 6.647058823529412
    patch 378 high interf/patch volume: 6.85496183206107
    patch 379 high interf/patch volume: 6.7142857142857135
    patch 380 high interf/patch volume: 6.798941798941799
    patch 381 high interf/patch volume: 7.0561797752809
    patch 382 high interf/patch volume: 6.8
    patch 383 high interf/patch volume: 7
    patch 384 high interf/patch volume: 6.9763313609467446
    patch 385 high interf/patch volume: 6.880794701986754
    patch 386 high interf/patch volume: 6.50777202072539
    patch 387 high interf/patch volume: 6
    patch 388 high interf/patch volume: 6.454545454545455
    patch 389 high interf/patch volume: 6
    patch 390 high interf/patch volume: 6.497142857142856
    patch 392 high interf/patch volume: 6.443037974683545
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999817814,-5916.999999831415,-5916.999999973284)
    sum a = (1.2766804611142463e-07,1.068425469624712e-11,-1.0783106958560384e-08)
    sum e = 14792.499999766527
    sum de = -1.1689735487094895e-07
Info: CFL hydro = 6.623512501501748 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 6.623512501501748 cfl multiplier : 0.9999996978249452           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 4.1301e+03 | 5917 |    183 | 1.433e+00 | 0.0% |   2.0% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 251.28363779100886 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 38                                                      [SPH][rank=0]
Info: time since start : 1626.453912677 (s)                                           [SPH][rank=0]
Info: collected : 183 patches                                              [PatchScheduler][rank=0]
---------------- t = 3.6, dt = 0.10000000000000009 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5917 min = 5917                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5917 min = 5917                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 183
    min = 5917
    max = 5917
    avg = 5917
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.59 us   (0.3%)
   patch tree reduce : 29.70 us   (0.9%)
   gen split merge   : 3.83 us    (0.1%)
   split / merge op  : 0/4
   apply split merge : 852.00 ns  (0.0%)
   LB compute        : 640.65 us  (18.6%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (10.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 293 high interf/patch volume: 6.999999999999999
    patch 299 high interf/patch volume: 6.999999999999999
    patch 304 high interf/patch volume: 7.0769230769230775
    patch 315 high interf/patch volume: 4.539823008849558
    patch 316 high interf/patch volume: 6.796296296296296
    patch 319 high interf/patch volume: 6.907407407407407
    patch 320 high interf/patch volume: 7.452631578947367
    patch 324 high interf/patch volume: 6.620689655172415
    patch 326 high interf/patch volume: 6.754098360655737
    patch 328 high interf/patch volume: 7.305263157894737
    patch 330 high interf/patch volume: 6.967741935483871
    patch 331 high interf/patch volume: 6.775862068965516
    patch 332 high interf/patch volume: 7.679012345679013
    patch 337 high interf/patch volume: 5.153374233128835
    patch 338 high interf/patch volume: 4.996941896024465
    patch 339 high interf/patch volume: 5.958333333333334
    patch 340 high interf/patch volume: 5.229411764705883
    patch 341 high interf/patch volume: 5.945454545454545
    patch 342 high interf/patch volume: 5.970149253731344
    patch 343 high interf/patch volume: 7.903846153846154
    patch 344 high interf/patch volume: 7.377358490566038
    patch 347 high interf/patch volume: 6.9444444444444455
    patch 348 high interf/patch volume: 7.08
    patch 352 high interf/patch volume: 6.983333333333334
    patch 354 high interf/patch volume: 7.0740740740740735
    patch 356 high interf/patch volume: 6.903225806451613
    patch 358 high interf/patch volume: 7
    patch 359 high interf/patch volume: 6.825396825396825
    patch 360 high interf/patch volume: 7.115384615384614
    patch 365 high interf/patch volume: 7.876543209876543
    patch 366 high interf/patch volume: 7.933333333333334
    patch 367 high interf/patch volume: 7.6524064171123
    patch 368 high interf/patch volume: 7.925287356321838
    patch 369 high interf/patch volume: 7.488235294117645
    patch 370 high interf/patch volume: 7.488888888888888
    patch 371 high interf/patch volume: 7.208860759493671
    patch 372 high interf/patch volume: 6.413793103448276
    patch 373 high interf/patch volume: 6.1818181818181825
    patch 374 high interf/patch volume: 7.222222222222221
    patch 375 high interf/patch volume: 6.9016393442622945
    patch 376 high interf/patch volume: 6.836477987421384
    patch 377 high interf/patch volume: 6.63953488372093
    patch 378 high interf/patch volume: 6.807142857142857
    patch 379 high interf/patch volume: 6.285714285714285
    patch 380 high interf/patch volume: 6.935135135135136
    patch 381 high interf/patch volume: 6.912087912087911
    patch 382 high interf/patch volume: 6.461538461538462
    patch 383 high interf/patch volume: 7.25
    patch 384 high interf/patch volume: 7.109826589595375
    patch 385 high interf/patch volume: 6.6382978723404245
    patch 386 high interf/patch volume: 6.613095238095238
    patch 387 high interf/patch volume: 6.03225806451613
    patch 388 high interf/patch volume: 6.698924731182795
    patch 389 high interf/patch volume: 6.28125
    patch 390 high interf/patch volume: 6.804878048780488
    patch 391 high interf/patch volume: 7
    patch 392 high interf/patch volume: 6.452054794520548
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999798668,-5916.9999998424,-5916.9999999749)
    sum a = (2.3987057245003496e-08,3.3477802044868527e-08,1.6110196809394906e-09)
    sum e = 14792.499999759853
    sum de = -5.907580262779974e-08
Info: CFL hydro = 6.625695935253019 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 6.625695935253019 cfl multiplier : 0.9999997985499635           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 4.7300e+03 | 5917 |    155 | 1.251e+00 | 0.0% |   2.1% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 287.77812743797307 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 39                                                      [SPH][rank=0]
Info: time since start : 1628.881054289 (s)                                           [SPH][rank=0]
Info: collected : 155 patches                                              [PatchScheduler][rank=0]
---------------- t = 3.7, dt = 0.10000000000000009 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5917 min = 5917                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5917 min = 5917                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 155
    min = 5917
    max = 5917
    avg = 5917
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.43 us   (0.9%)
   patch tree reduce : 29.98 us   (2.4%)
   gen split merge   : 5.55 us    (0.4%)
   split / merge op  : 0/3
   apply split merge : 1663.00 ns (0.1%)
   LB compute        : 592.85 us  (47.7%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (0.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (5.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 293 high interf/patch volume: 6.916666666666666
    patch 299 high interf/patch volume: 6.7
    patch 304 high interf/patch volume: 7.625
    patch 315 high interf/patch volume: 3.5450643776824036
    patch 316 high interf/patch volume: 6.727272727272727
    patch 319 high interf/patch volume: 7.085714285714286
    patch 320 high interf/patch volume: 7.969230769230769
    patch 324 high interf/patch volume: 6.824999999999999
    patch 326 high interf/patch volume: 7.027777777777779
    patch 328 high interf/patch volume: 7.916666666666667
    patch 330 high interf/patch volume: 7
    patch 331 high interf/patch volume: 7.257142857142857
    patch 332 high interf/patch volume: 8.12962962962963
    patch 337 high interf/patch volume: 4.3412017167381975
    patch 338 high interf/patch volume: 4.275488069414316
    patch 339 high interf/patch volume: 5.415730337078651
    patch 340 high interf/patch volume: 4.67965367965368
    patch 341 high interf/patch volume: 5.670454545454545
    patch 342 high interf/patch volume: 5.371428571428572
    patch 343 high interf/patch volume: 8.11111111111111
    patch 344 high interf/patch volume: 7.444444444444445
    patch 347 high interf/patch volume: 7.058823529411765
    patch 348 high interf/patch volume: 7
    patch 352 high interf/patch volume: 7.529411764705881
    patch 354 high interf/patch volume: 7.347826086956522
    patch 356 high interf/patch volume: 7
    patch 358 high interf/patch volume: 7.0434782608695645
    patch 359 high interf/patch volume: 7.333333333333335
    patch 360 high interf/patch volume: 7
    patch 365 high interf/patch volume: 7.820652173913045
    patch 366 high interf/patch volume: 8.107142857142858
    patch 367 high interf/patch volume: 7.685534591194968
    patch 368 high interf/patch volume: 8.040609137055839
    patch 369 high interf/patch volume: 7.5625
    patch 370 high interf/patch volume: 7.5103448275862075
    patch 371 high interf/patch volume: 7.645161290322581
    patch 372 high interf/patch volume: 5.869565217391305
    patch 373 high interf/patch volume: 5.7749999999999995
    patch 374 high interf/patch volume: 7.142857142857142
    patch 375 high interf/patch volume: 6.46031746031746
    patch 376 high interf/patch volume: 6.5875706214689265
    patch 377 high interf/patch volume: 6.61392405063291
    patch 378 high interf/patch volume: 6.756521739130436
    patch 379 high interf/patch volume: 6.096774193548387
    patch 380 high interf/patch volume: 6.966480446927374
    patch 381 high interf/patch volume: 6.864130434782608
    patch 382 high interf/patch volume: 6.1818181818181825
    patch 383 high interf/patch volume: 7.111111111111111
    patch 384 high interf/patch volume: 7.08139534883721
    patch 385 high interf/patch volume: 7.048387096774194
    patch 386 high interf/patch volume: 6.870786516853933
    patch 387 high interf/patch volume: 6.057142857142857
    patch 388 high interf/patch volume: 7.089820359281436
    patch 389 high interf/patch volume: 5.8604651162790695
    patch 390 high interf/patch volume: 7.081395348837209
    patch 391 high interf/patch volume: 7
    patch 392 high interf/patch volume: 7.018518518518518
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999801453,-5916.999999837379,-5916.9999999741185)
    sum a = (-9.614728347685786e-09,-4.003396263368292e-09,-6.632893106289783e-11)
    sum e = 14792.499999756705
    sum de = 1.3684536911192507e-08
Info: CFL hydro = 6.627894997854072 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 6.627894997854072 cfl multiplier : 0.9999998656999756           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 4.5313e+03 | 5917 |    134 | 1.306e+00 | 0.0% |   2.1% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 275.6897377399061 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 40                                                      [SPH][rank=0]
Info: time since start : 1631.268461762 (s)                                           [SPH][rank=0]
Info: collected : 134 patches                                              [PatchScheduler][rank=0]
---------------- t = 3.8000000000000003, dt = 0.10000000000000009 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5917 min = 5917                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5917 min = 5917                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 134
    min = 5917
    max = 5917
    avg = 5917
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.61 us   (1.1%)
   patch tree reduce : 24.11 us   (2.6%)
   gen split merge   : 3.94 us    (0.4%)
   split / merge op  : 0/3
   apply split merge : 892.00 ns  (0.1%)
   LB compute        : 606.14 us  (64.6%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.56 us    (15.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 299 high interf/patch volume: 7
    patch 304 high interf/patch volume: 7.333333333333334
    patch 315 high interf/patch volume: 2.370192307692308
    patch 316 high interf/patch volume: 7.666666666666666
    patch 319 high interf/patch volume: 7
    patch 320 high interf/patch volume: 8.083333333333332
    patch 324 high interf/patch volume: 6
    patch 326 high interf/patch volume: 6
    patch 328 high interf/patch volume: 6.8888888888888875
    patch 330 high interf/patch volume: 7.200000000000001
    patch 331 high interf/patch volume: 7
    patch 332 high interf/patch volume: 7.4642857142857135
    patch 337 high interf/patch volume: 3.5032573289902285
    patch 338 high interf/patch volume: 3.809602649006622
    patch 339 high interf/patch volume: 4.9322033898305095
    patch 340 high interf/patch volume: 3.5884413309982484
    patch 341 high interf/patch volume: 4.969465648854961
    patch 342 high interf/patch volume: 5.1328125
    patch 343 high interf/patch volume: 8.561403508771928
    patch 358 high interf/patch volume: 7
    patch 365 high interf/patch volume: 7.250000000000001
    patch 366 high interf/patch volume: 7.6702702702702705
    patch 367 high interf/patch volume: 6.80672268907563
    patch 368 high interf/patch volume: 7.6536312849162
    patch 369 high interf/patch volume: 6.882352941176471
    patch 370 high interf/patch volume: 6.686868686868686
    patch 371 high interf/patch volume: 6.515151515151516
    patch 372 high interf/patch volume: 5.611111111111112
    patch 373 high interf/patch volume: 5.7560975609756095
    patch 374 high interf/patch volume: 7
    patch 375 high interf/patch volume: 6.721052631578947
    patch 376 high interf/patch volume: 6.401041666666666
    patch 377 high interf/patch volume: 6.766467065868263
    patch 378 high interf/patch volume: 6.880434782608696
    patch 379 high interf/patch volume: 5.745098039215685
    patch 380 high interf/patch volume: 6.842424242424243
    patch 381 high interf/patch volume: 6.475675675675675
    patch 382 high interf/patch volume: 5.608695652173913
    patch 383 high interf/patch volume: 7
    patch 384 high interf/patch volume: 6.6887417218543055
    patch 385 high interf/patch volume: 7.045977011494253
    patch 386 high interf/patch volume: 7.203389830508474
    patch 387 high interf/patch volume: 6.050000000000001
    patch 388 high interf/patch volume: 7.122093023255814
    patch 389 high interf/patch volume: 5.733333333333334
    patch 390 high interf/patch volume: 6.779141104294479
    patch 391 high interf/patch volume: 7.166666666666667
    patch 392 high interf/patch volume: 6.9459459459459465
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999804093,-5916.999999839654,-5916.9999999742095)
    sum a = (-7.806255641895632e-18,1.3010426069826053e-17,4.336808689942018e-18)
    sum e = 14792.499999761572
    sum de = 1.5612511283791264e-17
Info: CFL hydro = 6.629960400807983 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 6.629960400807983 cfl multiplier : 0.9999999104666504           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7433e+03 | 5917 |    113 | 1.030e+00 | 0.0% |   2.2% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 349.4314547367064 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 41                                                      [SPH][rank=0]
Info: time since start : 1633.2011581180002 (s)                                       [SPH][rank=0]
Info: collected : 113 patches                                              [PatchScheduler][rank=0]
---------------- t = 3.9000000000000004, dt = 0.09999999999999964 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5904 min = 5904                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5904 min = 5904                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 134
    min = 5904
    max = 5904
    avg = 5904
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.12 us   (0.0%)
   patch tree reduce : 19.94 us   (0.1%)
   gen split merge   : 2.97 us    (0.0%)
   split / merge op  : 3/3
   apply split merge : 28.82 ms   (93.5%)
   LB compute        : 831.79 us  (2.7%)
   LB move op cnt    : 0
   LB apply          : 4.79 us    (0.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (18.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 315 high interf/patch volume: 3.6375939849624057
    patch 337 high interf/patch volume: 5.170212765957446
    patch 338 high interf/patch volume: 4.88888888888889
    patch 339 high interf/patch volume: 6.170886075949367
    patch 340 high interf/patch volume: 5.138888888888888
    patch 341 high interf/patch volume: 6.494252873563219
    patch 342 high interf/patch volume: 6.179310344827587
    patch 343 high interf/patch volume: 8.299539170506913
    patch 365 high interf/patch volume: 6.337931034482759
    patch 366 high interf/patch volume: 6.5418994413407825
    patch 367 high interf/patch volume: 6.8
    patch 368 high interf/patch volume: 6.291139240506329
    patch 369 high interf/patch volume: 6.777777777777778
    patch 370 high interf/patch volume: 6.86
    patch 371 high interf/patch volume: 7
    patch 372 high interf/patch volume: 6.777777777777778
    patch 373 high interf/patch volume: 6.86
    patch 374 high interf/patch volume: 7
    patch 375 high interf/patch volume: 8.153061224489795
    patch 376 high interf/patch volume: 6.426356589147288
    patch 377 high interf/patch volume: 6.6625
    patch 378 high interf/patch volume: 7.058823529411765
    patch 379 high interf/patch volume: 6.805555555555555
    patch 380 high interf/patch volume: 8.385714285714286
    patch 381 high interf/patch volume: 6.647058823529412
    patch 382 high interf/patch volume: 6.851063829787233
    patch 383 high interf/patch volume: 7
    patch 384 high interf/patch volume: 6.5410958904109595
    patch 385 high interf/patch volume: 6.918918918918919
    patch 386 high interf/patch volume: 8.16042780748663
    patch 387 high interf/patch volume: 6.699999999999999
    patch 388 high interf/patch volume: 6.624161073825503
    patch 389 high interf/patch volume: 6.666666666666666
    patch 390 high interf/patch volume: 6.388059701492538
    patch 391 high interf/patch volume: 7
    patch 392 high interf/patch volume: 7.125
    patch 393 high interf/patch volume: 7
    patch 394 high interf/patch volume: 5.541935483870967
    patch 395 high interf/patch volume: 6.918918918918919
    patch 396 high interf/patch volume: 5.74025974025974
    patch 397 high interf/patch volume: 7.033333333333333
    patch 398 high interf/patch volume: 7.724867724867724
    patch 399 high interf/patch volume: 6.721311475409837
    patch 400 high interf/patch volume: 5.358208955223881
    patch 401 high interf/patch volume: 7
    patch 402 high interf/patch volume: 7.125
    patch 403 high interf/patch volume: 5.341085271317829
    patch 404 high interf/patch volume: 7.325443786982248
    patch 405 high interf/patch volume: 6.941176470588236
    patch 406 high interf/patch volume: 6.7593984962406015
    patch 407 high interf/patch volume: 5.749999999999999
    patch 408 high interf/patch volume: 5.779411764705881
    patch 409 high interf/patch volume: 7.7103825136612025
    patch 410 high interf/patch volume: 7
    patch 411 high interf/patch volume: 7.081081081081082
    patch 412 high interf/patch volume: 6.918918918918919
    patch 413 high interf/patch volume: 6.408163265306121
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999803614,-5916.999999839455,-5916.999999974204)
    sum a = (1.0853208934867575e-08,2.252240280068308e-07,3.575655804408627e-08)
    sum e = 14792.499999760741
    sum de = -2.718842668876162e-07
Info: CFL hydro = 6.632079209716519 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 6.632079209716519 cfl multiplier : 0.9999999403111003           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 4.6926e+03 | 5917 |    113 | 1.261e+00 | 0.0% |   2.0% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 285.50501507006396 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 42                                                      [SPH][rank=0]
Info: time since start : 1635.369107232 (s)                                           [SPH][rank=0]
Info: collected : 113 patches                                              [PatchScheduler][rank=0]
---------------- t = 4, dt = 0.10000000000000053 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5916 min = 5916                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5916 min = 5916                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 120
    min = 5916
    max = 5916
    avg = 5916
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.81 us   (0.1%)
   patch tree reduce : 25.52 us   (0.2%)
   gen split merge   : 3.00 us    (0.0%)
   split / merge op  : 1/3
   apply split merge : 10.83 ms   (89.2%)
   LB compute        : 807.03 us  (6.6%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (0.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (14.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 311 high interf/patch volume: 4.707692307692308
    patch 313 high interf/patch volume: 4.8809523809523805
    patch 314 high interf/patch volume: 4.615384615384615
    patch 315 high interf/patch volume: 6.142857142857143
    patch 337 high interf/patch volume: 6.392857142857143
    patch 338 high interf/patch volume: 6.152941176470588
    patch 339 high interf/patch volume: 6.778625954198474
    patch 340 high interf/patch volume: 6.450980392156862
    patch 341 high interf/patch volume: 6.894039735099336
    patch 342 high interf/patch volume: 6.772151898734178
    patch 343 high interf/patch volume: 8.222222222222221
    patch 365 high interf/patch volume: 7.256756756756757
    patch 366 high interf/patch volume: 7.471264367816093
    patch 367 high interf/patch volume: 7.222222222222223
    patch 368 high interf/patch volume: 7.267605633802816
    patch 369 high interf/patch volume: 7.333333333333333
    patch 370 high interf/patch volume: 7.555555555555557
    patch 372 high interf/patch volume: 7.333333333333332
    patch 373 high interf/patch volume: 7.3235294117647065
    patch 374 high interf/patch volume: 7
    patch 375 high interf/patch volume: 8.511904761904761
    patch 376 high interf/patch volume: 7.432989690721651
    patch 377 high interf/patch volume: 7.705357142857144
    patch 378 high interf/patch volume: 7.5
    patch 379 high interf/patch volume: 7.181818181818182
    patch 380 high interf/patch volume: 8.502857142857142
    patch 381 high interf/patch volume: 7.308510638297872
    patch 382 high interf/patch volume: 6.818181818181818
    patch 384 high interf/patch volume: 7.21978021978022
    patch 385 high interf/patch volume: 7.285714285714286
    patch 386 high interf/patch volume: 8.185393258426966
    patch 387 high interf/patch volume: 7.066666666666667
    patch 388 high interf/patch volume: 7.277777777777778
    patch 389 high interf/patch volume: 7
    patch 390 high interf/patch volume: 7.164835164835165
    patch 391 high interf/patch volume: 7
    patch 392 high interf/patch volume: 8
    patch 393 high interf/patch volume: 7.125
    patch 394 high interf/patch volume: 6.736842105263158
    patch 395 high interf/patch volume: 7.166666666666667
    patch 396 high interf/patch volume: 7.07865168539326
    patch 397 high interf/patch volume: 7.422222222222222
    patch 398 high interf/patch volume: 8.71604938271605
    patch 399 high interf/patch volume: 7.383333333333333
    patch 400 high interf/patch volume: 6.42483660130719
    patch 401 high interf/patch volume: 7
    patch 402 high interf/patch volume: 6.980000000000001
    patch 403 high interf/patch volume: 6.614973262032087
    patch 404 high interf/patch volume: 8.226415094339623
    patch 405 high interf/patch volume: 7.155172413793103
    patch 406 high interf/patch volume: 7.220588235294117
    patch 407 high interf/patch volume: 6.893491124260354
    patch 408 high interf/patch volume: 6.697142857142858
    patch 409 high interf/patch volume: 8.343023255813952
    patch 410 high interf/patch volume: 7
    patch 411 high interf/patch volume: 7.039999999999999
    patch 412 high interf/patch volume: 6.9799999999999995
    patch 413 high interf/patch volume: 6.936363636363636
    patch 414 high interf/patch volume: 5.99074074074074
    patch 415 high interf/patch volume: 5.981818181818181
    patch 416 high interf/patch volume: 6.5060975609756095
    patch 417 high interf/patch volume: 6.387596899224806
    patch 418 high interf/patch volume: 6.740740740740742
    patch 419 high interf/patch volume: 6.569948186528497
    patch 420 high interf/patch volume: 8.383647798742139
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999801984,-5916.999999805668,-5916.9999999688425)
    sum a = (1.2576917938321e-07,1.5876593644088416e-11,-1.0730982330101871e-08)
    sum e = 14792.499999719816
    sum de = -1.150557599557651e-07
Info: CFL hydro = 6.602332010945748 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 6.602332010945748 cfl multiplier : 0.9999999602074002           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 4.1281e+03 | 5917 |     99 | 1.433e+00 | 0.0% |   2.3% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 251.16051261341693 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 43                                                      [SPH][rank=0]
Info: time since start : 1637.6213785660002 (s)                                       [SPH][rank=0]
Info: collected : 99 patches                                               [PatchScheduler][rank=0]
---------------- t = 4.1000000000000005, dt = 0.09999999999999964 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5917 min = 5917                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5917 min = 5917                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 99
    min = 5917
    max = 5917
    avg = 5917
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.63 us   (1.2%)
   patch tree reduce : 19.46 us   (2.3%)
   gen split merge   : 2.63 us    (0.3%)
   split / merge op  : 0/3
   apply split merge : 1062.00 ns (0.1%)
   LB compute        : 557.95 us  (65.4%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.37 us    (19.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 311 high interf/patch volume: 4.738636363636364
    patch 313 high interf/patch volume: 4.523809523809524
    patch 314 high interf/patch volume: 4.625615763546798
    patch 315 high interf/patch volume: 4.866666666666666
    patch 337 high interf/patch volume: 5.737704918032787
    patch 338 high interf/patch volume: 5.790322580645162
    patch 339 high interf/patch volume: 6.635714285714286
    patch 340 high interf/patch volume: 5.661290322580646
    patch 341 high interf/patch volume: 6.2198581560283674
    patch 342 high interf/patch volume: 6.321917808219177
    patch 343 high interf/patch volume: 7.208860759493673
    patch 365 high interf/patch volume: 6.903225806451614
    patch 366 high interf/patch volume: 7.08
    patch 368 high interf/patch volume: 7.115384615384615
    patch 372 high interf/patch volume: 7
    patch 373 high interf/patch volume: 7.294117647058824
    patch 375 high interf/patch volume: 8.010695187165775
    patch 376 high interf/patch volume: 7.366666666666667
    patch 377 high interf/patch volume: 7.811320754716981
    patch 379 high interf/patch volume: 6.947368421052631
    patch 380 high interf/patch volume: 7.788235294117645
    patch 381 high interf/patch volume: 7.481481481481482
    patch 382 high interf/patch volume: 6.722222222222223
    patch 384 high interf/patch volume: 7.333333333333333
    patch 386 high interf/patch volume: 7.81111111111111
    patch 387 high interf/patch volume: 6.9375
    patch 388 high interf/patch volume: 7.333333333333335
    patch 389 high interf/patch volume: 7.0625
    patch 390 high interf/patch volume: 7.19047619047619
    patch 393 high interf/patch volume: 7.083333333333333
    patch 394 high interf/patch volume: 6.698113207547169
    patch 395 high interf/patch volume: 7.512820512820513
    patch 396 high interf/patch volume: 6.478021978021977
    patch 397 high interf/patch volume: 7.4523809523809526
    patch 398 high interf/patch volume: 8.401234567901236
    patch 399 high interf/patch volume: 7.957894736842105
    patch 400 high interf/patch volume: 6.622093023255813
    patch 401 high interf/patch volume: 7
    patch 402 high interf/patch volume: 7.648648648648648
    patch 403 high interf/patch volume: 6.591397849462366
    patch 404 high interf/patch volume: 8.472222222222223
    patch 405 high interf/patch volume: 7.7105263157894735
    patch 406 high interf/patch volume: 8.126315789473683
    patch 407 high interf/patch volume: 6.502890173410404
    patch 408 high interf/patch volume: 6.579268292682928
    patch 409 high interf/patch volume: 8.21264367816092
    patch 410 high interf/patch volume: 7.076923076923077
    patch 411 high interf/patch volume: 7.363636363636363
    patch 412 high interf/patch volume: 7.2857142857142865
    patch 413 high interf/patch volume: 8.11111111111111
    patch 414 high interf/patch volume: 5.433121019108281
    patch 415 high interf/patch volume: 5.391891891891893
    patch 416 high interf/patch volume: 6.5956284153005456
    patch 417 high interf/patch volume: 5.331395348837209
    patch 418 high interf/patch volume: 6.2270270270270265
    patch 419 high interf/patch volume: 6.261904761904761
    patch 420 high interf/patch volume: 8.14102564102564
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999783662,-5916.999999816929,-5916.9999999722395)
    sum a = (2.2992303732299594e-08,3.2195926869397015e-08,1.5643560293547955e-09)
    sum e = 14792.499999716003
    sum de = -5.675236332960653e-08
Info: CFL hydro = 6.54715831752291 sink sink = inf                                    [SPH][rank=0]
Info: cfl dt = 6.54715831752291 cfl multiplier : 0.9999999734716001            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 4.5445e+03 | 5917 |     78 | 1.302e+00 | 0.0% |   2.0% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 276.49348240615535 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 44                                                      [SPH][rank=0]
Info: time since start : 1639.6979656530002 (s)                                       [SPH][rank=0]
Info: collected : 78 patches                                               [PatchScheduler][rank=0]
---------------- t = 4.2, dt = 0.09999999999999964 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5917 min = 5917                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5917 min = 5917                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 78
    min = 5917
    max = 5917
    avg = 5917
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.25 us   (1.4%)
   patch tree reduce : 15.23 us   (2.1%)
   gen split merge   : 1273.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.1%)
   LB compute        : 637.53 us  (86.0%)
   LB move op cnt    : 0
   LB apply          : 5.30 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.64 us    (20.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 311 high interf/patch volume: 4.226890756302521
    patch 313 high interf/patch volume: 4.319218241042346
    patch 314 high interf/patch volume: 4.269541778975741
    patch 315 high interf/patch volume: 4.525316455696202
    patch 337 high interf/patch volume: 5.230769230769232
    patch 338 high interf/patch volume: 5.5859375
    patch 339 high interf/patch volume: 6.521739130434782
    patch 340 high interf/patch volume: 5.7304964539007095
    patch 341 high interf/patch volume: 6.564516129032258
    patch 342 high interf/patch volume: 6.731481481481481
    patch 343 high interf/patch volume: 7.645161290322578
    patch 365 high interf/patch volume: 7
    patch 366 high interf/patch volume: 7
    patch 368 high interf/patch volume: 7
    patch 372 high interf/patch volume: 7.5
    patch 373 high interf/patch volume: 7.2
    patch 375 high interf/patch volume: 8.094339622641511
    patch 376 high interf/patch volume: 8.058823529411764
    patch 377 high interf/patch volume: 8.055555555555555
    patch 379 high interf/patch volume: 7.166666666666667
    patch 380 high interf/patch volume: 7.956249999999998
    patch 381 high interf/patch volume: 8
    patch 382 high interf/patch volume: 7.2
    patch 384 high interf/patch volume: 7.652173913043478
    patch 386 high interf/patch volume: 7.882758620689655
    patch 387 high interf/patch volume: 7.285714285714286
    patch 388 high interf/patch volume: 7.705882352941177
    patch 389 high interf/patch volume: 7
    patch 390 high interf/patch volume: 7.888888888888889
    patch 393 high interf/patch volume: 7
    patch 394 high interf/patch volume: 6.214689265536723
    patch 395 high interf/patch volume: 7.352941176470588
    patch 396 high interf/patch volume: 6.293478260869565
    patch 397 high interf/patch volume: 7.4
    patch 398 high interf/patch volume: 8.233695652173914
    patch 399 high interf/patch volume: 8.51388888888889
    patch 400 high interf/patch volume: 6.3924050632911396
    patch 401 high interf/patch volume: 7.200000000000001
    patch 402 high interf/patch volume: 7.285714285714285
    patch 403 high interf/patch volume: 6.856287425149702
    patch 404 high interf/patch volume: 8.613095238095239
    patch 405 high interf/patch volume: 7.642857142857143
    patch 406 high interf/patch volume: 8.538461538461538
    patch 407 high interf/patch volume: 6.825581395348837
    patch 408 high interf/patch volume: 6.709302325581396
    patch 409 high interf/patch volume: 8.51269035532995
    patch 410 high interf/patch volume: 7.625
    patch 411 high interf/patch volume: 7.625
    patch 412 high interf/patch volume: 7.59375
    patch 413 high interf/patch volume: 8.796296296296296
    patch 414 high interf/patch volume: 5.093406593406593
    patch 415 high interf/patch volume: 5.065217391304349
    patch 416 high interf/patch volume: 5.9523809523809526
    patch 417 high interf/patch volume: 5.123655913978494
    patch 418 high interf/patch volume: 6.22346368715084
    patch 419 high interf/patch volume: 6.308988764044944
    patch 420 high interf/patch volume: 8.292397660818713
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999786502,-5916.9999998121,-5916.999999971468)
    sum a = (-9.091771034738439e-09,-3.7961370336900245e-09,-6.66963091002836e-11)
    sum e = 14792.499999713094
    sum de = 1.2954717030380324e-08
Info: CFL hydro = 6.492942720097053 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 6.492942720097053 cfl multiplier : 0.9999999823144              [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 4.7658e+03 | 5917 |     78 | 1.242e+00 | 0.0% |   2.7% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 289.96019470746427 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 45                                                      [SPH][rank=0]
Info: time since start : 1641.7122984240002 (s)                                       [SPH][rank=0]
Info: collected : 78 patches                                               [PatchScheduler][rank=0]
---------------- t = 4.3, dt = 0.10000000000000053 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5917 min = 5917                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5917 min = 5917                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 78
    min = 5917
    max = 5917
    avg = 5917
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.27 us   (1.4%)
   patch tree reduce : 15.04 us   (2.1%)
   gen split merge   : 1243.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.1%)
   LB compute        : 641.65 us  (87.6%)
   LB move op cnt    : 0
   LB apply          : 5.21 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.43 us    (19.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 309 high interf/patch volume: 4.25
    patch 310 high interf/patch volume: 4.15
    patch 311 high interf/patch volume: 3.7321100917431194
    patch 312 high interf/patch volume: 4.368421052631579
    patch 313 high interf/patch volume: 3.7092436974789917
    patch 314 high interf/patch volume: 3.87476979742173
    patch 315 high interf/patch volume: 5.207100591715975
    patch 337 high interf/patch volume: 5.0256410256410255
    patch 338 high interf/patch volume: 5.88888888888889
    patch 339 high interf/patch volume: 5.804347826086956
    patch 340 high interf/patch volume: 5.4393939393939394
    patch 341 high interf/patch volume: 5.655172413793102
    patch 342 high interf/patch volume: 5.513513513513513
    patch 343 high interf/patch volume: 6.515151515151515
    patch 375 high interf/patch volume: 6.806722689075631
    patch 380 high interf/patch volume: 6.84033613445378
    patch 384 high interf/patch volume: 7
    patch 386 high interf/patch volume: 6.575757575757576
    patch 394 high interf/patch volume: 5.697916666666666
    patch 395 high interf/patch volume: 6
    patch 396 high interf/patch volume: 5.61081081081081
    patch 397 high interf/patch volume: 6
    patch 398 high interf/patch volume: 7.221698113207549
    patch 399 high interf/patch volume: 6.888888888888889
    patch 400 high interf/patch volume: 6.365269461077843
    patch 401 high interf/patch volume: 7
    patch 402 high interf/patch volume: 7.666666666666666
    patch 403 high interf/patch volume: 6.308139534883721
    patch 404 high interf/patch volume: 7.724324324324324
    patch 405 high interf/patch volume: 7
    patch 406 high interf/patch volume: 8.083333333333332
    patch 407 high interf/patch volume: 6.112582781456954
    patch 408 high interf/patch volume: 6
    patch 409 high interf/patch volume: 7.726256983240224
    patch 410 high interf/patch volume: 7.333333333333333
    patch 411 high interf/patch volume: 7.133333333333333
    patch 412 high interf/patch volume: 6.857142857142857
    patch 413 high interf/patch volume: 7.392857142857142
    patch 414 high interf/patch volume: 4.9542857142857155
    patch 415 high interf/patch volume: 5.282722513089006
    patch 416 high interf/patch volume: 6.010526315789474
    patch 417 high interf/patch volume: 5.241176470588235
    patch 418 high interf/patch volume: 5.945454545454545
    patch 419 high interf/patch volume: 6.237288135593219
    patch 420 high interf/patch volume: 8.380116959064328
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999789014,-5916.99999981428,-5916.999999971559)
    sum a = (-4.936213165580929e-09,5.765371938439536e-10,5.526423878280871e-09)
    sum e = 14792.499999717722
    sum de = -1.1677355718698664e-09
Info: CFL hydro = 6.439661382033799 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 6.439661382033799 cfl multiplier : 0.9999999882095999           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9947e+03 | 5917 |     78 | 9.870e-01 | 0.0% |   2.6% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 364.7296248450468 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 46                                                      [SPH][rank=0]
Info: time since start : 1643.3814504910001 (s)                                       [SPH][rank=0]
Info: collected : 78 patches                                               [PatchScheduler][rank=0]
---------------- t = 4.4, dt = 0.09999999999999964 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5906 min = 5906                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5906 min = 5906                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 99
    min = 5906
    max = 5906
    avg = 5906
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.36 us   (0.1%)
   patch tree reduce : 16.07 us   (0.1%)
   gen split merge   : 2.89 us    (0.0%)
   split / merge op  : 3/1
   apply split merge : 17.20 ms   (92.2%)
   LB compute        : 787.02 us  (4.2%)
   LB move op cnt    : 0
   LB apply          : 21.11 us   (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (23.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7
    patch 309 high interf/patch volume: 4.813953488372093
    patch 310 high interf/patch volume: 4.618421052631579
    patch 312 high interf/patch volume: 4.676470588235294
    patch 315 high interf/patch volume: 5.180232558139534
    patch 337 high interf/patch volume: 5.286885245901639
    patch 338 high interf/patch volume: 5.30827067669173
    patch 339 high interf/patch volume: 7.058823529411765
    patch 340 high interf/patch volume: 4.993197278911565
    patch 341 high interf/patch volume: 6.91891891891892
    patch 342 high interf/patch volume: 7.125000000000001
    patch 343 high interf/patch volume: 7
    patch 375 high interf/patch volume: 6.8
    patch 380 high interf/patch volume: 6.75
    patch 386 high interf/patch volume: 6.859999999999999
    patch 394 high interf/patch volume: 5.751937984496125
    patch 396 high interf/patch volume: 6
    patch 398 high interf/patch volume: 6.337931034482759
    patch 400 high interf/patch volume: 5.987500000000002
    patch 403 high interf/patch volume: 5.953020134228188
    patch 404 high interf/patch volume: 6.5418994413407825
    patch 407 high interf/patch volume: 5.952054794520548
    patch 408 high interf/patch volume: 5.634328358208956
    patch 409 high interf/patch volume: 6.291139240506329
    patch 414 high interf/patch volume: 5.772486772486771
    patch 415 high interf/patch volume: 5.497041420118344
    patch 416 high interf/patch volume: 6.7397959183673475
    patch 417 high interf/patch volume: 5.754098360655738
    patch 418 high interf/patch volume: 7.038095238095238
    patch 419 high interf/patch volume: 6.727272727272726
    patch 420 high interf/patch volume: 8.147465437788018
    patch 424 high interf/patch volume: 3.6461538461538456
    patch 425 high interf/patch volume: 5.205479452054794
    patch 426 high interf/patch volume: 5.4222222222222225
    patch 427 high interf/patch volume: 7
    patch 429 high interf/patch volume: 3.8964941569282145
    patch 430 high interf/patch volume: 5.318181818181818
    patch 433 high interf/patch volume: 5.416666666666666
    patch 434 high interf/patch volume: 7
    patch 435 high interf/patch volume: 3.821428571428571
    patch 437 high interf/patch volume: 5.297297297297297
    patch 439 high interf/patch volume: 5.10958904109589
    patch 441 high interf/patch volume: 7
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.9999997893,-5916.999999814003,-5916.999999970724)
    sum a = (4.502733255695723e-12,2.1773800823205597e-07,1.4855931155383084e-12)
    sum e = 14792.49999971673
    sum de = -2.1779502754640202e-07
Info: CFL hydro = 6.387291245576427 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 6.387291245576427 cfl multiplier : 0.9999999921397332           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9370e+03 | 5917 |     92 | 9.966e-01 | 0.0% |   1.9% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 361.2157387549058 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 47                                                      [SPH][rank=0]
Info: time since start : 1645.0542452920001 (s)                                       [SPH][rank=0]
Info: collected : 92 patches                                               [PatchScheduler][rank=0]
---------------- t = 4.5, dt = 0.10000000000000053 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5905 min = 5905                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5905 min = 5905                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 113
    min = 5905
    max = 5905
    avg = 5905
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.52 us   (0.1%)
   patch tree reduce : 17.48 us   (0.1%)
   gen split merge   : 2.77 us    (0.0%)
   split / merge op  : 3/0
   apply split merge : 17.06 ms   (94.8%)
   LB compute        : 824.27 us  (4.6%)
   LB move op cnt    : 0
   LB apply          : 4.95 us    (0.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (20.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.166666666666666
    patch 309 high interf/patch volume: 5.707920792079207
    patch 310 high interf/patch volume: 5.636363636363636
    patch 312 high interf/patch volume: 5.962962962962962
    patch 315 high interf/patch volume: 7.773584905660378
    patch 337 high interf/patch volume: 6.4833333333333325
    patch 338 high interf/patch volume: 6.345588235294118
    patch 339 high interf/patch volume: 7.666666666666667
    patch 340 high interf/patch volume: 6
    patch 341 high interf/patch volume: 7.2857142857142865
    patch 342 high interf/patch volume: 8
    patch 375 high interf/patch volume: 7.222222222222221
    patch 380 high interf/patch volume: 7.333333333333333
    patch 386 high interf/patch volume: 7.555555555555555
    patch 394 high interf/patch volume: 7.134020618556702
    patch 396 high interf/patch volume: 6.9787234042553195
    patch 398 high interf/patch volume: 7.256756756756756
    patch 400 high interf/patch volume: 7.446428571428571
    patch 403 high interf/patch volume: 6.972222222222222
    patch 404 high interf/patch volume: 7.471264367816093
    patch 407 high interf/patch volume: 6.912087912087912
    patch 408 high interf/patch volume: 6.835164835164836
    patch 409 high interf/patch volume: 7.267605633802816
    patch 414 high interf/patch volume: 7.88888888888889
    patch 415 high interf/patch volume: 7.509433962264151
    patch 416 high interf/patch volume: 8.136904761904763
    patch 417 high interf/patch volume: 7.563953488372093
    patch 418 high interf/patch volume: 8.154285714285715
    patch 419 high interf/patch volume: 7.837078651685394
    patch 420 high interf/patch volume: 8.222222222222223
    patch 424 high interf/patch volume: 6.153846153846153
    patch 425 high interf/patch volume: 6.333333333333333
    patch 426 high interf/patch volume: 6.309523809523809
    patch 427 high interf/patch volume: 7
    patch 429 high interf/patch volume: 6.523809523809524
    patch 430 high interf/patch volume: 6.589743589743589
    patch 433 high interf/patch volume: 6.216867469879517
    patch 435 high interf/patch volume: 6.444444444444445
    patch 437 high interf/patch volume: 6.16504854368932
    patch 439 high interf/patch volume: 5.952941176470588
    patch 441 high interf/patch volume: 7
    patch 442 high interf/patch volume: 6.7142857142857135
    patch 443 high interf/patch volume: 6.798941798941798
    patch 444 high interf/patch volume: 6.735955056179774
    patch 445 high interf/patch volume: 6.8
    patch 446 high interf/patch volume: 7
    patch 447 high interf/patch volume: 6.662721893491124
    patch 448 high interf/patch volume: 6.887417218543046
    patch 449 high interf/patch volume: 6.3076923076923075
    patch 450 high interf/patch volume: 6.7333333333333325
    patch 451 high interf/patch volume: 6.857142857142857
    patch 452 high interf/patch volume: 6.695121951219512
    patch 453 high interf/patch volume: 6.499999999999999
    patch 454 high interf/patch volume: 6.398692810457517
    patch 455 high interf/patch volume: 6.85496183206107
    patch 456 high interf/patch volume: 6.507772020725389
    patch 457 high interf/patch volume: 6
    patch 458 high interf/patch volume: 6.18716577540107
    patch 459 high interf/patch volume: 6
    patch 460 high interf/patch volume: 6.1657142857142855
    patch 462 high interf/patch volume: 6.443037974683545
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999789052,-5916.999999781372,-5916.999999971003)
    sum a = (1.2364444278135066e-07,2.279157852030922e-11,-1.0671740612727687e-08)
    sum e = 14792.499999683967
    sum de = -1.1299707319400304e-07
Info: CFL hydro = 6.335810000204363 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 6.335810000204363 cfl multiplier : 0.9999999947598223           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 4.3539e+03 | 5917 |    113 | 1.359e+00 | 0.0% |   2.5% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 264.9009131180847 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 48                                                      [SPH][rank=0]
Info: time since start : 1647.2251296010002 (s)                                       [SPH][rank=0]
Info: collected : 113 patches                                              [PatchScheduler][rank=0]
---------------- t = 4.6000000000000005, dt = 0.09999999999999964 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5917 min = 5917                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5917 min = 5917                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 113
    min = 5917
    max = 5917
    avg = 5917
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.51 us   (0.4%)
   patch tree reduce : 18.86 us   (0.6%)
   gen split merge   : 2.69 us    (0.1%)
   split / merge op  : 0/3
   apply split merge : 882.00 ns  (0.0%)
   LB compute        : 608.81 us  (20.6%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (20.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.539823008849558
    patch 309 high interf/patch volume: 5.038461538461537
    patch 310 high interf/patch volume: 4.839762611275965
    patch 312 high interf/patch volume: 5.056657223796034
    patch 315 high interf/patch volume: 7.903846153846154
    patch 337 high interf/patch volume: 7.031578947368422
    patch 338 high interf/patch volume: 7.178947368421053
    patch 340 high interf/patch volume: 7.2592592592592595
    patch 394 high interf/patch volume: 6.983333333333334
    patch 396 high interf/patch volume: 7.0740740740740735
    patch 398 high interf/patch volume: 6.903225806451614
    patch 400 high interf/patch volume: 7.377358490566038
    patch 403 high interf/patch volume: 6.944444444444445
    patch 404 high interf/patch volume: 7.08
    patch 407 high interf/patch volume: 7
    patch 408 high interf/patch volume: 6.825396825396825
    patch 409 high interf/patch volume: 7.115384615384614
    patch 414 high interf/patch volume: 7.709876543209877
    patch 415 high interf/patch volume: 7.772222222222223
    patch 416 high interf/patch volume: 7.6524064171123
    patch 417 high interf/patch volume: 7.637931034482759
    patch 418 high interf/patch volume: 7.488235294117646
    patch 419 high interf/patch volume: 7.488888888888889
    patch 420 high interf/patch volume: 7.208860759493671
    patch 424 high interf/patch volume: 5.958333333333334
    patch 425 high interf/patch volume: 6.241379310344828
    patch 426 high interf/patch volume: 6.444444444444444
    patch 429 high interf/patch volume: 5.945454545454545
    patch 430 high interf/patch volume: 6.393442622950819
    patch 433 high interf/patch volume: 6.516129032258064
    patch 435 high interf/patch volume: 5.970149253731344
    patch 437 high interf/patch volume: 6.537037037037038
    patch 439 high interf/patch volume: 6.327586206896551
    patch 442 high interf/patch volume: 6.238095238095237
    patch 443 high interf/patch volume: 6.935135135135136
    patch 444 high interf/patch volume: 6.653846153846152
    patch 445 high interf/patch volume: 6.269230769230769
    patch 446 high interf/patch volume: 7.25
    patch 447 high interf/patch volume: 6.676300578034681
    patch 448 high interf/patch volume: 6.6382978723404245
    patch 449 high interf/patch volume: 6.310344827586206
    patch 450 high interf/patch volume: 6.060606060606061
    patch 451 high interf/patch volume: 7.222222222222222
    patch 452 high interf/patch volume: 6.9016393442622945
    patch 453 high interf/patch volume: 6.584905660377358
    patch 454 high interf/patch volume: 6.377906976744185
    patch 455 high interf/patch volume: 6.807142857142857
    patch 456 high interf/patch volume: 6.613095238095238
    patch 457 high interf/patch volume: 5.870967741935484
    patch 458 high interf/patch volume: 6.392473118279569
    patch 459 high interf/patch volume: 6.03125
    patch 460 high interf/patch volume: 6.390243902439025
    patch 461 high interf/patch volume: 7.000000000000001
    patch 462 high interf/patch volume: 6.452054794520548
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999770507,-5916.999999792256,-5916.999999972602)
    sum a = (2.1899262233476824e-08,3.0782725130625715e-08,1.5125816974805029e-09)
    sum e = 14792.49999967774
    sum de = -5.419418189363777e-08
Info: CFL hydro = 6.285196053946535 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 6.285196053946535 cfl multiplier : 0.9999999965065482           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 4.8033e+03 | 5917 |     92 | 1.232e+00 | 0.0% |   2.0% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 292.2411302314649 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 49                                                      [SPH][rank=0]
Info: time since start : 1649.268948311 (s)                                           [SPH][rank=0]
Info: collected : 92 patches                                               [PatchScheduler][rank=0]
---------------- t = 4.7, dt = 0.10000000000000053 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5917 min = 5917                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5917 min = 5917                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 92
    min = 5917
    max = 5917
    avg = 5917
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.33 us   (1.4%)
   patch tree reduce : 16.05 us   (2.2%)
   gen split merge   : 1523.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.1%)
   LB compute        : 612.23 us  (85.8%)
   LB move op cnt    : 0
   LB apply          : 4.90 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (20.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.5450643776824036
    patch 309 high interf/patch volume: 4.263598326359833
    patch 310 high interf/patch volume: 4.138004246284502
    patch 312 high interf/patch volume: 4.531914893617022
    patch 315 high interf/patch volume: 8.11111111111111
    patch 337 high interf/patch volume: 7.513888888888888
    patch 338 high interf/patch volume: 7.569230769230769
    patch 340 high interf/patch volume: 7.722222222222223
    patch 394 high interf/patch volume: 7.529411764705882
    patch 396 high interf/patch volume: 7.347826086956523
    patch 398 high interf/patch volume: 7
    patch 400 high interf/patch volume: 7.444444444444443
    patch 403 high interf/patch volume: 7.058823529411765
    patch 404 high interf/patch volume: 7
    patch 407 high interf/patch volume: 7.0434782608695645
    patch 408 high interf/patch volume: 7.333333333333334
    patch 409 high interf/patch volume: 7
    patch 414 high interf/patch volume: 7.657608695652176
    patch 415 high interf/patch volume: 7.863095238095239
    patch 416 high interf/patch volume: 7.685534591194968
    patch 417 high interf/patch volume: 7.7969543147208125
    patch 418 high interf/patch volume: 7.562499999999999
    patch 419 high interf/patch volume: 7.5103448275862075
    patch 420 high interf/patch volume: 7.645161290322581
    patch 424 high interf/patch volume: 5.415730337078651
    patch 425 high interf/patch volume: 6.3
    patch 426 high interf/patch volume: 6.151515151515151
    patch 429 high interf/patch volume: 5.670454545454545
    patch 430 high interf/patch volume: 6.555555555555556
    patch 433 high interf/patch volume: 6.378378378378378
    patch 435 high interf/patch volume: 5.371428571428572
    patch 437 high interf/patch volume: 6.6000000000000005
    patch 439 high interf/patch volume: 6.714285714285714
    patch 442 high interf/patch volume: 6.032258064516129
    patch 443 high interf/patch volume: 6.966480446927374
    patch 444 high interf/patch volume: 6.586956521739131
    patch 445 high interf/patch volume: 5.96969696969697
    patch 446 high interf/patch volume: 7.111111111111111
    patch 447 high interf/patch volume: 6.720930232558141
    patch 448 high interf/patch volume: 7.056451612903226
    patch 449 high interf/patch volume: 5.695652173913044
    patch 450 high interf/patch volume: 5.475
    patch 451 high interf/patch volume: 7.142857142857142
    patch 452 high interf/patch volume: 6.46031746031746
    patch 453 high interf/patch volume: 6.32768361581921
    patch 454 high interf/patch volume: 6.215189873417721
    patch 455 high interf/patch volume: 6.756521739130434
    patch 456 high interf/patch volume: 6.870786516853933
    patch 457 high interf/patch volume: 5.857142857142858
    patch 458 high interf/patch volume: 6.736526946107784
    patch 459 high interf/patch volume: 5.627906976744186
    patch 460 high interf/patch volume: 6.703488372093023
    patch 461 high interf/patch volume: 7
    patch 462 high interf/patch volume: 7.01851851851852
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999773405,-5916.999999787642,-5916.999999971844)
    sum a = (-8.515419360095866e-09,-3.5697115072924612e-09,-6.684461578004841e-11)
    sum e = 14792.499999675087
    sum de = 1.2152117406100116e-08
Info: CFL hydro = 6.235428504754127 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 6.235428504754127 cfl multiplier : 0.9999999976710322           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.1143e+03 | 5917 |     92 | 1.157e+00 | 0.0% |   2.2% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 311.16142514525893 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 50                                                      [SPH][rank=0]
Info: time since start : 1651.2644785080001 (s)                                       [SPH][rank=0]
Info: collected : 92 patches                                               [PatchScheduler][rank=0]
---------------- t = 4.800000000000001, dt = 0.09999999999999964 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5917 min = 5917                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5917 min = 5917                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 92
    min = 5917
    max = 5917
    avg = 5917
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.00 us   (1.6%)
   patch tree reduce : 18.45 us   (2.6%)
   gen split merge   : 1623.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.2%)
   LB compute        : 605.95 us  (86.3%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.50 us    (18.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.370192307692308
    patch 309 high interf/patch volume: 3.5032573289902285
    patch 310 high interf/patch volume: 3.648514851485149
    patch 312 high interf/patch volume: 3.495667244367418
    patch 315 high interf/patch volume: 8.561403508771928
    patch 337 high interf/patch volume: 6.571428571428571
    patch 338 high interf/patch volume: 7.25
    patch 340 high interf/patch volume: 6.9642857142857135
    patch 396 high interf/patch volume: 7
    patch 407 high interf/patch volume: 7
    patch 414 high interf/patch volume: 7.594202898550724
    patch 415 high interf/patch volume: 7.48108108108108
    patch 416 high interf/patch volume: 6.991596638655461
    patch 417 high interf/patch volume: 7.463687150837988
    patch 418 high interf/patch volume: 7.264957264957266
    patch 419 high interf/patch volume: 6.686868686868686
    patch 420 high interf/patch volume: 6.696969696969697
    patch 424 high interf/patch volume: 4.9322033898305095
    patch 425 high interf/patch volume: 5.625
    patch 426 high interf/patch volume: 6.666666666666667
    patch 429 high interf/patch volume: 4.969465648854961
    patch 430 high interf/patch volume: 5.500000000000001
    patch 433 high interf/patch volume: 6.4
    patch 435 high interf/patch volume: 5.1328125
    patch 437 high interf/patch volume: 6.25
    patch 439 high interf/patch volume: 6.214285714285714
    patch 442 high interf/patch volume: 5.745098039215685
    patch 443 high interf/patch volume: 6.842424242424243
    patch 444 high interf/patch volume: 6.683333333333333
    patch 445 high interf/patch volume: 5.434782608695652
    patch 446 high interf/patch volume: 7
    patch 447 high interf/patch volume: 6.33112582781457
    patch 448 high interf/patch volume: 7.264367816091953
    patch 449 high interf/patch volume: 5.611111111111112
    patch 450 high interf/patch volume: 5.487804878048781
    patch 451 high interf/patch volume: 7
    patch 452 high interf/patch volume: 6.7210526315789485
    patch 453 high interf/patch volume: 6.427807486631017
    patch 454 high interf/patch volume: 6.413173652694613
    patch 455 high interf/patch volume: 6.923913043478261
    patch 456 high interf/patch volume: 7.203389830508474
    patch 457 high interf/patch volume: 5.875
    patch 458 high interf/patch volume: 6.779069767441861
    patch 459 high interf/patch volume: 5.5777777777777775
    patch 460 high interf/patch volume: 6.472392638036809
    patch 461 high interf/patch volume: 7.166666666666667
    patch 462 high interf/patch volume: 6.918918918918919
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999775776,-5916.99999978971,-5916.999999971928)
    sum a = (1.7780915628762273e-17,1.3010426069826053e-18,-1.5829351718288365e-17)
    sum e = 14792.499999679452
    sum de = 6.071532165918825e-18
Info: CFL hydro = 6.186487113298496 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 6.186487113298496 cfl multiplier : 0.9999999984473549           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6778e+03 | 5917 |     92 | 1.042e+00 | 0.0% |   2.0% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 345.44832441873416 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 51                                                      [SPH][rank=0]
Info: time since start : 1653.039868607 (s)                                           [SPH][rank=0]
Info: collected : 92 patches                                               [PatchScheduler][rank=0]
---------------- t = 4.9, dt = 0.09999999999999964 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5904 min = 5904                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5904 min = 5904                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 113
    min = 5904
    max = 5904
    avg = 5904
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.96 us   (0.1%)
   patch tree reduce : 18.30 us   (0.2%)
   gen split merge   : 3.42 us    (0.0%)
   split / merge op  : 3/3
   apply split merge : 9.72 ms    (80.0%)
   LB compute        : 850.90 us  (7.0%)
   LB move op cnt    : 0
   LB apply          : 4.77 us    (0.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (25.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.790104947526237
    patch 315 high interf/patch volume: 8.24884792626728
    patch 414 high interf/patch volume: 6.255172413793105
    patch 415 high interf/patch volume: 6.46927374301676
    patch 416 high interf/patch volume: 6.75
    patch 417 high interf/patch volume: 6.170886075949367
    patch 418 high interf/patch volume: 6.75
    patch 419 high interf/patch volume: 6.86
    patch 420 high interf/patch volume: 7
    patch 424 high interf/patch volume: 4.531645569620253
    patch 429 high interf/patch volume: 4.752873563218391
    patch 435 high interf/patch volume: 4.5793103448275865
    patch 442 high interf/patch volume: 5.138888888888888
    patch 443 high interf/patch volume: 7.000000000000001
    patch 444 high interf/patch volume: 5.76470588235294
    patch 445 high interf/patch volume: 5.170212765957446
    patch 446 high interf/patch volume: 7
    patch 447 high interf/patch volume: 5.698630136986302
    patch 448 high interf/patch volume: 6.837837837837839
    patch 449 high interf/patch volume: 4.972222222222222
    patch 450 high interf/patch volume: 5.140000000000001
    patch 451 high interf/patch volume: 7
    patch 452 high interf/patch volume: 6.7142857142857135
    patch 453 high interf/patch volume: 5.426356589147287
    patch 454 high interf/patch volume: 5.7124999999999995
    patch 455 high interf/patch volume: 7
    patch 456 high interf/patch volume: 6.74331550802139
    patch 457 high interf/patch volume: 4.999999999999999
    patch 458 high interf/patch volume: 5.744966442953021
    patch 459 high interf/patch volume: 4.861111111111111
    patch 460 high interf/patch volume: 5.358208955223881
    patch 461 high interf/patch volume: 7
    patch 462 high interf/patch volume: 7.124999999999999
    patch 468 high interf/patch volume: 2.9918256130790195
    patch 474 high interf/patch volume: 2.887905604719764
    patch 479 high interf/patch volume: 3.0013850415512464
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.99999977535,-5916.999999789535,-5916.999999971923)
    sum a = (4.363810896974851e-07,1.7516117746876891e-07,2.0786292419076868e-07)
    sum e = 14792.49999967867
    sum de = -8.194407725599373e-07
Info: CFL hydro = 6.138352277623391 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 6.138352277623391 cfl multiplier : 0.9999999989649032           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 7.4245e+03 | 5917 |     92 | 7.970e-01 | 0.0% |   1.9% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 451.7183665928594 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 52                                                      [SPH][rank=0]
Info: time since start : 1654.5683623060002 (s)                                       [SPH][rank=0]
Info: collected : 92 patches                                               [PatchScheduler][rank=0]
---------------- t = 5, dt = 0.10000000000000053 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5900 min = 5900                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5900 min = 5900                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 120
    min = 5900
    max = 5900
    avg = 5900
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.15 us   (0.0%)
   patch tree reduce : 15.35 us   (0.1%)
   gen split merge   : 3.11 us    (0.0%)
   split / merge op  : 4/0
   apply split merge : 29.99 ms   (98.1%)
   LB compute        : 478.08 us  (1.6%)
   LB move op cnt    : 0
   LB apply          : 5.33 us    (0.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.91 us    (21.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 311 high interf/patch volume: 7.285714285714285
    patch 313 high interf/patch volume: 7
    patch 314 high interf/patch volume: 7.999999999999999
    patch 315 high interf/patch volume: 8.32748538011696
    patch 414 high interf/patch volume: 7.256756756756756
    patch 415 high interf/patch volume: 7.471264367816093
    patch 416 high interf/patch volume: 7.222222222222223
    patch 417 high interf/patch volume: 7.267605633802816
    patch 418 high interf/patch volume: 7.333333333333333
    patch 419 high interf/patch volume: 7.555555555555557
    patch 424 high interf/patch volume: 7.473282442748093
    patch 429 high interf/patch volume: 7.728476821192053
    patch 435 high interf/patch volume: 7.601307189542484
    patch 442 high interf/patch volume: 7.454545454545455
    patch 443 high interf/patch volume: 8.451428571428572
    patch 444 high interf/patch volume: 7.308510638297872
    patch 445 high interf/patch volume: 7.121212121212121
    patch 447 high interf/patch volume: 7.21978021978022
    patch 448 high interf/patch volume: 7.285714285714286
    patch 449 high interf/patch volume: 7.4074074074074066
    patch 450 high interf/patch volume: 7.470588235294119
    patch 451 high interf/patch volume: 7
    patch 452 high interf/patch volume: 8.464285714285714
    patch 453 high interf/patch volume: 7.432989690721651
    patch 454 high interf/patch volume: 7.705357142857144
    patch 455 high interf/patch volume: 7.5
    patch 456 high interf/patch volume: 8.224719101123595
    patch 457 high interf/patch volume: 7.244444444444445
    patch 458 high interf/patch volume: 7.277777777777778
    patch 459 high interf/patch volume: 7.171428571428572
    patch 460 high interf/patch volume: 7.164835164835165
    patch 461 high interf/patch volume: 7
    patch 462 high interf/patch volume: 8
    patch 464 high interf/patch volume: 6.615384615384616
    patch 466 high interf/patch volume: 6.714285714285714
    patch 468 high interf/patch volume: 5.880952380952381
    patch 470 high interf/patch volume: 6.75
    patch 473 high interf/patch volume: 6.5
    patch 474 high interf/patch volume: 5.428571428571428
    patch 477 high interf/patch volume: 6.8
    patch 478 high interf/patch volume: 6.500000000000001
    patch 479 high interf/patch volume: 5.891089108910891
    patch 484 high interf/patch volume: 6.65359477124183
    patch 485 high interf/patch volume: 7
    patch 486 high interf/patch volume: 7.1800000000000015
    patch 487 high interf/patch volume: 6.624309392265195
    patch 488 high interf/patch volume: 7.647798742138366
    patch 489 high interf/patch volume: 7.275862068965517
    patch 490 high interf/patch volume: 7.220588235294119
    patch 493 high interf/patch volume: 5.517241379310345
    patch 495 high interf/patch volume: 6.19047619047619
    patch 496 high interf/patch volume: 5.470588235294119
    patch 497 high interf/patch volume: 4.2734806629834265
    patch 498 high interf/patch volume: 7.125
    patch 499 high interf/patch volume: 6.81578947368421
    patch 500 high interf/patch volume: 7.3571428571428585
    patch 501 high interf/patch volume: 7.235955056179776
    patch 502 high interf/patch volume: 7.688888888888889
    patch 503 high interf/patch volume: 8.012345679012347
    patch 504 high interf/patch volume: 7.383333333333333
    patch 505 high interf/patch volume: 7.23076923076923
    patch 506 high interf/patch volume: 6.9230769230769225
    patch 507 high interf/patch volume: 7.77906976744186
    patch 508 high interf/patch volume: 7
    patch 509 high interf/patch volume: 7.34
    patch 510 high interf/patch volume: 7.2
    patch 511 high interf/patch volume: 6.936363636363636
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999709893,-5916.999999763261,-5916.999999940744)
    sum a = (1.2130139750553964e-07,3.176617123642686e-11,-1.0605268987052153e-08)
    sum e = 14792.499999555577
    sum de = -1.1072931008649506e-07
Info: CFL hydro = 6.091005007394401 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 6.091005007394401 cfl multiplier : 0.9999999993099354           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 4.1229e+03 | 5917 |    120 | 1.435e+00 | 0.0% |   2.1% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 250.84394354439448 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 53                                                      [SPH][rank=0]
Info: time since start : 1656.8138684340001 (s)                                       [SPH][rank=0]
Info: collected : 120 patches                                              [PatchScheduler][rank=0]
---------------- t = 5.1000000000000005, dt = 0.09999999999999964 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5911 min = 5911                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5911 min = 5911                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 127
    min = 5911
    max = 5911
    avg = 5911
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.53 us   (0.1%)
   patch tree reduce : 21.95 us   (0.2%)
   gen split merge   : 3.27 us    (0.0%)
   split / merge op  : 1/0
   apply split merge : 11.02 ms   (94.3%)
   LB compute        : 540.90 us  (4.6%)
   LB move op cnt    : 0
   LB apply          : 5.14 us    (0.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (18.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 311 high interf/patch volume: 7.333333333333334
    patch 313 high interf/patch volume: 7.375
    patch 314 high interf/patch volume: 7.3076923076923075
    patch 315 high interf/patch volume: 7.208860759493673
    patch 414 high interf/patch volume: 6.903225806451612
    patch 415 high interf/patch volume: 7.08
    patch 417 high interf/patch volume: 7.115384615384615
    patch 424 high interf/patch volume: 7.585714285714286
    patch 429 high interf/patch volume: 7.2978723404255295
    patch 435 high interf/patch volume: 7.136986301369861
    patch 442 high interf/patch volume: 7.105263157894736
    patch 443 high interf/patch volume: 7.788235294117645
    patch 444 high interf/patch volume: 7.481481481481482
    patch 445 high interf/patch volume: 6.888888888888889
    patch 447 high interf/patch volume: 7.333333333333334
    patch 449 high interf/patch volume: 7.157894736842105
    patch 450 high interf/patch volume: 7.352941176470589
    patch 452 high interf/patch volume: 8.010695187165775
    patch 453 high interf/patch volume: 7.366666666666667
    patch 454 high interf/patch volume: 7.811320754716982
    patch 456 high interf/patch volume: 7.81111111111111
    patch 457 high interf/patch volume: 7.0625
    patch 458 high interf/patch volume: 7.333333333333335
    patch 459 high interf/patch volume: 7.1875
    patch 460 high interf/patch volume: 7.19047619047619
    patch 464 high interf/patch volume: 6.735294117647058
    patch 466 high interf/patch volume: 6.640000000000001
    patch 468 high interf/patch volume: 6.532786885245901
    patch 470 high interf/patch volume: 6.621621621621621
    patch 473 high interf/patch volume: 6.421052631578948
    patch 474 high interf/patch volume: 6.362903225806454
    patch 477 high interf/patch volume: 6.666666666666668
    patch 478 high interf/patch volume: 6.589743589743589
    patch 479 high interf/patch volume: 6.362903225806453
    patch 484 high interf/patch volume: 7.41860465116279
    patch 485 high interf/patch volume: 7
    patch 486 high interf/patch volume: 7.648648648648648
    patch 487 high interf/patch volume: 7.349462365591398
    patch 488 high interf/patch volume: 8.472222222222223
    patch 489 high interf/patch volume: 7.842105263157895
    patch 490 high interf/patch volume: 8.126315789473685
    patch 493 high interf/patch volume: 5.968749999999999
    patch 495 high interf/patch volume: 5.928571428571428
    patch 496 high interf/patch volume: 5.982300884955752
    patch 497 high interf/patch volume: 4.866666666666666
    patch 498 high interf/patch volume: 7.083333333333333
    patch 499 high interf/patch volume: 7.654088050314465
    patch 500 high interf/patch volume: 7.6410256410256405
    patch 501 high interf/patch volume: 7.489010989010988
    patch 502 high interf/patch volume: 7.595238095238096
    patch 503 high interf/patch volume: 8.401234567901236
    patch 504 high interf/patch volume: 7.957894736842107
    patch 505 high interf/patch volume: 7.479768786127167
    patch 506 high interf/patch volume: 7.286585365853659
    patch 507 high interf/patch volume: 8.229885057471265
    patch 508 high interf/patch volume: 7.076923076923077
    patch 509 high interf/patch volume: 7.613636363636363
    patch 510 high interf/patch volume: 7.5
    patch 511 high interf/patch volume: 8.11111111111111
    patch 512 high interf/patch volume: 6.191082802547772
    patch 513 high interf/patch volume: 6.060810810810811
    patch 514 high interf/patch volume: 7.530054644808743
    patch 515 high interf/patch volume: 5.959302325581395
    patch 516 high interf/patch volume: 7.2648648648648635
    patch 517 high interf/patch volume: 7.148809523809524
    patch 518 high interf/patch volume: 8.173076923076922
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999713517,-5916.999999772012,-5916.999999952727)
    sum a = (2.0718209488621892e-08,2.924941060039243e-08,1.45597844155194e-09)
    sum e = 14792.499999579753
    sum de = -5.14230374904551e-08
Info: CFL hydro = 6.044426901028155 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 6.044426901028155 cfl multiplier : 0.999999999539957            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.9575e+03 | 5917 |    127 | 1.495e+00 | 0.0% |   2.4% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 240.78221199631378 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 54                                                      [SPH][rank=0]
Info: time since start : 1659.1557424020002 (s)                                       [SPH][rank=0]
Info: collected : 127 patches                                              [PatchScheduler][rank=0]
---------------- t = 5.2, dt = 0.10000000000000053 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5917 min = 5917                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5917 min = 5917                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 127
    min = 5917
    max = 5917
    avg = 5917
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.86 us   (1.4%)
   patch tree reduce : 20.30 us   (2.6%)
   gen split merge   : 2.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.1%)
   LB compute        : 650.71 us  (83.7%)
   LB move op cnt    : 0
   LB apply          : 4.78 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (13.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 311 high interf/patch volume: 7.285714285714286
    patch 313 high interf/patch volume: 7.222222222222221
    patch 314 high interf/patch volume: 7.222222222222221
    patch 315 high interf/patch volume: 7.645161290322578
    patch 414 high interf/patch volume: 7
    patch 415 high interf/patch volume: 7
    patch 417 high interf/patch volume: 7
    patch 424 high interf/patch volume: 7.704347826086956
    patch 429 high interf/patch volume: 7.822580645161291
    patch 435 high interf/patch volume: 7.888888888888889
    patch 442 high interf/patch volume: 7.333333333333334
    patch 443 high interf/patch volume: 7.956249999999999
    patch 444 high interf/patch volume: 8
    patch 445 high interf/patch volume: 7.2
    patch 447 high interf/patch volume: 7.652173913043478
    patch 449 high interf/patch volume: 7.666666666666666
    patch 450 high interf/patch volume: 7.4
    patch 452 high interf/patch volume: 8.094339622641511
    patch 453 high interf/patch volume: 8.058823529411764
    patch 454 high interf/patch volume: 8.055555555555555
    patch 456 high interf/patch volume: 7.882758620689655
    patch 457 high interf/patch volume: 7.571428571428571
    patch 458 high interf/patch volume: 7.705882352941177
    patch 459 high interf/patch volume: 7
    patch 460 high interf/patch volume: 7.888888888888889
    patch 464 high interf/patch volume: 6.21875
    patch 466 high interf/patch volume: 6.133333333333334
    patch 468 high interf/patch volume: 6.167832167832168
    patch 470 high interf/patch volume: 6.264150943396227
    patch 473 high interf/patch volume: 6.294117647058824
    patch 474 high interf/patch volume: 6.390625
    patch 477 high interf/patch volume: 6.531914893617021
    patch 478 high interf/patch volume: 6.163934426229508
    patch 479 high interf/patch volume: 6.702127659574469
    patch 484 high interf/patch volume: 7.430379746835443
    patch 485 high interf/patch volume: 7.200000000000001
    patch 486 high interf/patch volume: 7.535714285714286
    patch 487 high interf/patch volume: 7.808383233532935
    patch 488 high interf/patch volume: 8.613095238095237
    patch 489 high interf/patch volume: 7.857142857142858
    patch 490 high interf/patch volume: 8.538461538461538
    patch 493 high interf/patch volume: 5.313304721030042
    patch 495 high interf/patch volume: 5.383495145631068
    patch 496 high interf/patch volume: 5.184
    patch 497 high interf/patch volume: 4.525316455696202
    patch 498 high interf/patch volume: 7
    patch 499 high interf/patch volume: 7.389830508474576
    patch 500 high interf/patch volume: 7.588235294117647
    patch 501 high interf/patch volume: 7.375000000000001
    patch 502 high interf/patch volume: 7.566666666666666
    patch 503 high interf/patch volume: 8.233695652173914
    patch 504 high interf/patch volume: 8.51388888888889
    patch 505 high interf/patch volume: 7.883720930232558
    patch 506 high interf/patch volume: 7.656976744186048
    patch 507 high interf/patch volume: 8.512690355329951
    patch 508 high interf/patch volume: 7.625
    patch 509 high interf/patch volume: 7.75
    patch 510 high interf/patch volume: 7.84375
    patch 511 high interf/patch volume: 8.796296296296296
    patch 512 high interf/patch volume: 5.956043956043955
    patch 513 high interf/patch volume: 5.869565217391305
    patch 514 high interf/patch volume: 7.137566137566138
    patch 515 high interf/patch volume: 5.924731182795699
    patch 516 high interf/patch volume: 7.307262569832403
    patch 517 high interf/patch volume: 7.337078651685394
    patch 518 high interf/patch volume: 8.292397660818711
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999716475,-5916.999999767628,-5916.999999951981)
    sum a = (-7.890259862167348e-09,-3.326698293584744e-09,-6.664848278394152e-11)
    sum e = 14792.499999577385
    sum de = 1.1283776638928738e-08
Info: CFL hydro = 5.998600122782958 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 5.998600122782958 cfl multiplier : 0.9999999996933046           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 4.1183e+03 | 5917 |    127 | 1.437e+00 | 0.0% |   2.4% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 250.56196908433205 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 55                                                      [SPH][rank=0]
Info: time since start : 1661.5666156060001 (s)                                       [SPH][rank=0]
Info: collected : 127 patches                                              [PatchScheduler][rank=0]
---------------- t = 5.300000000000001, dt = 0.09999999999999964 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5917 min = 5917                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5917 min = 5917                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 127
    min = 5917
    max = 5917
    avg = 5917
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.37 us   (1.4%)
   patch tree reduce : 22.41 us   (2.8%)
   gen split merge   : 1954.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.1%)
   LB compute        : 666.45 us  (84.1%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.86 us    (19.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 311 high interf/patch volume: 7
    patch 312 high interf/patch volume: 7
    patch 313 high interf/patch volume: 7
    patch 314 high interf/patch volume: 7.166666666666667
    patch 315 high interf/patch volume: 6.696969696969696
    patch 424 high interf/patch volume: 7.217391304347826
    patch 429 high interf/patch volume: 7.28735632183908
    patch 435 high interf/patch volume: 6.87837837837838
    patch 443 high interf/patch volume: 7.222222222222221
    patch 444 high interf/patch volume: 7
    patch 447 high interf/patch volume: 7
    patch 452 high interf/patch volume: 6.974789915966387
    patch 456 high interf/patch volume: 6.595959595959597
    patch 464 high interf/patch volume: 5.955555555555556
    patch 466 high interf/patch volume: 5.8791208791208796
    patch 468 high interf/patch volume: 6.266666666666668
    patch 470 high interf/patch volume: 6.202898550724638
    patch 473 high interf/patch volume: 6.217391304347827
    patch 474 high interf/patch volume: 6.722222222222224
    patch 477 high interf/patch volume: 6.038461538461539
    patch 478 high interf/patch volume: 6.112676056338028
    patch 479 high interf/patch volume: 6.583333333333333
    patch 484 high interf/patch volume: 7.347305389221556
    patch 485 high interf/patch volume: 7
    patch 486 high interf/patch volume: 7.666666666666666
    patch 487 high interf/patch volume: 7.308139534883721
    patch 488 high interf/patch volume: 7.778378378378377
    patch 489 high interf/patch volume: 7
    patch 490 high interf/patch volume: 8.083333333333332
    patch 491 high interf/patch volume: 4.916666666666666
    patch 492 high interf/patch volume: 4.85
    patch 493 high interf/patch volume: 4.402116402116402
    patch 494 high interf/patch volume: 5.277777777777779
    patch 495 high interf/patch volume: 4.516826923076923
    patch 496 high interf/patch volume: 4.6272040302267
    patch 497 high interf/patch volume: 5.207100591715975
    patch 498 high interf/patch volume: 7.166666666666666
    patch 499 high interf/patch volume: 7.154696132596684
    patch 500 high interf/patch volume: 6.571428571428571
    patch 501 high interf/patch volume: 7.0681818181818175
    patch 502 high interf/patch volume: 7
    patch 503 high interf/patch volume: 7.810945273631841
    patch 504 high interf/patch volume: 6.8500000000000005
    patch 505 high interf/patch volume: 7.019867549668874
    patch 506 high interf/patch volume: 6.9447852760736195
    patch 507 high interf/patch volume: 7.726256983240224
    patch 508 high interf/patch volume: 7.333333333333333
    patch 509 high interf/patch volume: 7.199999999999999
    patch 510 high interf/patch volume: 6.999999999999999
    patch 511 high interf/patch volume: 7.392857142857143
    patch 512 high interf/patch volume: 5.588571428571429
    patch 513 high interf/patch volume: 6.104712041884818
    patch 514 high interf/patch volume: 7.005263157894737
    patch 515 high interf/patch volume: 6.288235294117648
    patch 516 high interf/patch volume: 6.872727272727272
    patch 517 high interf/patch volume: 7.265536723163841
    patch 518 high interf/patch volume: 8.380116959064326
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999718694,-5916.999999769589,-5916.999999952063)
    sum a = (-2.8916229687895417e-09,3.4762600989201217e-10,4.8176919386595e-09)
    sum e = 14792.499999581463
    sum de = -2.2745767789049055e-09
Info: CFL hydro = 5.953507381089824 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 5.953507381089824 cfl multiplier : 0.9999999997955363           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 4.4721e+03 | 5917 |    127 | 1.323e+00 | 0.0% |   1.9% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 272.0880225310639 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 56                                                      [SPH][rank=0]
Info: time since start : 1663.7618822270001 (s)                                       [SPH][rank=0]
Info: collected : 127 patches                                              [PatchScheduler][rank=0]
---------------- t = 5.4, dt = 0.09999999999999964 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5917 min = 5917                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5917 min = 5917                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 127
    min = 5917
    max = 5917
    avg = 5917
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.17 us   (1.0%)
   patch tree reduce : 23.42 us   (2.0%)
   gen split merge   : 2.77 us    (0.2%)
   split / merge op  : 0/1
   apply split merge : 861.00 ns  (0.1%)
   LB compute        : 643.19 us  (56.0%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.47 us    (26.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7
    patch 309 high interf/patch volume: 7
    patch 310 high interf/patch volume: 7
    patch 311 high interf/patch volume: 7
    patch 312 high interf/patch volume: 7
    patch 313 high interf/patch volume: 7
    patch 314 high interf/patch volume: 7
    patch 315 high interf/patch volume: 7
    patch 424 high interf/patch volume: 6.9411764705882355
    patch 429 high interf/patch volume: 6.810810810810811
    patch 435 high interf/patch volume: 7.125000000000001
    patch 443 high interf/patch volume: 6.722222222222221
    patch 452 high interf/patch volume: 6.7
    patch 456 high interf/patch volume: 6.859999999999999
    patch 464 high interf/patch volume: 5.383561643835616
    patch 466 high interf/patch volume: 5.5
    patch 468 high interf/patch volume: 5.516393442622952
    patch 470 high interf/patch volume: 5.655555555555555
    patch 473 high interf/patch volume: 5.391891891891891
    patch 474 high interf/patch volume: 5.586466165413534
    patch 477 high interf/patch volume: 5.666666666666666
    patch 478 high interf/patch volume: 5.287671232876712
    patch 479 high interf/patch volume: 5.236486486486488
    patch 484 high interf/patch volume: 5.987500000000001
    patch 487 high interf/patch volume: 5.953020134228189
    patch 488 high interf/patch volume: 6.5418994413407825
    patch 491 high interf/patch volume: 5.035714285714286
    patch 492 high interf/patch volume: 4.684931506849315
    patch 493 high interf/patch volume: 3.7863247863247858
    patch 494 high interf/patch volume: 4.833333333333334
    patch 495 high interf/patch volume: 4.033388981636061
    patch 496 high interf/patch volume: 3.9793233082706765
    patch 497 high interf/patch volume: 5.180232558139534
    patch 499 high interf/patch volume: 5.8062015503875966
    patch 501 high interf/patch volume: 6.000000000000001
    patch 503 high interf/patch volume: 6.386206896551725
    patch 505 high interf/patch volume: 5.958620689655172
    patch 506 high interf/patch volume: 5.634328358208955
    patch 507 high interf/patch volume: 6.29113924050633
    patch 512 high interf/patch volume: 6
    patch 513 high interf/patch volume: 5.710059171597633
    patch 514 high interf/patch volume: 6.738461538461539
    patch 515 high interf/patch volume: 5.983606557377049
    patch 516 high interf/patch volume: 7.037914691943127
    patch 517 high interf/patch volume: 6.727272727272728
    patch 518 high interf/patch volume: 8.15277777777778
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999718732,-5916.999999769369,-5916.999999951334)
    sum a = (6.6817396206881804e-12,2.152232695994271e-07,2.368988590907041e-12)
    sum e = 14792.499999580372
    sum de = -2.152786191531909e-07
Info: CFL hydro = 5.909131908498341 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 5.909131908498341 cfl multiplier : 0.9999999998636909           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.0558e+03 | 5917 |    120 | 1.170e+00 | 0.0% |   1.8% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 307.6018080854775 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 57                                                      [SPH][rank=0]
Info: time since start : 1665.883547398 (s)                                           [SPH][rank=0]
Info: collected : 120 patches                                              [PatchScheduler][rank=0]
---------------- t = 5.5, dt = 0.10000000000000053 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5905 min = 5905                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5905 min = 5905                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 141
    min = 5905
    max = 5905
    avg = 5905
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.28 us   (0.1%)
   patch tree reduce : 21.66 us   (0.1%)
   gen split merge   : 3.56 us    (0.0%)
   split / merge op  : 3/1
   apply split merge : 18.34 ms   (92.5%)
   LB compute        : 772.36 us  (3.9%)
   LB move op cnt    : 0
   LB apply          : 4.78 us    (0.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (16.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.119047619047619
    patch 309 high interf/patch volume: 7.125
    patch 310 high interf/patch volume: 7
    patch 311 high interf/patch volume: 7
    patch 312 high interf/patch volume: 7
    patch 314 high interf/patch volume: 7
    patch 424 high interf/patch volume: 7.666666666666667
    patch 429 high interf/patch volume: 7.2857142857142865
    patch 435 high interf/patch volume: 8
    patch 443 high interf/patch volume: 7.333333333333333
    patch 452 high interf/patch volume: 7.222222222222221
    patch 456 high interf/patch volume: 7.555555555555555
    patch 464 high interf/patch volume: 6.608695652173912
    patch 466 high interf/patch volume: 6.91025641025641
    patch 468 high interf/patch volume: 6.749999999999998
    patch 470 high interf/patch volume: 6.583333333333333
    patch 473 high interf/patch volume: 6.592233009708737
    patch 474 high interf/patch volume: 6.588235294117647
    patch 477 high interf/patch volume: 6.542168674698796
    patch 478 high interf/patch volume: 6.435294117647058
    patch 479 high interf/patch volume: 6.236363636363635
    patch 484 high interf/patch volume: 7.446428571428572
    patch 487 high interf/patch volume: 6.972222222222223
    patch 488 high interf/patch volume: 7.471264367816092
    patch 491 high interf/patch volume: 6.051546391752576
    patch 492 high interf/patch volume: 5.756345177664974
    patch 493 high interf/patch volume: 6.153846153846153
    patch 494 high interf/patch volume: 6.216450216450217
    patch 495 high interf/patch volume: 6.523809523809524
    patch 496 high interf/patch volume: 5.947368421052632
    patch 497 high interf/patch volume: 7.773584905660379
    patch 499 high interf/patch volume: 7.1340206185567006
    patch 501 high interf/patch volume: 6.978723404255319
    patch 503 high interf/patch volume: 7.256756756756756
    patch 505 high interf/patch volume: 6.912087912087913
    patch 506 high interf/patch volume: 6.835164835164836
    patch 507 high interf/patch volume: 7.267605633802816
    patch 512 high interf/patch volume: 8.104938271604938
    patch 513 high interf/patch volume: 7.6415094339622645
    patch 514 high interf/patch volume: 8.136904761904761
    patch 515 high interf/patch volume: 7.75
    patch 516 high interf/patch volume: 8.154285714285715
    patch 517 high interf/patch volume: 7.820224719101122
    patch 518 high interf/patch volume: 8.222222222222223
    patch 519 high interf/patch volume: 6.384615384615385
    patch 520 high interf/patch volume: 6.8
    patch 521 high interf/patch volume: 6.857142857142857
    patch 522 high interf/patch volume: 6.6951219512195115
    patch 523 high interf/patch volume: 6.828947368421053
    patch 524 high interf/patch volume: 6.627450980392156
    patch 525 high interf/patch volume: 6.85496183206107
    patch 526 high interf/patch volume: 6.7142857142857135
    patch 527 high interf/patch volume: 6.984126984126982
    patch 528 high interf/patch volume: 7.308988764044946
    patch 529 high interf/patch volume: 6.8
    patch 530 high interf/patch volume: 7
    patch 531 high interf/patch volume: 7.1952662721893486
    patch 532 high interf/patch volume: 7.145695364238411
    patch 533 high interf/patch volume: 6.836065573770493
    patch 534 high interf/patch volume: 5.909090909090908
    patch 535 high interf/patch volume: 6.706214689265537
    patch 536 high interf/patch volume: 6.416666666666667
    patch 537 high interf/patch volume: 6.873493975903615
    patch 538 high interf/patch volume: 7
    patch 539 high interf/patch volume: 6.840000000000001
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999718589,-5916.999999737107,-5916.999999951576)
    sum a = (1.1874847229880262e-07,4.3151083400916335e-11,-1.0531450711937645e-08)
    sum e = 14792.499999547996
    sum de = -1.0826137196440211e-07
Info: CFL hydro = 5.865457440978154 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 5.865457440978154 cfl multiplier : 0.9999999999091272           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 4.2483e+03 | 5917 |    134 | 1.393e+00 | 0.0% |   2.1% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 258.4751193275352 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 58                                                      [SPH][rank=0]
Info: time since start : 1668.1078152710002 (s)                                       [SPH][rank=0]
Info: collected : 134 patches                                              [PatchScheduler][rank=0]
---------------- t = 5.6000000000000005, dt = 0.09999999999999964 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5917 min = 5917                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5917 min = 5917                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 134
    min = 5917
    max = 5917
    avg = 5917
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.03 us   (0.3%)
   patch tree reduce : 22.37 us   (0.7%)
   gen split merge   : 3.00 us    (0.1%)
   split / merge op  : 0/3
   apply split merge : 1062.00 ns (0.0%)
   LB compute        : 614.85 us  (19.2%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (18.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.539823008849558
    patch 309 high interf/patch volume: 6.999999999999999
    patch 310 high interf/patch volume: 6.999999999999999
    patch 312 high interf/patch volume: 7.153846153846154
    patch 464 high interf/patch volume: 6.620689655172414
    patch 466 high interf/patch volume: 6.754098360655737
    patch 468 high interf/patch volume: 7.305263157894737
    patch 470 high interf/patch volume: 6.796296296296296
    patch 473 high interf/patch volume: 6.907407407407407
    patch 474 high interf/patch volume: 7.452631578947367
    patch 477 high interf/patch volume: 7.016129032258064
    patch 478 high interf/patch volume: 6.775862068965516
    patch 479 high interf/patch volume: 7.679012345679013
    patch 484 high interf/patch volume: 7.377358490566038
    patch 487 high interf/patch volume: 6.9444444444444455
    patch 488 high interf/patch volume: 7.08
    patch 491 high interf/patch volume: 5.153374233128835
    patch 492 high interf/patch volume: 5.033639143730887
    patch 493 high interf/patch volume: 5.958333333333334
    patch 494 high interf/patch volume: 5.2323529411764715
    patch 495 high interf/patch volume: 5.945454545454545
    patch 496 high interf/patch volume: 6.044776119402986
    patch 497 high interf/patch volume: 7.935897435897436
    patch 499 high interf/patch volume: 6.983333333333334
    patch 501 high interf/patch volume: 7.0740740740740735
    patch 503 high interf/patch volume: 6.903225806451613
    patch 505 high interf/patch volume: 7.037037037037037
    patch 506 high interf/patch volume: 6.825396825396825
    patch 507 high interf/patch volume: 7.153846153846154
    patch 512 high interf/patch volume: 7.925925925925926
    patch 513 high interf/patch volume: 7.9333333333333345
    patch 514 high interf/patch volume: 7.6524064171123
    patch 515 high interf/patch volume: 7.942528735632182
    patch 516 high interf/patch volume: 7.576470588235292
    patch 517 high interf/patch volume: 7.488888888888888
    patch 518 high interf/patch volume: 7.208860759493671
    patch 519 high interf/patch volume: 6.413793103448276
    patch 520 high interf/patch volume: 6.1818181818181825
    patch 521 high interf/patch volume: 7.222222222222221
    patch 522 high interf/patch volume: 6.918032786885245
    patch 523 high interf/patch volume: 6.836477987421384
    patch 524 high interf/patch volume: 6.63953488372093
    patch 525 high interf/patch volume: 6.807142857142857
    patch 526 high interf/patch volume: 6.285714285714285
    patch 527 high interf/patch volume: 6.935135135135136
    patch 528 high interf/patch volume: 6.994505494505493
    patch 529 high interf/patch volume: 6.461538461538462
    patch 530 high interf/patch volume: 7.25
    patch 531 high interf/patch volume: 7.109826589595375
    patch 532 high interf/patch volume: 6.744680851063829
    patch 533 high interf/patch volume: 6.7023809523809526
    patch 534 high interf/patch volume: 6.03225806451613
    patch 535 high interf/patch volume: 6.698924731182796
    patch 536 high interf/patch volume: 6.375
    patch 537 high interf/patch volume: 6.859756097560975
    patch 538 high interf/patch volume: 7
    patch 539 high interf/patch volume: 6.452054794520548
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.9999997007735,-5916.99999974786,-5916.999999953159)
    sum a = (1.9460760130977917e-08,2.7608517740636968e-08,1.3948596982310546e-09)
    sum e = 14792.499999542324
    sum de = -4.846339969047028e-08
Info: CFL hydro = 5.822468199849874 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 5.822468199849874 cfl multiplier : 0.9999999999394182           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 4.1690e+03 | 5917 |    113 | 1.419e+00 | 0.0% |   2.1% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 253.6500999768201 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 59                                                      [SPH][rank=0]
Info: time since start : 1670.511431506 (s)                                           [SPH][rank=0]
Info: collected : 113 patches                                              [PatchScheduler][rank=0]
---------------- t = 5.7, dt = 0.10000000000000053 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5917 min = 5917                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5917 min = 5917                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 113
    min = 5917
    max = 5917
    avg = 5917
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.55 us   (1.0%)
   patch tree reduce : 19.72 us   (1.8%)
   gen split merge   : 2.90 us    (0.3%)
   split / merge op  : 0/3
   apply split merge : 842.00 ns  (0.1%)
   LB compute        : 599.73 us  (54.1%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (11.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.5450643776824036
    patch 309 high interf/patch volume: 6.916666666666666
    patch 310 high interf/patch volume: 6.7
    patch 312 high interf/patch volume: 7.625
    patch 464 high interf/patch volume: 6.824999999999999
    patch 466 high interf/patch volume: 7.027777777777779
    patch 468 high interf/patch volume: 7.916666666666667
    patch 470 high interf/patch volume: 6.727272727272727
    patch 473 high interf/patch volume: 7.085714285714286
    patch 474 high interf/patch volume: 7.969230769230769
    patch 477 high interf/patch volume: 7
    patch 478 high interf/patch volume: 7.257142857142857
    patch 479 high interf/patch volume: 8.12962962962963
    patch 484 high interf/patch volume: 7.444444444444445
    patch 487 high interf/patch volume: 7.058823529411765
    patch 488 high interf/patch volume: 7
    patch 491 high interf/patch volume: 4.375536480686695
    patch 492 high interf/patch volume: 4.275488069414316
    patch 493 high interf/patch volume: 5.415730337078651
    patch 494 high interf/patch volume: 4.7359307359307365
    patch 495 high interf/patch volume: 5.670454545454545
    patch 496 high interf/patch volume: 5.371428571428572
    patch 497 high interf/patch volume: 8.11111111111111
    patch 499 high interf/patch volume: 7.529411764705881
    patch 501 high interf/patch volume: 7.347826086956522
    patch 503 high interf/patch volume: 7
    patch 505 high interf/patch volume: 7.0434782608695645
    patch 506 high interf/patch volume: 7.333333333333335
    patch 507 high interf/patch volume: 7
    patch 512 high interf/patch volume: 7.820652173913045
    patch 513 high interf/patch volume: 8.107142857142858
    patch 514 high interf/patch volume: 7.685534591194968
    patch 515 high interf/patch volume: 8.040609137055839
    patch 516 high interf/patch volume: 7.5625
    patch 517 high interf/patch volume: 7.5103448275862075
    patch 518 high interf/patch volume: 7.645161290322581
    patch 519 high interf/patch volume: 5.869565217391305
    patch 520 high interf/patch volume: 5.7749999999999995
    patch 521 high interf/patch volume: 7.142857142857142
    patch 522 high interf/patch volume: 6.46031746031746
    patch 523 high interf/patch volume: 6.5875706214689265
    patch 524 high interf/patch volume: 6.61392405063291
    patch 525 high interf/patch volume: 6.756521739130436
    patch 526 high interf/patch volume: 6.096774193548387
    patch 527 high interf/patch volume: 7
    patch 528 high interf/patch volume: 6.896739130434782
    patch 529 high interf/patch volume: 6.1818181818181825
    patch 530 high interf/patch volume: 7.111111111111111
    patch 531 high interf/patch volume: 7.209302325581395
    patch 532 high interf/patch volume: 7.088709677419354
    patch 533 high interf/patch volume: 6.870786516853933
    patch 534 high interf/patch volume: 6.057142857142857
    patch 535 high interf/patch volume: 7.089820359281438
    patch 536 high interf/patch volume: 5.8604651162790695
    patch 537 high interf/patch volume: 7.081395348837209
    patch 538 high interf/patch volume: 7
    patch 539 high interf/patch volume: 7.018518518518518
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999703796,-5916.99999974372,-5916.999999952423)
    sum a = (-7.221718029571528e-09,-3.070130160948842e-09,-6.59553644338784e-11)
    sum e = 14792.499999540267
    sum de = 1.0357998857062067e-08
Info: CFL hydro = 5.780148873629926 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 5.780148873629926 cfl multiplier : 0.9999999999596122           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 4.7532e+03 | 5917 |     92 | 1.245e+00 | 0.0% |   2.2% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 289.1932258250945 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 60                                                      [SPH][rank=0]
Info: time since start : 1672.572162459 (s)                                           [SPH][rank=0]
Info: collected : 92 patches                                               [PatchScheduler][rank=0]
---------------- t = 5.800000000000001, dt = 0.09999999999999964 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5917 min = 5917                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5917 min = 5917                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 92
    min = 5917
    max = 5917
    avg = 5917
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.28 us   (1.5%)
   patch tree reduce : 17.72 us   (2.6%)
   gen split merge   : 1393.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.1%)
   LB compute        : 587.01 us  (86.8%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.23 us    (18.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.370192307692308
    patch 309 high interf/patch volume: 7
    patch 310 high interf/patch volume: 7
    patch 312 high interf/patch volume: 7.333333333333334
    patch 464 high interf/patch volume: 6.5
    patch 466 high interf/patch volume: 7.083333333333335
    patch 468 high interf/patch volume: 6.82608695652174
    patch 470 high interf/patch volume: 7.666666666666666
    patch 473 high interf/patch volume: 7
    patch 474 high interf/patch volume: 8.083333333333332
    patch 477 high interf/patch volume: 7.200000000000001
    patch 478 high interf/patch volume: 7
    patch 479 high interf/patch volume: 7.4642857142857135
    patch 491 high interf/patch volume: 3.5990099009900987
    patch 492 high interf/patch volume: 3.805970149253731
    patch 493 high interf/patch volume: 4.9322033898305095
    patch 494 high interf/patch volume: 3.5884413309982484
    patch 495 high interf/patch volume: 4.969465648854961
    patch 496 high interf/patch volume: 5.1328125
    patch 497 high interf/patch volume: 8.563953488372094
    patch 501 high interf/patch volume: 7
    patch 505 high interf/patch volume: 7
    patch 512 high interf/patch volume: 7.904040404040405
    patch 513 high interf/patch volume: 7.735135135135134
    patch 514 high interf/patch volume: 6.991596638655463
    patch 515 high interf/patch volume: 7.681564245810055
    patch 516 high interf/patch volume: 7.316239316239317
    patch 517 high interf/patch volume: 6.696969696969696
    patch 518 high interf/patch volume: 6.7272727272727275
    patch 519 high interf/patch volume: 5.814814814814816
    patch 520 high interf/patch volume: 5.7804878048780495
    patch 521 high interf/patch volume: 7
    patch 522 high interf/patch volume: 6.724867724867725
    patch 523 high interf/patch volume: 6.737430167597766
    patch 524 high interf/patch volume: 6.84431137724551
    patch 525 high interf/patch volume: 6.945652173913044
    patch 526 high interf/patch volume: 5.88235294117647
    patch 527 high interf/patch volume: 6.842424242424243
    patch 528 high interf/patch volume: 6.936781609195403
    patch 529 high interf/patch volume: 5.608695652173913
    patch 530 high interf/patch volume: 7
    patch 531 high interf/patch volume: 6.6887417218543055
    patch 532 high interf/patch volume: 7.264367816091953
    patch 533 high interf/patch volume: 7.202247191011236
    patch 534 high interf/patch volume: 6.050000000000001
    patch 535 high interf/patch volume: 7.151162790697675
    patch 536 high interf/patch volume: 5.733333333333334
    patch 537 high interf/patch volume: 6.779141104294479
    patch 538 high interf/patch volume: 7.166666666666667
    patch 539 high interf/patch volume: 6.9459459459459465
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999705847,-5916.999999745562,-5916.999999952503)
    sum a = (-1.6046192152785466e-17,1.0408340855860843e-17,5.421010862427522e-18)
    sum e = 14792.49999954404
    sum de = 2.0816681711721685e-17
Info: CFL hydro = 5.738484600729815 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 5.738484600729815 cfl multiplier : 0.9999999999730749           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4409e+03 | 5917 |     92 | 1.087e+00 | 0.0% |   2.2% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 331.0361542248474 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 61                                                      [SPH][rank=0]
Info: time since start : 1674.490418567 (s)                                           [SPH][rank=0]
Info: collected : 92 patches                                               [PatchScheduler][rank=0]
---------------- t = 5.9, dt = 0.09999999999999964 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5905 min = 5905                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5905 min = 5905                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 113
    min = 5905
    max = 5905
    avg = 5905
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.29 us   (0.0%)
   patch tree reduce : 15.98 us   (0.1%)
   gen split merge   : 3.23 us    (0.0%)
   split / merge op  : 3/3
   apply split merge : 24.21 ms   (93.6%)
   LB compute        : 513.23 us  (2.0%)
   LB move op cnt    : 0
   LB apply          : 4.75 us    (0.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (24.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.6502242152466366
    patch 491 high interf/patch volume: 5.195652173913043
    patch 492 high interf/patch volume: 4.861111111111112
    patch 493 high interf/patch volume: 6.170886075949367
    patch 494 high interf/patch volume: 5.138888888888888
    patch 495 high interf/patch volume: 6.494252873563219
    patch 496 high interf/patch volume: 6.220689655172413
    patch 497 high interf/patch volume: 8.305555555555555
    patch 512 high interf/patch volume: 6.379310344827587
    patch 513 high interf/patch volume: 6.5418994413407825
    patch 514 high interf/patch volume: 6.7
    patch 515 high interf/patch volume: 6.291139240506329
    patch 516 high interf/patch volume: 6.722222222222222
    patch 517 high interf/patch volume: 6.86
    patch 518 high interf/patch volume: 7
    patch 519 high interf/patch volume: 6.722222222222222
    patch 520 high interf/patch volume: 6.86
    patch 521 high interf/patch volume: 7
    patch 522 high interf/patch volume: 8.158974358974362
    patch 523 high interf/patch volume: 6.472868217054264
    patch 524 high interf/patch volume: 6.6625
    patch 525 high interf/patch volume: 6.941176470588236
    patch 526 high interf/patch volume: 6.805555555555555
    patch 527 high interf/patch volume: 8.379146919431278
    patch 528 high interf/patch volume: 6.661764705882352
    patch 529 high interf/patch volume: 6.851063829787233
    patch 530 high interf/patch volume: 7
    patch 531 high interf/patch volume: 6.5625
    patch 532 high interf/patch volume: 6.810810810810811
    patch 533 high interf/patch volume: 8.16042780748663
    patch 534 high interf/patch volume: 6.6000000000000005
    patch 535 high interf/patch volume: 6.624161073825503
    patch 536 high interf/patch volume: 6.611111111111111
    patch 537 high interf/patch volume: 6.388059701492538
    patch 538 high interf/patch volume: 7
    patch 539 high interf/patch volume: 7.125
    patch 540 high interf/patch volume: 7
    patch 541 high interf/patch volume: 5.535947712418301
    patch 542 high interf/patch volume: 6.810810810810811
    patch 543 high interf/patch volume: 5.751633986928105
    patch 544 high interf/patch volume: 7.033333333333333
    patch 545 high interf/patch volume: 7.7210526315789485
    patch 546 high interf/patch volume: 6.737704918032788
    patch 547 high interf/patch volume: 5.358208955223881
    patch 548 high interf/patch volume: 7
    patch 549 high interf/patch volume: 7.125
    patch 550 high interf/patch volume: 5.387596899224806
    patch 551 high interf/patch volume: 7.325443786982248
    patch 552 high interf/patch volume: 6.823529411764707
    patch 553 high interf/patch volume: 6.7593984962406015
    patch 554 high interf/patch volume: 5.749999999999999
    patch 555 high interf/patch volume: 5.794117647058823
    patch 556 high interf/patch volume: 7.7103825136612025
    patch 557 high interf/patch volume: 7
    patch 558 high interf/patch volume: 7.081081081081082
    patch 559 high interf/patch volume: 6.8108108108108105
    patch 560 high interf/patch volume: 6.389261744966443
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999705489,-5916.999999745404,-5916.999999952496)
    sum a = (9.323162871929802e-09,2.200520752022178e-07,3.3507175001843206e-08)
    sum e = 14792.499999543308
    sum de = -2.629237229859107e-07
Info: CFL hydro = 5.697460953553015 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 5.697460953553015 cfl multiplier : 0.9999999999820499           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 4.5888e+03 | 5917 |     92 | 1.289e+00 | 0.0% |   2.7% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 279.1872680567423 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 62                                                      [SPH][rank=0]
Info: time since start : 1676.512196355 (s)                                           [SPH][rank=0]
Info: collected : 92 patches                                               [PatchScheduler][rank=0]
---------------- t = 6, dt = 0.10000000000000053 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5912 min = 5912                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5912 min = 5912                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 99
    min = 5912
    max = 5912
    avg = 5912
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 24.69 us   (0.2%)
   patch tree reduce : 18.45 us   (0.2%)
   gen split merge   : 3.25 us    (0.0%)
   split / merge op  : 1/3
   apply split merge : 8.97 ms    (89.9%)
   LB compute        : 469.57 us  (4.7%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (0.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (22.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.1190476190476195
    patch 1 high interf/patch volume: 4.80327868852459
    patch 2 high interf/patch volume: 4.8809523809523805
    patch 4 high interf/patch volume: 4.707692307692308
    patch 491 high interf/patch volume: 6.488095238095239
    patch 492 high interf/patch volume: 6.083333333333333
    patch 493 high interf/patch volume: 6.778625954198474
    patch 494 high interf/patch volume: 6.495049504950496
    patch 495 high interf/patch volume: 6.993377483443708
    patch 496 high interf/patch volume: 6.8255033557047
    patch 497 high interf/patch volume: 8.222222222222221
    patch 512 high interf/patch volume: 7.256756756756757
    patch 513 high interf/patch volume: 7.471264367816093
    patch 514 high interf/patch volume: 7.222222222222223
    patch 515 high interf/patch volume: 7.267605633802816
    patch 516 high interf/patch volume: 7.333333333333333
    patch 517 high interf/patch volume: 7.555555555555557
    patch 519 high interf/patch volume: 7.333333333333332
    patch 520 high interf/patch volume: 7.3235294117647065
    patch 521 high interf/patch volume: 7
    patch 522 high interf/patch volume: 8.511904761904761
    patch 523 high interf/patch volume: 7.432989690721651
    patch 524 high interf/patch volume: 7.705357142857144
    patch 525 high interf/patch volume: 7.5
    patch 526 high interf/patch volume: 7.272727272727273
    patch 527 high interf/patch volume: 8.511494252873563
    patch 528 high interf/patch volume: 7.308510638297872
    patch 529 high interf/patch volume: 6.878787878787879
    patch 531 high interf/patch volume: 7.21978021978022
    patch 532 high interf/patch volume: 7.285714285714286
    patch 533 high interf/patch volume: 8.168539325842696
    patch 534 high interf/patch volume: 7.066666666666667
    patch 535 high interf/patch volume: 7.277777777777778
    patch 536 high interf/patch volume: 7
    patch 537 high interf/patch volume: 7.164835164835165
    patch 538 high interf/patch volume: 7
    patch 539 high interf/patch volume: 8
    patch 540 high interf/patch volume: 7.125
    patch 541 high interf/patch volume: 6.736842105263158
    patch 542 high interf/patch volume: 7.166666666666667
    patch 543 high interf/patch volume: 7.162921348314607
    patch 544 high interf/patch volume: 7.533333333333333
    patch 545 high interf/patch volume: 8.705521472392638
    patch 546 high interf/patch volume: 7.383333333333333
    patch 547 high interf/patch volume: 6.405228758169935
    patch 548 high interf/patch volume: 7
    patch 549 high interf/patch volume: 6.980000000000001
    patch 550 high interf/patch volume: 6.6193181818181825
    patch 551 high interf/patch volume: 8.19496855345912
    patch 552 high interf/patch volume: 7.155172413793103
    patch 553 high interf/patch volume: 7.220588235294117
    patch 554 high interf/patch volume: 6.964497041420118
    patch 555 high interf/patch volume: 6.798780487804878
    patch 556 high interf/patch volume: 8.350877192982455
    patch 557 high interf/patch volume: 7
    patch 558 high interf/patch volume: 7.1
    patch 559 high interf/patch volume: 6.9799999999999995
    patch 560 high interf/patch volume: 6.936363636363636
    patch 561 high interf/patch volume: 6.046296296296295
    patch 562 high interf/patch volume: 5.999999999999999
    patch 563 high interf/patch volume: 6.5060975609756095
    patch 564 high interf/patch volume: 6.393700787401575
    patch 565 high interf/patch volume: 6.793650793650794
    patch 566 high interf/patch volume: 6.690607734806631
    patch 567 high interf/patch volume: 8.375
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.9999997040895,-5916.9999997124005,-5916.999999947472)
    sum a = (1.1599496523225692e-07,5.730319018294355e-11,-1.0450167977733123e-08)
    sum e = 14792.499999503663
    sum de = -1.056030373149522e-07
Info: CFL hydro = 5.657063921867958 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 5.657063921867958 cfl multiplier : 0.9999999999880332           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 4.1346e+03 | 5917 |     78 | 1.431e+00 | 0.0% |   2.4% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 251.55877996208363 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 63                                                      [SPH][rank=0]
Info: time since start : 1678.6833042290002 (s)                                       [SPH][rank=0]
Info: collected : 78 patches                                               [PatchScheduler][rank=0]
---------------- t = 6.1000000000000005, dt = 0.09999999999999964 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5917 min = 5917                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5917 min = 5917                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 78
    min = 5917
    max = 5917
    avg = 5917
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.96 us    (1.5%)
   patch tree reduce : 16.37 us   (2.4%)
   gen split merge   : 1393.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 752.00 ns  (0.1%)
   LB compute        : 588.33 us  (86.8%)
   LB move op cnt    : 0
   LB apply          : 4.79 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (20.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.904761904761906
    patch 1 high interf/patch volume: 4.699507389162561
    patch 2 high interf/patch volume: 4.54421768707483
    patch 4 high interf/patch volume: 4.801136363636364
    patch 491 high interf/patch volume: 5.778688524590164
    patch 492 high interf/patch volume: 5.790322580645162
    patch 493 high interf/patch volume: 6.65
    patch 494 high interf/patch volume: 5.685483870967744
    patch 495 high interf/patch volume: 6.375886524822694
    patch 496 high interf/patch volume: 6.321917808219177
    patch 497 high interf/patch volume: 7.208860759493673
    patch 512 high interf/patch volume: 6.903225806451614
    patch 513 high interf/patch volume: 7.08
    patch 515 high interf/patch volume: 7.269230769230769
    patch 519 high interf/patch volume: 7
    patch 520 high interf/patch volume: 7.294117647058824
    patch 522 high interf/patch volume: 8.010695187165775
    patch 523 high interf/patch volume: 7.366666666666667
    patch 524 high interf/patch volume: 7.811320754716981
    patch 526 high interf/patch volume: 7.052631578947367
    patch 527 high interf/patch volume: 7.876470588235292
    patch 528 high interf/patch volume: 7.481481481481482
    patch 529 high interf/patch volume: 7.277777777777779
    patch 531 high interf/patch volume: 7.518518518518518
    patch 533 high interf/patch volume: 7.81111111111111
    patch 534 high interf/patch volume: 6.9375
    patch 535 high interf/patch volume: 7.333333333333335
    patch 536 high interf/patch volume: 7.0625
    patch 537 high interf/patch volume: 7.19047619047619
    patch 540 high interf/patch volume: 7.249999999999999
    patch 541 high interf/patch volume: 6.698113207547169
    patch 542 high interf/patch volume: 7.512820512820513
    patch 543 high interf/patch volume: 6.560439560439559
    patch 544 high interf/patch volume: 7.4523809523809526
    patch 545 high interf/patch volume: 8.450617283950619
    patch 546 high interf/patch volume: 7.957894736842105
    patch 547 high interf/patch volume: 6.622093023255813
    patch 548 high interf/patch volume: 7
    patch 549 high interf/patch volume: 7.648648648648648
    patch 550 high interf/patch volume: 6.591397849462366
    patch 551 high interf/patch volume: 8.472222222222223
    patch 552 high interf/patch volume: 7.7105263157894735
    patch 553 high interf/patch volume: 8.126315789473683
    patch 554 high interf/patch volume: 6.502890173410404
    patch 555 high interf/patch volume: 6.634146341463415
    patch 556 high interf/patch volume: 8.229885057471263
    patch 557 high interf/patch volume: 7.153846153846154
    patch 558 high interf/patch volume: 7.409090909090909
    patch 559 high interf/patch volume: 7.2857142857142865
    patch 560 high interf/patch volume: 8.11111111111111
    patch 561 high interf/patch volume: 5.433121019108281
    patch 562 high interf/patch volume: 5.4527027027027035
    patch 563 high interf/patch volume: 6.612021857923496
    patch 564 high interf/patch volume: 5.331395348837209
    patch 565 high interf/patch volume: 6.2270270270270265
    patch 566 high interf/patch volume: 6.351190476190475
    patch 567 high interf/patch volume: 8.173076923076923
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999687156,-5916.999999723393,-5916.999999950714)
    sum a = (1.8139914465702534e-08,2.5873912500554754e-08,1.3295708687688107e-09)
    sum e = 14792.499999500755
    sum de = -4.5342487418042467e-08
Info: CFL hydro = 5.61727989851218 sink sink = inf                                    [SPH][rank=0]
Info: cfl dt = 5.61727989851218 cfl multiplier : 0.999999999992022             [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 4.5899e+03 | 5917 |     78 | 1.289e+00 | 0.0% |   2.1% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 279.2573502324533 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 64                                                      [SPH][rank=0]
Info: time since start : 1680.758640123 (s)                                           [SPH][rank=0]
Info: collected : 78 patches                                               [PatchScheduler][rank=0]
---------------- t = 6.2, dt = 0.10000000000000053 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5917 min = 5917                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5917 min = 5917                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 78
    min = 5917
    max = 5917
    avg = 5917
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.05 us   (1.4%)
   patch tree reduce : 18.51 us   (2.4%)
   gen split merge   : 1503.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.1%)
   LB compute        : 684.78 us  (87.7%)
   LB move op cnt    : 0
   LB apply          : 4.89 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (20.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.525316455696202
    patch 1 high interf/patch volume: 4.328840970350404
    patch 2 high interf/patch volume: 4.319218241042346
    patch 4 high interf/patch volume: 4.226890756302521
    patch 491 high interf/patch volume: 5.2517482517482525
    patch 492 high interf/patch volume: 5.5859375
    patch 493 high interf/patch volume: 6.521739130434782
    patch 494 high interf/patch volume: 5.843971631205674
    patch 495 high interf/patch volume: 6.60483870967742
    patch 496 high interf/patch volume: 6.731481481481481
    patch 497 high interf/patch volume: 7.645161290322578
    patch 512 high interf/patch volume: 7
    patch 513 high interf/patch volume: 7
    patch 515 high interf/patch volume: 7
    patch 519 high interf/patch volume: 7.5
    patch 520 high interf/patch volume: 7.2
    patch 522 high interf/patch volume: 8.094339622641511
    patch 523 high interf/patch volume: 8.058823529411764
    patch 524 high interf/patch volume: 8.055555555555555
    patch 526 high interf/patch volume: 7.166666666666667
    patch 527 high interf/patch volume: 7.956249999999998
    patch 528 high interf/patch volume: 8
    patch 529 high interf/patch volume: 7.2
    patch 531 high interf/patch volume: 7.652173913043478
    patch 533 high interf/patch volume: 7.882758620689655
    patch 534 high interf/patch volume: 7.285714285714286
    patch 535 high interf/patch volume: 7.705882352941177
    patch 536 high interf/patch volume: 7
    patch 537 high interf/patch volume: 7.888888888888889
    patch 540 high interf/patch volume: 7
    patch 541 high interf/patch volume: 6.214689265536723
    patch 542 high interf/patch volume: 7.352941176470588
    patch 543 high interf/patch volume: 6.353260869565218
    patch 544 high interf/patch volume: 7.4
    patch 545 high interf/patch volume: 8.233695652173914
    patch 546 high interf/patch volume: 8.51388888888889
    patch 547 high interf/patch volume: 6.3924050632911396
    patch 548 high interf/patch volume: 7.200000000000001
    patch 549 high interf/patch volume: 7.285714285714285
    patch 550 high interf/patch volume: 6.856287425149702
    patch 551 high interf/patch volume: 8.613095238095239
    patch 552 high interf/patch volume: 7.642857142857143
    patch 553 high interf/patch volume: 8.538461538461538
    patch 554 high interf/patch volume: 6.953488372093023
    patch 555 high interf/patch volume: 6.761627906976745
    patch 556 high interf/patch volume: 8.527918781725889
    patch 557 high interf/patch volume: 7.625
    patch 558 high interf/patch volume: 7.625
    patch 559 high interf/patch volume: 7.59375
    patch 560 high interf/patch volume: 8.796296296296296
    patch 561 high interf/patch volume: 5.093406593406593
    patch 562 high interf/patch volume: 5.114130434782609
    patch 563 high interf/patch volume: 5.968253968253969
    patch 564 high interf/patch volume: 5.172043010752688
    patch 565 high interf/patch volume: 6.256983240223464
    patch 566 high interf/patch volume: 6.393258426966293
    patch 567 high interf/patch volume: 8.321637426900583
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999690233,-5916.9999997195155,-5916.999999949991)
    sum a = (-6.516144397649328e-09,-2.8035441178866972e-09,-6.458384075632922e-11)
    sum e = 14792.499999499018
    sum de = 9.384489093618644e-09
Info: CFL hydro = 5.5780956647001325 sink sink = inf                                  [SPH][rank=0]
Info: cfl dt = 5.5780956647001325 cfl multiplier : 0.9999999999946813          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 4.9084e+03 | 5917 |     78 | 1.205e+00 | 0.0% |   2.1% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 298.6365499448492 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 65                                                      [SPH][rank=0]
Info: time since start : 1682.651590633 (s)                                           [SPH][rank=0]
Info: collected : 78 patches                                               [PatchScheduler][rank=0]
---------------- t = 6.300000000000001, dt = 0.09999999999999964 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5917 min = 5917                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5917 min = 5917                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 78
    min = 5917
    max = 5917
    avg = 5917
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.47 us   (1.4%)
   patch tree reduce : 17.12 us   (2.2%)
   gen split merge   : 1413.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 771.00 ns  (0.1%)
   LB compute        : 676.36 us  (87.9%)
   LB move op cnt    : 0
   LB apply          : 5.20 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (21.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.207100591715975
    patch 1 high interf/patch volume: 3.887661141804788
    patch 2 high interf/patch volume: 3.7630252100840336
    patch 3 high interf/patch volume: 4.368421052631579
    patch 4 high interf/patch volume: 3.7743119266055047
    patch 5 high interf/patch volume: 4.1499999999999995
    patch 6 high interf/patch volume: 4.25
    patch 491 high interf/patch volume: 5.405405405405405
    patch 492 high interf/patch volume: 5.9861111111111125
    patch 493 high interf/patch volume: 5.83695652173913
    patch 494 high interf/patch volume: 5.4393939393939394
    patch 495 high interf/patch volume: 5.873563218390804
    patch 496 high interf/patch volume: 5.5540540540540535
    patch 497 high interf/patch volume: 6.727272727272727
    patch 522 high interf/patch volume: 6.974789915966387
    patch 527 high interf/patch volume: 7.299145299145298
    patch 528 high interf/patch volume: 7
    patch 531 high interf/patch volume: 7
    patch 533 high interf/patch volume: 6.6060606060606055
    patch 540 high interf/patch volume: 7.125
    patch 541 high interf/patch volume: 5.98876404494382
    patch 542 high interf/patch volume: 6.411764705882353
    patch 543 high interf/patch volume: 6.028901734104046
    patch 544 high interf/patch volume: 6.846153846153846
    patch 545 high interf/patch volume: 7.878172588832486
    patch 546 high interf/patch volume: 6.916666666666666
    patch 547 high interf/patch volume: 6.401197604790419
    patch 548 high interf/patch volume: 7
    patch 549 high interf/patch volume: 7.666666666666666
    patch 550 high interf/patch volume: 6.482558139534883
    patch 551 high interf/patch volume: 7.778378378378378
    patch 552 high interf/patch volume: 7
    patch 553 high interf/patch volume: 8.083333333333332
    patch 554 high interf/patch volume: 6.112582781456954
    patch 555 high interf/patch volume: 6.147239263803681
    patch 556 high interf/patch volume: 7.810055865921787
    patch 557 high interf/patch volume: 7.333333333333333
    patch 558 high interf/patch volume: 7.133333333333333
    patch 559 high interf/patch volume: 6.857142857142857
    patch 560 high interf/patch volume: 7.4642857142857135
    patch 561 high interf/patch volume: 4.9542857142857155
    patch 562 high interf/patch volume: 5.389473684210527
    patch 563 high interf/patch volume: 6.005291005291005
    patch 564 high interf/patch volume: 5.241176470588235
    patch 565 high interf/patch volume: 5.945454545454545
    patch 566 high interf/patch volume: 6.438202247191011
    patch 567 high interf/patch volume: 8.424418604651162
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.9999996921215,-5916.999999721232,-5916.999999950071)
    sum a = (-5.34158569863955e-10,8.703925937762368e-11,3.989772686762711e-09)
    sum e = 14792.49999950247
    sum de = -3.543323470904289e-09
Info: CFL hydro = 5.539498376172103 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 5.539498376172103 cfl multiplier : 0.9999999999964541           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4015e+03 | 5917 |     78 | 1.095e+00 | 0.0% |   2.3% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 328.63784826282136 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 66                                                      [SPH][rank=0]
Info: time since start : 1684.4314128580002 (s)                                       [SPH][rank=0]
Info: collected : 78 patches                                               [PatchScheduler][rank=0]
---------------- t = 6.4, dt = 0.09999999999999964 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5906 min = 5906                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5906 min = 5906                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 99
    min = 5906
    max = 5906
    avg = 5906
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.54 us   (0.2%)
   patch tree reduce : 18.45 us   (0.3%)
   gen split merge   : 3.01 us    (0.1%)
   split / merge op  : 3/1
   apply split merge : 4.99 ms    (84.8%)
   LB compute        : 476.98 us  (8.1%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (21.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.180232558139535
    patch 3 high interf/patch volume: 4.176470588235294
    patch 5 high interf/patch volume: 4.078947368421052
    patch 6 high interf/patch volume: 4.279069767441861
    patch 7 high interf/patch volume: 7
    patch 491 high interf/patch volume: 4.467213114754099
    patch 492 high interf/patch volume: 4.2518518518518515
    patch 493 high interf/patch volume: 5.529411764705881
    patch 494 high interf/patch volume: 4.241610738255033
    patch 495 high interf/patch volume: 5.378378378378379
    patch 496 high interf/patch volume: 5.525
    patch 497 high interf/patch volume: 7
    patch 522 high interf/patch volume: 6.7
    patch 527 high interf/patch volume: 6.777777777777779
    patch 533 high interf/patch volume: 6.859999999999999
    patch 541 high interf/patch volume: 4.914728682170543
    patch 543 high interf/patch volume: 5.088235294117646
    patch 545 high interf/patch volume: 6.406896551724139
    patch 547 high interf/patch volume: 4.936708860759493
    patch 550 high interf/patch volume: 4.932885906040268
    patch 551 high interf/patch volume: 6.5418994413407825
    patch 554 high interf/patch volume: 5.076388888888888
    patch 555 high interf/patch volume: 4.6940298507462686
    patch 556 high interf/patch volume: 6.2974683544303796
    patch 561 high interf/patch volume: 5.0473684210526315
    patch 562 high interf/patch volume: 4.711764705882353
    patch 563 high interf/patch volume: 5.798969072164949
    patch 564 high interf/patch volume: 5.0710382513661205
    patch 565 high interf/patch volume: 6.165876777251183
    patch 566 high interf/patch volume: 5.823529411764705
    patch 567 high interf/patch volume: 8.152777777777779
    patch 568 high interf/patch volume: 3.2771260997067446
    patch 578 high interf/patch volume: 3.081225033288948
    patch 583 high interf/patch volume: 3.2410119840213047
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999691875,-5916.999999721076,-5916.999999949465)
    sum a = (9.201542305881105e-12,2.1214272889064079e-07,3.439331285048919e-12)
    sum e = 14792.499999501248
    sum de = -2.121914749429743e-07
Info: CFL hydro = 5.501475550493255 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 5.501475550493255 cfl multiplier : 0.999999999997636            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 7.3371e+03 | 5917 |     92 | 8.065e-01 | 0.0% |   2.2% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 446.4000425687064 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 67                                                      [SPH][rank=0]
Info: time since start : 1686.007254461 (s)                                           [SPH][rank=0]
Info: collected : 92 patches                                               [PatchScheduler][rank=0]
---------------- t = 6.5, dt = 0.10000000000000053 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5901 min = 5901                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5901 min = 5901                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 113
    min = 5901
    max = 5901
    avg = 5901
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.03 us   (0.1%)
   patch tree reduce : 18.34 us   (0.1%)
   gen split merge   : 3.07 us    (0.0%)
   split / merge op  : 3/0
   apply split merge : 14.01 ms   (95.9%)
   LB compute        : 488.55 us  (3.3%)
   LB move op cnt    : 0
   LB apply          : 4.48 us    (0.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (17.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.1
    patch 3 high interf/patch volume: 4.078189300411523
    patch 5 high interf/patch volume: 3.583732057416267
    patch 6 high interf/patch volume: 3.7970297029702973
    patch 7 high interf/patch volume: 5.785714285714286
    patch 491 high interf/patch volume: 5.775
    patch 492 high interf/patch volume: 5.919117647058824
    patch 493 high interf/patch volume: 7.666666666666667
    patch 494 high interf/patch volume: 5.418181818181819
    patch 495 high interf/patch volume: 7.2857142857142865
    patch 496 high interf/patch volume: 8
    patch 522 high interf/patch volume: 7.222222222222221
    patch 527 high interf/patch volume: 7.333333333333333
    patch 533 high interf/patch volume: 7.555555555555555
    patch 541 high interf/patch volume: 6.690721649484537
    patch 543 high interf/patch volume: 6.595744680851064
    patch 545 high interf/patch volume: 7.256756756756756
    patch 547 high interf/patch volume: 7.2767857142857135
    patch 550 high interf/patch volume: 6.740740740740741
    patch 551 high interf/patch volume: 7.5632183908045985
    patch 554 high interf/patch volume: 6.626373626373627
    patch 555 high interf/patch volume: 6.571428571428572
    patch 556 high interf/patch volume: 7.295774647887323
    patch 561 high interf/patch volume: 6.282208588957055
    patch 562 high interf/patch volume: 5.943396226415094
    patch 563 high interf/patch volume: 7.392857142857143
    patch 564 high interf/patch volume: 5.900584795321637
    patch 565 high interf/patch volume: 7.385057471264369
    patch 566 high interf/patch volume: 7.106741573033707
    patch 567 high interf/patch volume: 8.304093567251462
    patch 589 high interf/patch volume: 3.402203856749312
    patch 591 high interf/patch volume: 5.45631067961165
    patch 593 high interf/patch volume: 4.988235294117647
    patch 595 high interf/patch volume: 7
    patch 599 high interf/patch volume: 3.205748865355522
    patch 600 high interf/patch volume: 5.260869565217392
    patch 601 high interf/patch volume: 5.214285714285714
    patch 602 high interf/patch volume: 7
    patch 604 high interf/patch volume: 3.6474622770919063
    patch 605 high interf/patch volume: 5.4743589743589745
    patch 608 high interf/patch volume: 5.0843373493975905
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999691844,-5916.999999689262,-5916.999999949668)
    sum a = (1.1305104574612507e-07,7.45777363475586e-11,-1.0361304949983198e-08)
    sum e = 14792.499999469366
    sum de = -1.0276495293962129e-07
Info: CFL hydro = 5.464015053549443 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 5.464015053549443 cfl multiplier : 0.999999999998424            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.1792e+03 | 5917 |    113 | 9.576e-01 | 0.0% |   2.5% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 375.953509346755 (tsim/hr)                              [sph::Model][rank=0]
Info: iteration since start : 68                                                      [SPH][rank=0]
Info: time since start : 1687.684918789 (s)                                           [SPH][rank=0]
Info: collected : 113 patches                                              [PatchScheduler][rank=0]
---------------- t = 6.6000000000000005, dt = 0.09999999999999964 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5905 min = 5905                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5905 min = 5905                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 134
    min = 5905
    max = 5905
    avg = 5905
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.28 us   (0.0%)
   patch tree reduce : 27.29 us   (0.1%)
   gen split merge   : 3.20 us    (0.0%)
   split / merge op  : 3/3
   apply split merge : 28.24 ms   (91.2%)
   LB compute        : 554.52 us  (1.8%)
   LB move op cnt    : 0
   LB apply          : 4.99 us    (0.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.30 us    (22.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.935897435897435
    patch 3 high interf/patch volume: 5.067988668555241
    patch 5 high interf/patch volume: 4.893491124260355
    patch 6 high interf/patch volume: 5.044378698224853
    patch 7 high interf/patch volume: 4.548672566371682
    patch 491 high interf/patch volume: 7.031578947368422
    patch 492 high interf/patch volume: 7.178947368421053
    patch 494 high interf/patch volume: 7.2592592592592595
    patch 541 high interf/patch volume: 6.983333333333334
    patch 543 high interf/patch volume: 7.0740740740740735
    patch 545 high interf/patch volume: 6.903225806451614
    patch 547 high interf/patch volume: 7.377358490566038
    patch 550 high interf/patch volume: 6.944444444444445
    patch 551 high interf/patch volume: 7.08
    patch 554 high interf/patch volume: 7.166666666666667
    patch 555 high interf/patch volume: 6.825396825396825
    patch 556 high interf/patch volume: 7.269230769230769
    patch 561 high interf/patch volume: 7.75776397515528
    patch 562 high interf/patch volume: 7.772222222222223
    patch 563 high interf/patch volume: 7.6524064171123
    patch 564 high interf/patch volume: 7.655172413793103
    patch 565 high interf/patch volume: 7.588235294117647
    patch 566 high interf/patch volume: 7.488888888888889
    patch 567 high interf/patch volume: 7.215189873417721
    patch 589 high interf/patch volume: 6.104477611940299
    patch 591 high interf/patch volume: 6.537037037037037
    patch 593 high interf/patch volume: 6.327586206896551
    patch 599 high interf/patch volume: 5.958333333333334
    patch 600 high interf/patch volume: 6.241379310344828
    patch 601 high interf/patch volume: 6.444444444444444
    patch 604 high interf/patch volume: 5.945454545454545
    patch 605 high interf/patch volume: 6.39344262295082
    patch 608 high interf/patch volume: 6.709677419354839
    patch 610 high interf/patch volume: 6.688622754491019
    patch 611 high interf/patch volume: 5.870967741935484
    patch 612 high interf/patch volume: 6.392473118279569
    patch 613 high interf/patch volume: 6.125
    patch 614 high interf/patch volume: 6.457317073170732
    patch 615 high interf/patch volume: 7.000000000000001
    patch 616 high interf/patch volume: 6.458904109589041
    patch 617 high interf/patch volume: 6.310344827586206
    patch 618 high interf/patch volume: 6.060606060606061
    patch 619 high interf/patch volume: 7.222222222222222
    patch 620 high interf/patch volume: 6.918032786885247
    patch 621 high interf/patch volume: 6.612500000000001
    patch 622 high interf/patch volume: 6.377906976744185
    patch 623 high interf/patch volume: 6.814285714285714
    patch 624 high interf/patch volume: 6.238095238095237
    patch 625 high interf/patch volume: 6.935135135135136
    patch 626 high interf/patch volume: 6.752747252747252
    patch 627 high interf/patch volume: 6.269230769230769
    patch 628 high interf/patch volume: 7.25
    patch 629 high interf/patch volume: 6.676300578034681
    patch 630 high interf/patch volume: 6.79432624113475
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999674889,-5916.999999699855,-5916.999999951221)
    sum a = (1.67701096325662e-08,2.4060802756870753e-08,1.2604898492162009e-09)
    sum e = 14792.49999946433
    sum de = -4.209033078257825e-08
Info: CFL hydro = 5.427105088121852 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 5.427105088121852 cfl multiplier : 0.9999999999989493           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 4.8864e+03 | 5917 |    113 | 1.211e+00 | 0.0% |   2.3% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 297.29670582862474 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 69                                                      [SPH][rank=0]
Info: time since start : 1689.709384532 (s)                                           [SPH][rank=0]
Info: collected : 113 patches                                              [PatchScheduler][rank=0]
---------------- t = 6.7, dt = 0.10000000000000053 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5917 min = 5917                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5917 min = 5917                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 113
    min = 5917
    max = 5917
    avg = 5917
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.11 us   (1.6%)
   patch tree reduce : 23.08 us   (3.4%)
   gen split merge   : 1803.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.1%)
   LB compute        : 569.29 us  (84.5%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.57 us    (13.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8.140350877192983
    patch 3 high interf/patch volume: 4.595744680851064
    patch 5 high interf/patch volume: 4.180467091295117
    patch 6 high interf/patch volume: 4.2845188284518825
    patch 7 high interf/patch volume: 3.5536480686695278
    patch 491 high interf/patch volume: 7.513888888888888
    patch 492 high interf/patch volume: 7.569230769230769
    patch 494 high interf/patch volume: 7.722222222222224
    patch 541 high interf/patch volume: 7.529411764705882
    patch 543 high interf/patch volume: 7.347826086956523
    patch 545 high interf/patch volume: 7
    patch 547 high interf/patch volume: 7.444444444444443
    patch 550 high interf/patch volume: 7.058823529411765
    patch 551 high interf/patch volume: 7
    patch 554 high interf/patch volume: 7.0434782608695645
    patch 555 high interf/patch volume: 7.333333333333334
    patch 556 high interf/patch volume: 7
    patch 561 high interf/patch volume: 7.655737704918033
    patch 562 high interf/patch volume: 7.863095238095239
    patch 563 high interf/patch volume: 7.685534591194968
    patch 564 high interf/patch volume: 7.812182741116753
    patch 565 high interf/patch volume: 7.577639751552796
    patch 566 high interf/patch volume: 7.5103448275862075
    patch 567 high interf/patch volume: 7.645161290322581
    patch 589 high interf/patch volume: 5.466666666666667
    patch 591 high interf/patch volume: 6.6
    patch 593 high interf/patch volume: 6.714285714285714
    patch 599 high interf/patch volume: 5.415730337078651
    patch 600 high interf/patch volume: 6.299999999999999
    patch 601 high interf/patch volume: 6.151515151515151
    patch 604 high interf/patch volume: 5.670454545454545
    patch 605 high interf/patch volume: 6.555555555555555
    patch 608 high interf/patch volume: 6.459459459459459
    patch 610 high interf/patch volume: 6.96045197740113
    patch 611 high interf/patch volume: 5.857142857142858
    patch 612 high interf/patch volume: 6.736526946107784
    patch 613 high interf/patch volume: 5.72093023255814
    patch 614 high interf/patch volume: 6.780346820809248
    patch 615 high interf/patch volume: 7
    patch 616 high interf/patch volume: 7.0277777777777795
    patch 617 high interf/patch volume: 5.695652173913044
    patch 618 high interf/patch volume: 5.475
    patch 619 high interf/patch volume: 7.142857142857142
    patch 620 high interf/patch volume: 6.476190476190475
    patch 621 high interf/patch volume: 6.350282485875706
    patch 622 high interf/patch volume: 6.215189873417721
    patch 623 high interf/patch volume: 6.756521739130434
    patch 624 high interf/patch volume: 6.032258064516129
    patch 625 high interf/patch volume: 6.999999999999998
    patch 626 high interf/patch volume: 6.6521739130434785
    patch 627 high interf/patch volume: 5.96969696969697
    patch 628 high interf/patch volume: 7.111111111111111
    patch 629 high interf/patch volume: 6.784883720930233
    patch 630 high interf/patch volume: 7.096774193548388
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999678027,-5916.9999996962515,-5916.999999950515)
    sum a = (-5.78090290264191e-09,-2.5310355447789867e-09,-6.232330233488237e-11)
    sum e = 14792.49999946293
    sum de = 8.374495397492354e-09
Info: CFL hydro = 5.390734181999989 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 5.390734181999989 cfl multiplier : 0.9999999999992996           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 4.8723e+03 | 5917 |    113 | 1.214e+00 | 0.0% |   2.2% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 296.43596496796005 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 70                                                      [SPH][rank=0]
Info: time since start : 1691.814947993 (s)                                           [SPH][rank=0]
Info: collected : 113 patches                                              [PatchScheduler][rank=0]
---------------- t = 6.800000000000001, dt = 0.09999999999999964 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5917 min = 5917                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5917 min = 5917                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 113
    min = 5917
    max = 5917
    avg = 5917
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.00 us   (1.6%)
   patch tree reduce : 23.76 us   (3.4%)
   gen split merge   : 1673.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.1%)
   LB compute        : 584.16 us  (83.4%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (17.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8.563953488372093
    patch 3 high interf/patch volume: 3.6048526863084924
    patch 5 high interf/patch volume: 3.793388429752066
    patch 6 high interf/patch volume: 3.5114006514657983
    patch 7 high interf/patch volume: 2.4831730769230775
    patch 491 high interf/patch volume: 6.629629629629629
    patch 492 high interf/patch volume: 7.333333333333333
    patch 494 high interf/patch volume: 6.9642857142857135
    patch 543 high interf/patch volume: 7
    patch 554 high interf/patch volume: 7
    patch 561 high interf/patch volume: 7.74742268041237
    patch 562 high interf/patch volume: 7.48108108108108
    patch 563 high interf/patch volume: 6.999999999999999
    patch 564 high interf/patch volume: 7.4916201117318435
    patch 565 high interf/patch volume: 7.3589743589743595
    patch 566 high interf/patch volume: 6.727272727272726
    patch 567 high interf/patch volume: 6.696969696969697
    patch 589 high interf/patch volume: 5.1328125
    patch 591 high interf/patch volume: 6.25
    patch 593 high interf/patch volume: 6.214285714285714
    patch 599 high interf/patch volume: 4.9322033898305095
    patch 600 high interf/patch volume: 6.055555555555555
    patch 601 high interf/patch volume: 6.666666666666667
    patch 604 high interf/patch volume: 4.969465648854961
    patch 605 high interf/patch volume: 6.642857142857144
    patch 608 high interf/patch volume: 6.4
    patch 610 high interf/patch volume: 7.415730337078651
    patch 611 high interf/patch volume: 5.875
    patch 612 high interf/patch volume: 6.97093023255814
    patch 613 high interf/patch volume: 5.5777777777777775
    patch 614 high interf/patch volume: 6.601226993865031
    patch 615 high interf/patch volume: 7.166666666666667
    patch 616 high interf/patch volume: 7
    patch 617 high interf/patch volume: 5.611111111111112
    patch 618 high interf/patch volume: 5.585365853658537
    patch 619 high interf/patch volume: 7
    patch 620 high interf/patch volume: 6.724867724867725
    patch 621 high interf/patch volume: 6.480225988700564
    patch 622 high interf/patch volume: 6.431137724550899
    patch 623 high interf/patch volume: 6.956521739130435
    patch 624 high interf/patch volume: 5.745098039215685
    patch 625 high interf/patch volume: 6.842424242424243
    patch 626 high interf/patch volume: 6.662790697674418
    patch 627 high interf/patch volume: 5.521739130434782
    patch 628 high interf/patch volume: 7
    patch 629 high interf/patch volume: 6.331125827814571
    patch 630 high interf/patch volume: 7.287356321839081
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.99999967973,-5916.999999697831,-5916.999999950586)
    sum a = (-1.3010426069826053e-18,-1.474514954580286e-17,1.0842021724855044e-17)
    sum e = 14792.499999466054
    sum de = 3.642919299551295e-17
Info: CFL hydro = 5.354891176764885 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 5.354891176764885 cfl multiplier : 0.9999999999995332           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6614e+03 | 5917 |    113 | 1.045e+00 | 0.0% |   2.0% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 344.4498965653785 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 71                                                      [SPH][rank=0]
Info: time since start : 1693.671961186 (s)                                           [SPH][rank=0]
Info: collected : 113 patches                                              [PatchScheduler][rank=0]
---------------- t = 6.9, dt = 0.09999999999999964 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5905 min = 5905                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5905 min = 5905                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 134
    min = 5905
    max = 5905
    avg = 5905
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.43 us   (0.2%)
   patch tree reduce : 22.01 us   (0.3%)
   gen split merge   : 3.40 us    (0.0%)
   split / merge op  : 3/3
   apply split merge : 5.08 ms    (74.2%)
   LB compute        : 508.79 us  (7.4%)
   LB move op cnt    : 0
   LB apply          : 4.96 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (20.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8.462962962962964
    patch 7 high interf/patch volume: 1.88822652757079
    patch 561 high interf/patch volume: 6.517241379310345
    patch 562 high interf/patch volume: 6.502793296089386
    patch 563 high interf/patch volume: 6.7250000000000005
    patch 564 high interf/patch volume: 6.30379746835443
    patch 565 high interf/patch volume: 6.805555555555555
    patch 566 high interf/patch volume: 6.86
    patch 567 high interf/patch volume: 7
    patch 589 high interf/patch volume: 4.717241379310345
    patch 599 high interf/patch volume: 4.6050955414012735
    patch 604 high interf/patch volume: 4.752873563218391
    patch 610 high interf/patch volume: 6.909090909090909
    patch 611 high interf/patch volume: 4.9750000000000005
    patch 612 high interf/patch volume: 5.744966442953021
    patch 613 high interf/patch volume: 4.944444444444445
    patch 614 high interf/patch volume: 5.492537313432836
    patch 615 high interf/patch volume: 7
    patch 616 high interf/patch volume: 7.124999999999999
    patch 617 high interf/patch volume: 5.055555555555555
    patch 618 high interf/patch volume: 5.140000000000001
    patch 619 high interf/patch volume: 7
    patch 620 high interf/patch volume: 7.020942408376963
    patch 621 high interf/patch volume: 5.767441860465117
    patch 622 high interf/patch volume: 5.7834394904458595
    patch 623 high interf/patch volume: 6.970588235294119
    patch 624 high interf/patch volume: 5.222222222222221
    patch 625 high interf/patch volume: 7.132701421800947
    patch 626 high interf/patch volume: 5.897058823529411
    patch 627 high interf/patch volume: 5.170212765957446
    patch 628 high interf/patch volume: 7
    patch 629 high interf/patch volume: 5.887323943661971
    patch 630 high interf/patch volume: 6.864864864864865
    patch 636 high interf/patch volume: 3.1159618008185537
    patch 640 high interf/patch volume: 3.099447513812154
    patch 649 high interf/patch volume: 2.9941690962099123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999679444,-5916.999999697704,-5916.999999950579)
    sum a = (4.144810189631726e-07,1.7017752654453766e-07,1.9783541773885083e-07)
    sum e = 14792.499999465392
    sum de = -7.825151636230848e-07
Info: CFL hydro = 5.319565217588542 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 5.319565217588542 cfl multiplier : 0.9999999999996888           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 7.3178e+03 | 5917 |    113 | 8.086e-01 | 0.0% |   2.2% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 445.2279312733485 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 72                                                      [SPH][rank=0]
Info: time since start : 1695.368870473 (s)                                           [SPH][rank=0]
Info: collected : 113 patches                                              [PatchScheduler][rank=0]
---------------- t = 7, dt = 0.10000000000000053 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5895 min = 5895                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5895 min = 5895                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 141
    min = 5895
    max = 5895
    avg = 5895
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.08 us   (0.1%)
   patch tree reduce : 19.85 us   (0.2%)
   gen split merge   : 2.77 us    (0.0%)
   split / merge op  : 4/0
   apply split merge : 8.01 ms    (89.9%)
   LB compute        : 779.92 us  (8.8%)
   LB move op cnt    : 0
   LB apply          : 4.63 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (15.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8.649122807017545
    patch 561 high interf/patch volume: 7.216216216216217
    patch 562 high interf/patch volume: 7.563218390804598
    patch 563 high interf/patch volume: 7.222222222222223
    patch 564 high interf/patch volume: 7.183098591549296
    patch 565 high interf/patch volume: 7.333333333333333
    patch 566 high interf/patch volume: 7.555555555555557
    patch 568 high interf/patch volume: 6.4
    patch 578 high interf/patch volume: 6.142857142857142
    patch 583 high interf/patch volume: 6
    patch 589 high interf/patch volume: 5.8175675675675675
    patch 599 high interf/patch volume: 5.908396946564886
    patch 604 high interf/patch volume: 6.066225165562914
    patch 610 high interf/patch volume: 7.185393258426966
    patch 611 high interf/patch volume: 5.511111111111111
    patch 612 high interf/patch volume: 6.518518518518521
    patch 613 high interf/patch volume: 5.2
    patch 614 high interf/patch volume: 6.252747252747254
    patch 615 high interf/patch volume: 7
    patch 616 high interf/patch volume: 8.0625
    patch 617 high interf/patch volume: 5.4074074074074066
    patch 618 high interf/patch volume: 5.852941176470589
    patch 619 high interf/patch volume: 7
    patch 620 high interf/patch volume: 7.422619047619048
    patch 621 high interf/patch volume: 6.298969072164949
    patch 622 high interf/patch volume: 6.9017857142857135
    patch 623 high interf/patch volume: 7.5
    patch 624 high interf/patch volume: 5.424242424242424
    patch 625 high interf/patch volume: 7.46551724137931
    patch 626 high interf/patch volume: 6.351063829787234
    patch 627 high interf/patch volume: 5.484848484848484
    patch 629 high interf/patch volume: 6.351648351648351
    patch 630 high interf/patch volume: 7.285714285714286
    patch 658 high interf/patch volume: 2.3864818024263434
    patch 660 high interf/patch volume: 5.153846153846154
    patch 662 high interf/patch volume: 5.142857142857142
    patch 664 high interf/patch volume: 3.691919191919192
    patch 666 high interf/patch volume: 5.3999999999999995
    patch 667 high interf/patch volume: 4.764705882352941
    patch 668 high interf/patch volume: 3.624242424242425
    patch 673 high interf/patch volume: 5.125
    patch 676 high interf/patch volume: 4.5625
    patch 677 high interf/patch volume: 3.484848484848485
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.99999961727,-5916.999999672176,-5916.999999920903)
    sum a = (8.478545942755544e-08,-2.643970289234465e-09,-1.9968428195682453e-09)
    sum e = 14792.49999934778
    sum de = -8.014526678683936e-08
Info: CFL hydro = 5.284745742169399 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 5.284745742169399 cfl multiplier : 0.9999999999997925           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.6192e+03 | 5917 |    141 | 8.939e-01 | 0.0% |   1.8% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 402.7248448019007 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 73                                                      [SPH][rank=0]
Info: time since start : 1697.0688703740002 (s)                                       [SPH][rank=0]
Info: collected : 141 patches                                              [PatchScheduler][rank=0]
---------------- t = 7.1000000000000005, dt = 0.09999999999999964 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5913 min = 5913                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5913 min = 5913                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 169
    min = 5913
    max = 5913
    avg = 5913
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.99 us    (0.0%)
   patch tree reduce : 23.46 us   (0.1%)
   gen split merge   : 3.04 us    (0.0%)
   split / merge op  : 4/0
   apply split merge : 36.84 ms   (98.3%)
   LB compute        : 506.22 us  (1.4%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (0.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (11.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.525316455696203
    patch 561 high interf/patch volume: 6.903225806451614
    patch 562 high interf/patch volume: 7.199999999999999
    patch 564 high interf/patch volume: 7.346153846153846
    patch 568 high interf/patch volume: 7.384615384615385
    patch 578 high interf/patch volume: 7.666666666666667
    patch 583 high interf/patch volume: 7.75
    patch 589 high interf/patch volume: 7.205479452054794
    patch 599 high interf/patch volume: 7.757142857142858
    patch 604 high interf/patch volume: 7.9290780141843955
    patch 610 high interf/patch volume: 7.861111111111111
    patch 611 high interf/patch volume: 7.0625
    patch 612 high interf/patch volume: 7.333333333333335
    patch 613 high interf/patch volume: 7.1875
    patch 614 high interf/patch volume: 7.19047619047619
    patch 617 high interf/patch volume: 7.157894736842105
    patch 618 high interf/patch volume: 7.529411764705882
    patch 620 high interf/patch volume: 8.176470588235293
    patch 621 high interf/patch volume: 7.366666666666667
    patch 622 high interf/patch volume: 7.867924528301887
    patch 624 high interf/patch volume: 7.157894736842104
    patch 625 high interf/patch volume: 8.423529411764706
    patch 626 high interf/patch volume: 7.555555555555555
    patch 627 high interf/patch volume: 7.722222222222223
    patch 629 high interf/patch volume: 7.7407407407407405
    patch 660 high interf/patch volume: 6.735294117647059
    patch 662 high interf/patch volume: 6.480000000000001
    patch 664 high interf/patch volume: 5.950819672131147
    patch 666 high interf/patch volume: 6.4333333333333345
    patch 667 high interf/patch volume: 6.3076923076923075
    patch 668 high interf/patch volume: 5.82258064516129
    patch 673 high interf/patch volume: 6.189189189189189
    patch 676 high interf/patch volume: 5.842105263157895
    patch 677 high interf/patch volume: 5.564516129032258
    patch 682 high interf/patch volume: 4.25
    patch 684 high interf/patch volume: 4.3809523809523805
    patch 685 high interf/patch volume: 4.380530973451327
    patch 686 high interf/patch volume: 4.163265306122449
    patch 687 high interf/patch volume: 7.166666666666666
    patch 688 high interf/patch volume: 7.3125
    patch 689 high interf/patch volume: 7.6410256410256405
    patch 690 high interf/patch volume: 7.445054945054946
    patch 691 high interf/patch volume: 7.6190476190476195
    patch 692 high interf/patch volume: 8.347826086956522
    patch 693 high interf/patch volume: 8.05263157894737
    patch 694 high interf/patch volume: 7.30635838150289
    patch 695 high interf/patch volume: 6.951219512195123
    patch 696 high interf/patch volume: 8.051724137931034
    patch 697 high interf/patch volume: 7.153846153846154
    patch 698 high interf/patch volume: 7.886363636363637
    patch 699 high interf/patch volume: 7.595238095238097
    patch 700 high interf/patch volume: 8.308641975308642
    patch 701 high interf/patch volume: 6.813953488372092
    patch 702 high interf/patch volume: 7
    patch 703 high interf/patch volume: 7.648648648648648
    patch 704 high interf/patch volume: 6.758064516129033
    patch 705 high interf/patch volume: 7.950000000000001
    patch 706 high interf/patch volume: 7.842105263157895
    patch 707 high interf/patch volume: 8.126315789473685
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999625274,-5916.999999681085,-5916.999999931096)
    sum a = (1.5367273914913392e-08,2.2185746221918545e-08,1.1880279223493856e-09)
    sum e = 14792.499999374642
    sum de = -3.873983385124791e-08
Info: CFL hydro = 5.250422471562867 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 5.250422471562867 cfl multiplier : 0.9999999999998618           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 4.1862e+03 | 5917 |    169 | 1.413e+00 | 0.0% |   1.9% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 254.6927074753953 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 74                                                      [SPH][rank=0]
Info: time since start : 1699.480569213 (s)                                           [SPH][rank=0]
Info: collected : 169 patches                                              [PatchScheduler][rank=0]
---------------- t = 7.2, dt = 0.10000000000000053 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5915 min = 5915                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5915 min = 5915                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 176
    min = 5915
    max = 5915
    avg = 5915
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.35 us   (0.1%)
   patch tree reduce : 26.03 us   (0.2%)
   gen split merge   : 3.06 us    (0.0%)
   split / merge op  : 1/0
   apply split merge : 10.34 ms   (93.8%)
   LB compute        : 520.30 us  (4.7%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (0.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (11.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.645161290322579
    patch 561 high interf/patch volume: 7
    patch 562 high interf/patch volume: 7
    patch 564 high interf/patch volume: 7
    patch 568 high interf/patch volume: 7.222222222222221
    patch 578 high interf/patch volume: 7.285714285714286
    patch 583 high interf/patch volume: 7.333333333333332
    patch 589 high interf/patch volume: 7.907407407407408
    patch 599 high interf/patch volume: 7.7217391304347816
    patch 604 high interf/patch volume: 7.887096774193547
    patch 610 high interf/patch volume: 7.882758620689656
    patch 611 high interf/patch volume: 7.571428571428571
    patch 612 high interf/patch volume: 7.705882352941177
    patch 613 high interf/patch volume: 7
    patch 614 high interf/patch volume: 7.888888888888889
    patch 617 high interf/patch volume: 7.666666666666666
    patch 618 high interf/patch volume: 7.4
    patch 620 high interf/patch volume: 8.09433962264151
    patch 621 high interf/patch volume: 8.058823529411764
    patch 622 high interf/patch volume: 8.055555555555555
    patch 624 high interf/patch volume: 7.333333333333334
    patch 625 high interf/patch volume: 7.987577639751553
    patch 626 high interf/patch volume: 8
    patch 627 high interf/patch volume: 7.2
    patch 629 high interf/patch volume: 7.6521739130434785
    patch 660 high interf/patch volume: 6.21875
    patch 662 high interf/patch volume: 6.2
    patch 664 high interf/patch volume: 6.223776223776224
    patch 666 high interf/patch volume: 6.574468085106383
    patch 667 high interf/patch volume: 6.245901639344261
    patch 668 high interf/patch volume: 6.808510638297873
    patch 673 high interf/patch volume: 6.264150943396226
    patch 676 high interf/patch volume: 6.294117647058823
    patch 677 high interf/patch volume: 6.390625
    patch 682 high interf/patch volume: 5.399141630901287
    patch 684 high interf/patch volume: 5.548543689320389
    patch 685 high interf/patch volume: 5.279999999999999
    patch 686 high interf/patch volume: 4.525316455696202
    patch 687 high interf/patch volume: 7
    patch 688 high interf/patch volume: 7.435028248587571
    patch 689 high interf/patch volume: 7.588235294117647
    patch 690 high interf/patch volume: 7.527173913043478
    patch 691 high interf/patch volume: 7.600000000000001
    patch 692 high interf/patch volume: 8.28415300546448
    patch 693 high interf/patch volume: 8.541666666666668
    patch 694 high interf/patch volume: 7.936046511627907
    patch 695 high interf/patch volume: 7.768786127167628
    patch 696 high interf/patch volume: 8.52791878172589
    patch 697 high interf/patch volume: 7.625
    patch 698 high interf/patch volume: 7.84375
    patch 699 high interf/patch volume: 7.84375
    patch 700 high interf/patch volume: 8.796296296296296
    patch 701 high interf/patch volume: 7.430379746835443
    patch 702 high interf/patch volume: 7.200000000000001
    patch 703 high interf/patch volume: 7.535714285714286
    patch 704 high interf/patch volume: 7.8083832335329335
    patch 705 high interf/patch volume: 8.613095238095237
    patch 706 high interf/patch volume: 7.857142857142858
    patch 707 high interf/patch volume: 8.538461538461538
    patch 708 high interf/patch volume: 6.126373626373625
    patch 709 high interf/patch volume: 5.918478260869566
    patch 710 high interf/patch volume: 7.2592592592592595
    patch 711 high interf/patch volume: 6.059139784946236
    patch 712 high interf/patch volume: 7.564245810055866
    patch 713 high interf/patch volume: 7.474576271186441
    patch 714 high interf/patch volume: 8.461988304093566
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999627211,-5916.999999677624,-5916.999999930819)
    sum a = (-5.024460470711859e-09,-2.257316495204581e-09,-5.893478663287028e-11)
    sum e = 14792.499999372583
    sum de = 7.34095738848089e-09
Info: CFL hydro = 5.216585400477772 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 5.216585400477772 cfl multiplier : 0.999999999999908            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.8605e+03 | 5917 |    176 | 1.533e+00 | 0.0% |   2.1% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 234.87612702544988 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 75                                                      [SPH][rank=0]
Info: time since start : 1702.0463781320002 (s)                                       [SPH][rank=0]
Info: collected : 176 patches                                              [PatchScheduler][rank=0]
---------------- t = 7.300000000000001, dt = 0.09999999999999964 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5917 min = 5917                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5917 min = 5917                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 176
    min = 5917
    max = 5917
    avg = 5917
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.02 us   (1.3%)
   patch tree reduce : 27.61 us   (3.3%)
   gen split merge   : 2.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.1%)
   LB compute        : 674.68 us  (80.8%)
   LB move op cnt    : 0
   LB apply          : 4.69 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (8.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.696969696969696
    patch 568 high interf/patch volume: 7.166666666666667
    patch 578 high interf/patch volume: 7
    patch 583 high interf/patch volume: 7
    patch 589 high interf/patch volume: 6.9594594594594605
    patch 599 high interf/patch volume: 7.228260869565218
    patch 604 high interf/patch volume: 7.32183908045977
    patch 610 high interf/patch volume: 6.787878787878788
    patch 620 high interf/patch volume: 7.008403361344539
    patch 625 high interf/patch volume: 7.299145299145299
    patch 626 high interf/patch volume: 7
    patch 629 high interf/patch volume: 7
    patch 640 high interf/patch volume: 7
    patch 660 high interf/patch volume: 5.955555555555556
    patch 662 high interf/patch volume: 5.9010989010989015
    patch 664 high interf/patch volume: 6.299319727891157
    patch 666 high interf/patch volume: 6.243589743589744
    patch 667 high interf/patch volume: 6.197183098591548
    patch 668 high interf/patch volume: 6.636363636363636
    patch 673 high interf/patch volume: 6.318840579710145
    patch 676 high interf/patch volume: 6.217391304347827
    patch 677 high interf/patch volume: 6.861111111111112
    patch 680 high interf/patch volume: 4.916666666666666
    patch 681 high interf/patch volume: 4.85
    patch 682 high interf/patch volume: 4.4523809523809526
    patch 683 high interf/patch volume: 5.333333333333334
    patch 684 high interf/patch volume: 4.576923076923077
    patch 685 high interf/patch volume: 4.644836272040302
    patch 686 high interf/patch volume: 5.207100591715975
    patch 687 high interf/patch volume: 7.1111111111111125
    patch 688 high interf/patch volume: 7.214689265536723
    patch 689 high interf/patch volume: 6.666666666666668
    patch 690 high interf/patch volume: 7.0813953488372094
    patch 691 high interf/patch volume: 7.285714285714285
    patch 692 high interf/patch volume: 7.963917525773195
    patch 693 high interf/patch volume: 6.814814814814815
    patch 694 high interf/patch volume: 6.993464052287581
    patch 695 high interf/patch volume: 7.1656441717791415
    patch 696 high interf/patch volume: 7.921787709497207
    patch 697 high interf/patch volume: 7.333333333333333
    patch 698 high interf/patch volume: 7.199999999999999
    patch 699 high interf/patch volume: 6.999999999999999
    patch 700 high interf/patch volume: 7.571428571428571
    patch 701 high interf/patch volume: 7.455089820359281
    patch 702 high interf/patch volume: 7
    patch 703 high interf/patch volume: 7.666666666666666
    patch 704 high interf/patch volume: 7.511627906976743
    patch 705 high interf/patch volume: 7.886486486486485
    patch 706 high interf/patch volume: 7
    patch 707 high interf/patch volume: 8.166666666666666
    patch 708 high interf/patch volume: 5.588571428571429
    patch 709 high interf/patch volume: 6.215789473684211
    patch 710 high interf/patch volume: 7.079365079365079
    patch 711 high interf/patch volume: 6.288235294117648
    patch 712 high interf/patch volume: 6.895705521472391
    patch 713 high interf/patch volume: 7.4606741573033695
    patch 714 high interf/patch volume: 8.494186046511627
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999628733,-5916.999999679073,-5916.999999930889)
    sum a = (2.0785752705728647e-09,-1.973880623391e-10,3.0574424400426695e-09)
    sum e = 14792.499999375372
    sum de = -4.938994738584189e-09
Info: CFL hydro = 5.183224788145421 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 5.183224788145421 cfl multiplier : 0.9999999999999387           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 4.5007e+03 | 5917 |    176 | 1.315e+00 | 0.0% |   2.3% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 273.8325740558223 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 76                                                      [SPH][rank=0]
Info: time since start : 1704.511316521 (s)                                           [SPH][rank=0]
Info: collected : 176 patches                                              [PatchScheduler][rank=0]
---------------- t = 7.4, dt = 0.09999999999999964 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5917 min = 5917                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5917 min = 5917                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 176
    min = 5917
    max = 5917
    avg = 5917
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.39 us   (1.0%)
   patch tree reduce : 27.81 us   (2.4%)
   gen split merge   : 3.40 us    (0.3%)
   split / merge op  : 0/1
   apply split merge : 821.00 ns  (0.1%)
   LB compute        : 602.91 us  (51.4%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (6.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7
    patch 568 high interf/patch volume: 7
    patch 578 high interf/patch volume: 7
    patch 583 high interf/patch volume: 7
    patch 589 high interf/patch volume: 7.125
    patch 599 high interf/patch volume: 7.147058823529411
    patch 604 high interf/patch volume: 6.891891891891892
    patch 610 high interf/patch volume: 6.86
    patch 620 high interf/patch volume: 6.75
    patch 625 high interf/patch volume: 6.805555555555555
    patch 636 high interf/patch volume: 7
    patch 640 high interf/patch volume: 7
    patch 649 high interf/patch volume: 7
    patch 658 high interf/patch volume: 7
    patch 660 high interf/patch volume: 5.424657534246575
    patch 662 high interf/patch volume: 5.742424242424242
    patch 664 high interf/patch volume: 5.7950819672131155
    patch 666 high interf/patch volume: 5.666666666666666
    patch 667 high interf/patch volume: 5.383561643835615
    patch 668 high interf/patch volume: 5.377483443708609
    patch 673 high interf/patch volume: 5.655555555555555
    patch 676 high interf/patch volume: 5.527027027027026
    patch 677 high interf/patch volume: 5.608695652173913
    patch 680 high interf/patch volume: 5.035714285714286
    patch 681 high interf/patch volume: 4.726027397260274
    patch 682 high interf/patch volume: 3.883760683760683
    patch 683 high interf/patch volume: 5.015151515151516
    patch 684 high interf/patch volume: 4.113522537562606
    patch 685 high interf/patch volume: 4.176691729323308
    patch 686 high interf/patch volume: 5.24561403508772
    patch 688 high interf/patch volume: 6.232558139534884
    patch 690 high interf/patch volume: 6.286764705882352
    patch 692 high interf/patch volume: 6.737931034482759
    patch 694 high interf/patch volume: 6.161971830985916
    patch 695 high interf/patch volume: 5.791044776119404
    patch 696 high interf/patch volume: 6.4493670886075956
    patch 701 high interf/patch volume: 6.096774193548388
    patch 704 high interf/patch volume: 5.993288590604027
    patch 705 high interf/patch volume: 6.5754189944134085
    patch 708 high interf/patch volume: 6.142857142857143
    patch 709 high interf/patch volume: 5.982758620689657
    patch 710 high interf/patch volume: 7.140625000000001
    patch 711 high interf/patch volume: 6.125683060109288
    patch 712 high interf/patch volume: 7.253588516746411
    patch 713 high interf/patch volume: 6.989361702127659
    patch 714 high interf/patch volume: 8.451612903225806
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999628171,-5916.999999678988,-5916.999999930427)
    sum a = (1.1993793802632206e-11,2.0846704906059505e-07,4.667273715403507e-12)
    sum e = 14792.499999374011
    sum de = -2.085046487549627e-07
Info: CFL hydro = 5.150331150046987 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 5.150331150046987 cfl multiplier : 0.9999999999999591           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5645e+03 | 5917 |    169 | 1.063e+00 | 0.0% |   1.9% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 338.55400409964705 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 77                                                      [SPH][rank=0]
Info: time since start : 1706.7348046860002 (s)                                       [SPH][rank=0]
Info: collected : 169 patches                                              [PatchScheduler][rank=0]
---------------- t = 7.5, dt = 0.10000000000000053 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5905 min = 5905                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5905 min = 5905                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 190
    min = 5905
    max = 5905
    avg = 5905
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.46 us   (0.1%)
   patch tree reduce : 26.05 us   (0.1%)
   gen split merge   : 3.40 us    (0.0%)
   split / merge op  : 3/1
   apply split merge : 16.86 ms   (94.1%)
   LB compute        : 519.59 us  (2.9%)
   LB move op cnt    : 0
   LB apply          : 4.68 us    (0.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (14.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 568 high interf/patch volume: 7
    patch 578 high interf/patch volume: 7
    patch 589 high interf/patch volume: 8.125
    patch 599 high interf/patch volume: 7.666666666666667
    patch 604 high interf/patch volume: 7.2857142857142865
    patch 610 high interf/patch volume: 7.555555555555555
    patch 620 high interf/patch volume: 7.222222222222222
    patch 625 high interf/patch volume: 7.333333333333334
    patch 636 high interf/patch volume: 7.125
    patch 640 high interf/patch volume: 7
    patch 649 high interf/patch volume: 7.083333333333333
    patch 658 high interf/patch volume: 6.19047619047619
    patch 660 high interf/patch volume: 6.710144927536232
    patch 662 high interf/patch volume: 6.987179487179487
    patch 664 high interf/patch volume: 6.824999999999998
    patch 666 high interf/patch volume: 6.710843373493976
    patch 667 high interf/patch volume: 6.458823529411764
    patch 668 high interf/patch volume: 6.39090909090909
    patch 673 high interf/patch volume: 6.726190476190477
    patch 676 high interf/patch volume: 6.592233009708737
    patch 677 high interf/patch volume: 6.6838235294117645
    patch 680 high interf/patch volume: 6.2142857142857135
    patch 681 high interf/patch volume: 5.807106598984772
    patch 682 high interf/patch volume: 6.423076923076923
    patch 683 high interf/patch volume: 6.255411255411255
    patch 684 high interf/patch volume: 6.523809523809524
    patch 685 high interf/patch volume: 5.916666666666667
    patch 686 high interf/patch volume: 7.899999999999999
    patch 688 high interf/patch volume: 7.226804123711339
    patch 690 high interf/patch volume: 7.0638297872340425
    patch 692 high interf/patch volume: 7.364864864864865
    patch 694 high interf/patch volume: 6.978021978021979
    patch 695 high interf/patch volume: 7.021978021978022
    patch 696 high interf/patch volume: 7.323943661971831
    patch 701 high interf/patch volume: 7.562500000000001
    patch 704 high interf/patch volume: 7.064814814814815
    patch 705 high interf/patch volume: 7.620689655172415
    patch 708 high interf/patch volume: 8.239263803680982
    patch 709 high interf/patch volume: 7.761006289308177
    patch 710 high interf/patch volume: 8.24404761904762
    patch 711 high interf/patch volume: 7.853801169590643
    patch 712 high interf/patch volume: 8.344827586206895
    patch 713 high interf/patch volume: 7.938202247191009
    patch 714 high interf/patch volume: 8.421052631578947
    patch 715 high interf/patch volume: 6.538461538461539
    patch 716 high interf/patch volume: 7
    patch 717 high interf/patch volume: 6.857142857142857
    patch 718 high interf/patch volume: 6.939024390243902
    patch 719 high interf/patch volume: 6.986842105263158
    patch 720 high interf/patch volume: 6.81045751633987
    patch 721 high interf/patch volume: 6.961832061068703
    patch 722 high interf/patch volume: 6.7142857142857135
    patch 723 high interf/patch volume: 7.080213903743316
    patch 724 high interf/patch volume: 7.466292134831462
    patch 725 high interf/patch volume: 6.8
    patch 726 high interf/patch volume: 7
    patch 727 high interf/patch volume: 7.301775147928994
    patch 728 high interf/patch volume: 7.350993377483443
    patch 729 high interf/patch volume: 6.949438202247189
    patch 730 high interf/patch volume: 6.199999999999999
    patch 731 high interf/patch volume: 6.745664739884393
    patch 732 high interf/patch volume: 6.4375
    patch 733 high interf/patch volume: 6.932098765432099
    patch 734 high interf/patch volume: 7
    patch 735 high interf/patch volume: 6.891891891891892
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999628272,-5916.999999647708,-5916.99999993058)
    sum a = (1.0663700732009042e-07,1.198552513747425e-10,-1.0160400406005604e-08)
    sum e = 14792.499999342728
    sum de = -9.65963990284978e-08
Info: CFL hydro = 5.117895248796837 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 5.117895248796837 cfl multiplier : 0.9999999999999728           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 4.0913e+03 | 5917 |    183 | 1.446e+00 | 0.0% |   2.4% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 248.91876705716845 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 78                                                      [SPH][rank=0]
Info: time since start : 1709.211780673 (s)                                           [SPH][rank=0]
Info: collected : 183 patches                                              [PatchScheduler][rank=0]
---------------- t = 7.6000000000000005, dt = 0.09999999999999964 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5917 min = 5917                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5917 min = 5917                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 183
    min = 5917
    max = 5917
    avg = 5917
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.53 us   (0.3%)
   patch tree reduce : 30.06 us   (0.8%)
   gen split merge   : 3.39 us    (0.1%)
   split / merge op  : 0/4
   apply split merge : 832.00 ns  (0.0%)
   LB compute        : 666.77 us  (16.7%)
   LB move op cnt    : 0
   LB apply          : 4.82 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (10.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 636 high interf/patch volume: 7.166666666666666
    patch 640 high interf/patch volume: 7.153846153846154
    patch 649 high interf/patch volume: 6.999999999999999
    patch 658 high interf/patch volume: 4.548672566371682
    patch 660 high interf/patch volume: 6.603448275862069
    patch 662 high interf/patch volume: 6.852459016393442
    patch 664 high interf/patch volume: 7.421052631578949
    patch 666 high interf/patch volume: 7.209677419354838
    patch 667 high interf/patch volume: 6.758620689655172
    patch 668 high interf/patch volume: 7.728395061728396
    patch 673 high interf/patch volume: 6.87037037037037
    patch 676 high interf/patch volume: 6.907407407407407
    patch 677 high interf/patch volume: 7.452631578947367
    patch 680 high interf/patch volume: 5.196319018404909
    patch 681 high interf/patch volume: 5.067073170731708
    patch 682 high interf/patch volume: 5.958333333333334
    patch 683 high interf/patch volume: 5.282352941176471
    patch 684 high interf/patch volume: 6.018181818181818
    patch 685 high interf/patch volume: 6.104477611940299
    patch 686 high interf/patch volume: 8.025641025641026
    patch 688 high interf/patch volume: 6.983333333333335
    patch 690 high interf/patch volume: 7.185185185185185
    patch 692 high interf/patch volume: 6.870967741935484
    patch 694 high interf/patch volume: 7.333333333333334
    patch 695 high interf/patch volume: 6.793650793650793
    patch 696 high interf/patch volume: 7.346153846153846
    patch 701 high interf/patch volume: 7.471698113207547
    patch 704 high interf/patch volume: 6.944444444444445
    patch 705 high interf/patch volume: 7.239999999999999
    patch 708 high interf/patch volume: 8.11801242236025
    patch 709 high interf/patch volume: 7.933333333333334
    patch 710 high interf/patch volume: 7.711229946524065
    patch 711 high interf/patch volume: 7.999999999999998
    patch 712 high interf/patch volume: 7.905882352941175
    patch 713 high interf/patch volume: 7.488888888888888
    patch 714 high interf/patch volume: 7.367088607594937
    patch 715 high interf/patch volume: 6.517241379310345
    patch 716 high interf/patch volume: 6.1818181818181825
    patch 717 high interf/patch volume: 7.222222222222221
    patch 718 high interf/patch volume: 6.918032786885245
    patch 719 high interf/patch volume: 6.91875
    patch 720 high interf/patch volume: 6.63953488372093
    patch 721 high interf/patch volume: 6.835714285714285
    patch 722 high interf/patch volume: 6.523809523809524
    patch 723 high interf/patch volume: 7.048648648648649
    patch 724 high interf/patch volume: 7.208791208791208
    patch 725 high interf/patch volume: 6.461538461538462
    patch 726 high interf/patch volume: 7.25
    patch 727 high interf/patch volume: 7.196531791907514
    patch 728 high interf/patch volume: 7.035460992907801
    patch 729 high interf/patch volume: 6.688622754491018
    patch 730 high interf/patch volume: 6.03225806451613
    patch 731 high interf/patch volume: 6.698924731182795
    patch 732 high interf/patch volume: 6.375
    patch 733 high interf/patch volume: 6.914634146341463
    patch 734 high interf/patch volume: 7
    patch 735 high interf/patch volume: 6.472602739726028
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999612277,-5916.999999658115,-5916.999999932103)
    sum a = (1.3948872275553609e-08,2.0266605687494638e-08,1.1126296485704235e-09)
    sum e = 14792.4999993384
    sum de = -3.5326775191550294e-08
Info: CFL hydro = 5.08590808682948 sink sink = inf                                    [SPH][rank=0]
Info: cfl dt = 5.08590808682948 cfl multiplier : 0.9999999999999819            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 4.5772e+03 | 5917 |    155 | 1.293e+00 | 0.0% |   2.0% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 278.4862235232346 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 79                                                      [SPH][rank=0]
Info: time since start : 1711.666649915 (s)                                           [SPH][rank=0]
Info: collected : 155 patches                                              [PatchScheduler][rank=0]
---------------- t = 7.7, dt = 0.10000000000000053 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5917 min = 5917                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5917 min = 5917                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 155
    min = 5917
    max = 5917
    avg = 5917
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.92 us   (0.8%)
   patch tree reduce : 27.31 us   (1.9%)
   gen split merge   : 3.34 us    (0.2%)
   split / merge op  : 0/3
   apply split merge : 792.00 ns  (0.1%)
   LB compute        : 670.69 us  (47.9%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (9.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 636 high interf/patch volume: 6.916666666666666
    patch 640 high interf/patch volume: 7.625
    patch 649 high interf/patch volume: 7
    patch 658 high interf/patch volume: 3.5965665236051505
    patch 660 high interf/patch volume: 6.825
    patch 662 high interf/patch volume: 7.055555555555556
    patch 664 high interf/patch volume: 7.916666666666667
    patch 666 high interf/patch volume: 7.162162162162161
    patch 667 high interf/patch volume: 7.257142857142857
    patch 668 high interf/patch volume: 8.12962962962963
    patch 673 high interf/patch volume: 6.727272727272727
    patch 676 high interf/patch volume: 7.2857142857142865
    patch 677 high interf/patch volume: 7.969230769230769
    patch 680 high interf/patch volume: 4.42489270386266
    patch 681 high interf/patch volume: 4.349240780911062
    patch 682 high interf/patch volume: 5.415730337078651
    patch 683 high interf/patch volume: 4.792207792207793
    patch 684 high interf/patch volume: 5.670454545454545
    patch 685 high interf/patch volume: 5.466666666666667
    patch 686 high interf/patch volume: 8.140350877192983
    patch 688 high interf/patch volume: 7.529411764705882
    patch 690 high interf/patch volume: 7.347826086956522
    patch 692 high interf/patch volume: 7
    patch 694 high interf/patch volume: 7.0434782608695645
    patch 695 high interf/patch volume: 7.333333333333334
    patch 696 high interf/patch volume: 7
    patch 701 high interf/patch volume: 7.444444444444445
    patch 704 high interf/patch volume: 7.058823529411765
    patch 705 high interf/patch volume: 7
    patch 708 high interf/patch volume: 7.819672131147541
    patch 709 high interf/patch volume: 8.107142857142858
    patch 710 high interf/patch volume: 7.685534591194968
    patch 711 high interf/patch volume: 8.055837563451778
    patch 712 high interf/patch volume: 7.602484472049688
    patch 713 high interf/patch volume: 7.5103448275862075
    patch 714 high interf/patch volume: 7.645161290322581
    patch 715 high interf/patch volume: 5.869565217391305
    patch 716 high interf/patch volume: 5.7749999999999995
    patch 717 high interf/patch volume: 7.142857142857142
    patch 718 high interf/patch volume: 6.476190476190475
    patch 719 high interf/patch volume: 6.63276836158192
    patch 720 high interf/patch volume: 6.61392405063291
    patch 721 high interf/patch volume: 6.773913043478261
    patch 722 high interf/patch volume: 6.096774193548387
    patch 723 high interf/patch volume: 7.067039106145252
    patch 724 high interf/patch volume: 6.994565217391304
    patch 725 high interf/patch volume: 6.1818181818181825
    patch 726 high interf/patch volume: 7.111111111111111
    patch 727 high interf/patch volume: 7.261627906976744
    patch 728 high interf/patch volume: 7.161290322580646
    patch 729 high interf/patch volume: 6.960451977401129
    patch 730 high interf/patch volume: 6.057142857142857
    patch 731 high interf/patch volume: 7.089820359281436
    patch 732 high interf/patch volume: 5.953488372093023
    patch 733 high interf/patch volume: 7.196531791907514
    patch 734 high interf/patch volume: 7
    patch 735 high interf/patch volume: 7.064814814814815
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999615516,-5916.999999655083,-5916.999999931428)
    sum a = (-4.2563886096247394e-09,-1.987766761520765e-09,-5.415315895360151e-11)
    sum e = 14792.499999337677
    sum de = 6.298561582018802e-09
Info: CFL hydro = 5.054360898288816 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 5.054360898288816 cfl multiplier : 0.9999999999999879           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 4.7365e+03 | 5917 |    134 | 1.249e+00 | 0.0% |   2.0% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 288.1789058450695 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 80                                                      [SPH][rank=0]
Info: time since start : 1713.9898155800001 (s)                                       [SPH][rank=0]
Info: collected : 134 patches                                              [PatchScheduler][rank=0]
---------------- t = 7.800000000000001, dt = 0.09999999999999964 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5917 min = 5917                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5917 min = 5917                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 134
    min = 5917
    max = 5917
    avg = 5917
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.33 us   (1.2%)
   patch tree reduce : 24.57 us   (2.8%)
   gen split merge   : 3.20 us    (0.4%)
   split / merge op  : 0/3
   apply split merge : 1032.00 ns (0.1%)
   LB compute        : 601.83 us  (68.1%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (17.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 636 high interf/patch volume: 6.999999999999999
    patch 640 high interf/patch volume: 7.333333333333334
    patch 649 high interf/patch volume: 6.333333333333333
    patch 658 high interf/patch volume: 2.516826923076923
    patch 660 high interf/patch volume: 6.666666666666666
    patch 662 high interf/patch volume: 7.3571428571428585
    patch 664 high interf/patch volume: 7.0740740740740735
    patch 666 high interf/patch volume: 7.200000000000001
    patch 667 high interf/patch volume: 7
    patch 668 high interf/patch volume: 7.57142857142857
    patch 673 high interf/patch volume: 7.714285714285714
    patch 676 high interf/patch volume: 6.571428571428572
    patch 677 high interf/patch volume: 8.5
    patch 680 high interf/patch volume: 3.6066115702479338
    patch 681 high interf/patch volume: 3.988372093023256
    patch 682 high interf/patch volume: 5.042372881355933
    patch 683 high interf/patch volume: 3.735551663747811
    patch 684 high interf/patch volume: 4.969465648854961
    patch 685 high interf/patch volume: 5.1328125
    patch 686 high interf/patch volume: 8.63372093023256
    patch 690 high interf/patch volume: 7
    patch 694 high interf/patch volume: 7
    patch 701 high interf/patch volume: 6.666666666666666
    patch 708 high interf/patch volume: 7.969072164948454
    patch 709 high interf/patch volume: 8.17837837837838
    patch 710 high interf/patch volume: 7.53448275862069
    patch 711 high interf/patch volume: 7.793296089385475
    patch 712 high interf/patch volume: 7.3931623931623935
    patch 713 high interf/patch volume: 7.090909090909091
    patch 714 high interf/patch volume: 7.151515151515152
    patch 715 high interf/patch volume: 5.814814814814816
    patch 716 high interf/patch volume: 6.02439024390244
    patch 717 high interf/patch volume: 7
    patch 718 high interf/patch volume: 6.798941798941799
    patch 719 high interf/patch volume: 6.796610169491526
    patch 720 high interf/patch volume: 7.137724550898203
    patch 721 high interf/patch volume: 7.329670329670329
    patch 722 high interf/patch volume: 5.88235294117647
    patch 723 high interf/patch volume: 6.877300613496933
    patch 724 high interf/patch volume: 6.94767441860465
    patch 725 high interf/patch volume: 5.826086956521739
    patch 726 high interf/patch volume: 7
    patch 727 high interf/patch volume: 6.6535947712418295
    patch 728 high interf/patch volume: 7.333333333333332
    patch 729 high interf/patch volume: 7.415730337078651
    patch 730 high interf/patch volume: 6.050000000000001
    patch 731 high interf/patch volume: 7.390532544378698
    patch 732 high interf/patch volume: 5.866666666666667
    patch 733 high interf/patch volume: 6.932515337423313
    patch 734 high interf/patch volume: 7.166666666666667
    patch 735 high interf/patch volume: 7.094594594594596
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999616852,-5916.999999656393,-5916.99999993149)
    sum a = (-2.2551405187698492e-17,-1.1275702593849246e-17,1.496198998029996e-17)
    sum e = 14792.499999340123
    sum de = 2.7755575615628914e-17
Info: CFL hydro = 5.023245141633026 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 5.023245141633026 cfl multiplier : 0.999999999999992            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4643e+03 | 5917 |    113 | 1.083e+00 | 0.0% |   2.3% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 332.4576767525079 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 81                                                      [SPH][rank=0]
Info: time since start : 1715.9707708150002 (s)                                       [SPH][rank=0]
Info: collected : 113 patches                                              [PatchScheduler][rank=0]
---------------- t = 7.9, dt = 0.09999999999999964 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 5907 min = 5907                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 5907 min = 5907                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 134
    min = 5907
    max = 5907
    avg = 5907
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.54 us   (0.0%)
   patch tree reduce : 22.17 us   (0.1%)
   gen split merge   : 19.75 us   (0.1%)
   split / merge op  : 3/3
   apply split merge : 27.67 ms   (93.5%)
   LB compute        : 541.40 us  (1.8%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (0.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (20.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 658 high interf/patch volume: 3.8023598820058995
    patch 680 high interf/patch volume: 5.195652173913043
    patch 681 high interf/patch volume: 5
    patch 682 high interf/patch volume: 6.32051282051282
    patch 683 high interf/patch volume: 5.305555555555555
    patch 684 high interf/patch volume: 6.586206896551724
    patch 685 high interf/patch volume: 6.5310344827586215
    patch 686 high interf/patch volume: 8.603686635944701
    patch 708 high interf/patch volume: 6.751724137931035
    patch 709 high interf/patch volume: 6.5754189944134085
    patch 710 high interf/patch volume: 6.75
    patch 711 high interf/patch volume: 6.48076923076923
    patch 712 high interf/patch volume: 6.805555555555555
    patch 713 high interf/patch volume: 6.86
    patch 714 high interf/patch volume: 7
    patch 715 high interf/patch volume: 6.805555555555555
    patch 716 high interf/patch volume: 6.857142857142857
    patch 717 high interf/patch volume: 7
    patch 718 high interf/patch volume: 8.520833333333334
    patch 719 high interf/patch volume: 6.891472868217054
    patch 720 high interf/patch volume: 6.690322580645161
    patch 721 high interf/patch volume: 7.000000000000001
    patch 722 high interf/patch volume: 7.027777777777778
    patch 723 high interf/patch volume: 8.598086124401915
    patch 724 high interf/patch volume: 6.9485294117647065
    patch 725 high interf/patch volume: 6.851063829787233
    patch 726 high interf/patch volume: 7
    patch 727 high interf/patch volume: 6.753521126760563
    patch 728 high interf/patch volume: 6.918918918918919
    patch 729 high interf/patch volume: 8.462765957446809
    patch 730 high interf/patch volume: 6.65
    patch 731 high interf/patch volume: 6.664429530201342
    patch 732 high interf/patch volume: 6.75
    patch 733 high interf/patch volume: 6.5735294117647065
    patch 734 high interf/patch volume: 7
    patch 735 high interf/patch volume: 7.125
    patch 736 high interf/patch volume: 7
    patch 737 high interf/patch volume: 5.718954248366014
    patch 738 high interf/patch volume: 6.91891891891892
    patch 739 high interf/patch volume: 5.86842105263158
    patch 740 high interf/patch volume: 7.3
    patch 741 high interf/patch volume: 7.994623655913979
    patch 742 high interf/patch volume: 7.057377049180327
    patch 743 high interf/patch volume: 5.5661764705882355
    patch 744 high interf/patch volume: 7
    patch 745 high interf/patch volume: 7.121951219512195
    patch 746 high interf/patch volume: 5.728682170542635
    patch 747 high interf/patch volume: 7.643678160919539
    patch 748 high interf/patch volume: 6.882352941176472
    patch 749 high interf/patch volume: 6.811594202898551
    patch 750 high interf/patch volume: 5.830985915492958
    patch 751 high interf/patch volume: 6.029850746268657
    patch 752 high interf/patch volume: 7.933701657458564
    patch 753 high interf/patch volume: 7
    patch 754 high interf/patch volume: 7.081081081081082
    patch 755 high interf/patch volume: 6.918918918918919
    patch 756 high interf/patch volume: 6.582781456953643
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5916.999999616639,-5916.999999656296,-5916.999999931487)
    sum a = (7.39485212473967e-09,2.1246301251231364e-07,3.047415851674222e-08)
    sum e = 14792.499999339541
    sum de = -2.503436954757587e-07
Info: CFL hydro = 4.992552492570795 sink sink = inf                                   [SPH][rank=0]
Info: cfl dt = 4.992552492570795 cfl multiplier : 0.9999999999999947           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 4.6684e+03 | 5917 |    113 | 1.267e+00 | 0.0% |   2.3% 0.0% |   935.14 MB |     5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 284.03211072323944 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 82                                                      [SPH][rank=0]
Info: time since start : 1718.1371821740001 (s)                                       [SPH][rank=0]
Info: collected : 113 patches                                              [PatchScheduler][rank=0]

Convert PNG sequence to Image sequence in mpl#

209 import matplotlib.animation as animation
210 from shamrock.utils.plot import show_image_sequence
211
212 # If the animation is not returned only a static image will be shown in the doc
213 glob_str = os.path.join(dump_folder, f"{sim_name}_*.png")
214
215 ani = show_image_sequence(glob_str, render_gif=render_gif)
216
217
218 if render_gif and shamrock.sys.world_rank() == 0:
219     # To save the animation using Pillow as a gif
220     # writer = animation.PillowWriter(fps=15,
221     #                                 metadata=dict(artist='Me'),
222     #                                 bitrate=1800)
223     # ani.save('scatter.gif', writer=writer)
224
225     # Show the animation
226     plt.show()

Total running time of the script: (3 minutes 6.666 seconds)

Estimated memory usage: 159 MB

Gallery generated by Sphinx-Gallery